diff options
author | marijus <mario@mariovavti.com> | 2014-11-03 11:19:59 +0100 |
---|---|---|
committer | marijus <mario@mariovavti.com> | 2014-11-03 11:19:59 +0100 |
commit | 1f1b6785cd1e3b03c3de6277646d4fa2f9018c5a (patch) | |
tree | 3fd4ff213586e089d8fd7c0c9f77ef8c47ea5f54 /include/Import/Importer.php | |
parent | 287d5e0f106eed3783ee120bafc338e7763e36e9 (diff) | |
parent | ac858f4bd4fcb9c65cbc7b19288cdad0076aa072 (diff) | |
download | volse-hubzilla-1f1b6785cd1e3b03c3de6277646d4fa2f9018c5a.tar.gz volse-hubzilla-1f1b6785cd1e3b03c3de6277646d4fa2f9018c5a.tar.bz2 volse-hubzilla-1f1b6785cd1e3b03c3de6277646d4fa2f9018c5a.zip |
Merge branch 'master' of https://github.com/friendica/red
Diffstat (limited to 'include/Import/Importer.php')
-rw-r--r-- | include/Import/Importer.php | 94 |
1 files changed, 94 insertions, 0 deletions
diff --git a/include/Import/Importer.php b/include/Import/Importer.php new file mode 100644 index 000000000..c42344236 --- /dev/null +++ b/include/Import/Importer.php @@ -0,0 +1,94 @@ +<?php /** @file */ + +namespace Redmatrix\Import; + + +class Import { + + $credentials = null; + $itemlist = null; + $src_items = null; + + $items = null; + + function get_credentials() { + + } + + function get_itemlist() { + + + } + + + function get_item_ident($item) { + + } + + function get_item($item_ident) { + + } + + function get_taxonomy($item_ident) { + + } + + function get_children($item_ident) { + + } + + function convert_item($item_ident) { + + } + + function convert_taxonomy($item_ident) { + + + } + + function convert_child($child) { + + } + + function store($item,$update = false) { + + } + + function run() { + + $this->credentials = $this->get_credentials(); + $this->itemlist = $this->get_itemlist(); + if($this->itemlist) { + $this->src_items = array(); + $this->items = array(); + $cnt = 0; + foreach($this->itemlist as $item) { + $ident = $item->get_item_ident($item); + $this->src_items[$ident]['item'] = $this->get_item($ident); + $this->src_items[$ident]['taxonomy'] = $this->get_taxonomy($ident); + $this->src_items[$ident]['children'] = $this->get_children($ident); + $this->items[$cnt]['item'] = $this->convert_item($ident); + $this->items[$cnt]['item']['term'] = $this->convert_taxonomy($ident); + if($this->src_items[$ident]['children']) { + $this->items[$cnt]['children'] = array(); + foreach($this->src_items[$ident]['children'] as $child) { + $this[$cnt]['children'][] = $this->convert_child($child); + } + } + $cnt ++; + } + + + + + } + + + + + + + } + + +}
\ No newline at end of file |