summaryrefslogtreecommitdiffstats
path: root/templates/part.folderlist.php
blob: 670684fd4c910f9b42d6bf78c01dd7f0aa2b2ef4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php
	function print_folder(OC_News_Folder $folder, $depth){
		echo '<li class="menuItem" onclick="News.DropDownMenu.selectItem(this, ' . $folder->getId() . ')">' . strtoupper($folder->getName()) . '</li>';
		$children = $folder->getChildren();
		foreach($children as $child) {
			if ($child instanceOf OC_News_Folder){
				print_folder($child, $depth+1);
			}
		}
	}
	print_folder($_['allfeeds'], 0);
?>