CategoriesController::tree PHP Method

tree() public method

public tree ( $category = '' )
    public function tree($category = '')
    {
        $tree = CategoryModel::instance()->getChildTree($category);
        $this->setData('Categories', $tree);
        $this->render('blank', 'utility', 'dashboard');
    }