zen cart分类树分析

2009-07-09 21:23 来源:www.chinab4c.com 作者:ecshop专家

      zencart电子商务系统左侧的分类树标题,所处位置都在layout_boxes表中.通过sidebox目录下的调用,显示出来.zencart系统的分类树在includes/modules/sideboxes/categories.php中.

 $main_category_tree = new category_tree;是zen cart分类树的类对象,用来处理分类的。

 $check_categories = $db->Execute("select categories_id from " . TABLE_CATEGORIES . " where categories_status=1 limit 1");获取该分类树状态正常显示的标识.

 require($template->get_template_dir('tpl_categories.php',DIR_WS_TEMPLATE, $current_page_base,'sideboxes'). '/tpl_categories.php');目的是包含includes/templates/zccn/sideboxes/tpl_categories.php 包含分类子模板的。

 require($template->get_template_dir($column_box_default, DIR_WS_TEMPLATE, $current_page_base,'common') . '/' . $column_box_default);实际是为了包含includes/templates/template_default/common/tpl_box_default_left.php .

    以上就是zen cart电子商务系统显示分类树的程序.

 相关文章:

 zen cart产品发布分析

   zen cart电子商务系统中分类树的分析

   zen cart左侧栏目的运行机制

  zen cart code_page_directory变量

 来源:中国B4C电子商务