Ejemplo n.º 1
0
    private static function showCategoryTree($checked = array())
    {
        ?>
				<div class="category_tree">
				<?php 
        require_once 'post/PostCommon.php';
        $cat = CategoryManager::getCategories();
        $i = 0;
        ?>
					<ul class="category_tree_level_0"><?php 
        foreach ($cat as $valore) {
            $i = self::writeCategoryNode($valore, $i, 1, $checked);
        }
        ?>
					</ul><?php 
        ?>
				</div>
		<?php 
    }