summaryrefslogtreecommitdiffstats
path: root/opmlexporter.php
blob: 86b8bee81ff6e76078420a7950f6484425cfa51a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?php 

/**
* ownCloud - News app
*
* @author Alessandro Cosentino
* Copyright (c) 2012 - Alessandro Cosentino <cosenal@gmail.com>
*
* This file is licensed under the Affero General Public License version 3 or later.
* See the COPYING-README file
*
*/

class OPMLExporter {


	public static function feedToXML(OCA\News\Feed $feed){
	
	}

	/**
	 * @brief 
	 */
	public static function export(OCA\News\Collection $data){
		foreach($children as $child) {
			if ($child instanceOf OCA\News\Folder){
			}
			elseif ($child instanceOf OCA\News\Feed) { //onhover $(element).attr('id', 'newID');
			}
			else {
			//TODO:handle error in this case
			}
		}
	}
}