assign('msg',tra("This feature is disabled")); $smarty->display("styles/$style_base/error.tpl"); die; } // Check for parent category or set to 0 if not present if(!isset($_REQUEST["parentId"])) { $_REQUEST["parentId"]=0; } $smarty->assign('parentId',$_REQUEST["parentId"]); // If the parent category is not zero get the category path if($_REQUEST["parentId"]) { $path = $categlib->get_category_path_browse($_REQUEST["parentId"]); $p_info = $categlib->get_category($_REQUEST["parentId"]); $father = $p_info["parentId"]; } else { $path = tra("TOP"); $father = 0; } $smarty->assign('path',$path); $smarty->assign('father',$father); //$children = $categlib->get_child_categories($_REQUEST["parentId"]); //$smarty->assign_by_ref('children',$children); // Convert $childrens //$debugger->var_dump('$children'); $ctall = $categlib->get_all_categories(); $tree_nodes = array(); foreach ($ctall as $c) { $tree_nodes[] = array("id"=>$c["categId"], "parent"=>$c["parentId"], "data"=>''.$c["name"].'
'); } //$debugger->var_dump('$tree_nodes'); $tm = new CatBrowseTreeMaker("categ"); $res = $tm->make_tree($_REQUEST["parentId"], $tree_nodes); $smarty->assign('tree', $res); if(!isset($_REQUEST["sort_mode"])) { $sort_mode = 'name_asc'; } else { $sort_mode = $_REQUEST["sort_mode"]; } if(!isset($_REQUEST["offset"])) { $offset = 0; } else { $offset = $_REQUEST["offset"]; } $smarty->assign_by_ref('offset',$offset); if(isset($_REQUEST["find"])) { $find = $_REQUEST["find"]; } else { $find = ''; } $smarty->assign('find',$find); $smarty->assign_by_ref('sort_mode',$sort_mode); if(isset($_REQUEST["deep"])&&$_REQUEST["deep"]=='on') { $objects = $categlib->list_category_objects_deep($_REQUEST["parentId"],$offset,$maxRecords,$sort_mode,$find); $smarty->assign('deep','on'); } else { $objects = $categlib->list_category_objects($_REQUEST["parentId"],$offset,$maxRecords,$sort_mode,$find); $smarty->assign('deep','off'); } $smarty->assign_by_ref('objects',$objects["data"]); $smarty->assign_by_ref('cantobjects',$objects["cant"]); $cant_pages = ceil($objects["cant2"] / $maxRecords); $smarty->assign_by_ref('cant_pages',$cant_pages); $smarty->assign('actual_page',1+($offset/$maxRecords)); if($objects["cant2"] > ($offset+$maxRecords)) { $smarty->assign('next_offset',$offset + $maxRecords); } else { $smarty->assign('next_offset',-1); } // If offset is > 0 then prev_offset if($offset>0) { $smarty->assign('prev_offset',$offset - $maxRecords); } else { $smarty->assign('prev_offset',-1); } $section='categories'; include_once('tiki-section_options.php'); // Display the template $smarty->assign('mid','tiki-browse_categories.tpl'); $smarty->display("styles/$style_base/tiki.tpl"); ?>