1
0
mirror of https://github.com/chylex/Nextcloud-News.git synced 2025-04-23 14:15:47 +02:00
Nextcloud-News/templates/part.folderlist.php
2012-08-12 01:50:19 -04:00

13 lines
408 B
PHP

<?php
function print_folder_list($folderlist, $depth) {
foreach($folderlist as $folder) {
echo '<li style="margin-left:' . 10*$depth . 'px;" class="menuItem" onclick="News.DropDownMenu.selectItem(this, ' . $folder->getId() . ')">' . $folder->getName() . '</li>';
$children = $folder->getChildren();
print_folder_list($children, $depth+1);
}
}
print_folder_list($_['folderforest'], 0);
?>