getAllParent(); return [ 'category_list' => get_category_list(0, getRequest("id"), $level=1, $prefix="", $category_collection ) ]; function get_category_list($parentId=0, $currentCat="",$level=1, $prefix="", $category_collection = array()){ $categoryTree = ""; $extra_space = ""; for($i = 1; $i < $level; $i++){ $extra_space .= "      "; } $stt = 0; if(isset($category_collection[$parentId])) { foreach($category_collection[$parentId] as $index => $cat_info){ $cat_id = $cat_info['id']; $stt ++; $imgUrl = (strlen($cat_info["thumbnail"]) > 2) ? " " : ""; if($cat_info["status"]) $status = ""; else $status = ""; $edit_link ="/admin/product/category-form?id=".$cat_id; $hide_this = ($parentId > 0) ? "style='display: none;'" : ''; $show_category_name = $cat_info["title"]; if(!IS_DEFAULT_LANGUAGE && isset($cat_info["not_translated"]) && $cat_info["not_translated"]) { $show_category_name = "[Chưa dịch] ".$cat_info["title"]; } if($cat_info['is_parent']) { $show_category_name = "".$show_category_name.""; } $categoryTree .= " ". $extra_space . $prefix . $stt.". ". $show_category_name . $imgUrl." Xem trang ".$cat_id." 413787 1292 SP + Danh mục con "; if(IS_DEFAULT_LANGUAGE) { $categoryTree .= " Tổng (".$cat_info['attribute_count'].")
".$status."
"; }else{ $categoryTree .= " "; } $categoryTree .= " "; if($cat_info["is_parent"]) $categoryTree .= get_category_list($cat_id, $currentCat, $level + 1, $prefix . $stt.".", $category_collection); } } return $categoryTree; }