1 Star 0 Fork 5

Mihok/ecshop大商创商城

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
categoryall.php 1.61 KB
一键复制 编辑 原始数据 按行查看 历史
baobeihuaidan 提交于 2017-10-24 10:04 . 初始化
<?php
//源码由旺旺:ecshop2012所有 未经允许禁止倒卖 一经发现停止任何服务
define('IN_ECS', true);
require dirname(__FILE__) . '/includes/init.php';
if ((DEBUG_MODE & 2) != 2) {
$smarty->caching = true;
}
require ROOT_PATH . '/includes/lib_area.php';
$area_info = get_area_info($province_id);
$area_id = $area_info['region_id'];
$where = 'regionId = \'' . $province_id . '\'';
$date = array('parent_id');
$region_id = get_table_date('region_warehouse', $where, $date, 2);
$cache_id = sprintf('%X', crc32($_REQUEST['id'] . '-' . $_CFG['lang']));
if (!$smarty->is_cached('category_all.dwt', $cache_id)) {
$position = assign_ur_here(0, $_LANG['all_category']);
$smarty->assign('page_title', $position['title']);
$smarty->assign('ur_here', $position['ur_here']);
for ($i = 1; $i <= $_CFG['auction_ad']; $i++) {
$category_all_left .= '\'category_all_left' . $i . ',';
$category_all_right .= '\'category_all_right' . $i . ',';
}
$smarty->assign('category_all_left', $category_all_left);
$smarty->assign('category_all_right', $category_all_right);
$categories_list = get_category_tree_leve_one(0, 1);
$smarty->assign('categories_list', $categories_list);
if (!defined('THEME_EXTENSION')) {
$categories_pro = get_category_tree_leve_one();
$smarty->assign('categories_pro', $categories_pro);
}
$top_goods = get_top10(0, '', 0, $region_id, $area_id);
$smarty->assign('top_goods', $top_goods);
$smarty->assign('helps', get_shop_help());
assign_dynamic('category_all');
assign_template('c', $catlist);
}
$smarty->display('category_all.dwt', $cache_id);
?>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/Mihok/www.sc.com.git
git@gitee.com:Mihok/www.sc.com.git
Mihok
www.sc.com
ecshop大商创商城
master

搜索帮助