ecshop 代码解读
发布:smiling 来源: PHP粉丝网 添加日期:2015-09-28 15:47:20 浏览: 评论:
- $smarty->assign('keywords', htmlspecialchars($_CFG['shop_keywords'])); //关键信息
- $smarty->assign('description', htmlspecialchars($_CFG['shop_desc'])); ////关键信息
- $smarty->assign('flash_theme', $_CFG['flash_theme']); // Flash轮播图片模板
-
- $smarty->assign('feed_url', ($_CFG['rewrite'] == 1) ? 'feed.xml' : 'feed.php'); // RSS URL
-
- $smarty->assign('categories', get_categories_tree()); // 分类树
- $smarty->assign('helps', get_shop_help()); // 网店帮助
- $smarty->assign('top_goods', get_top10()); // 销售排行
-
- $smarty->assign('best_goods',ecshop, get_recommend_goods('best')); // 推荐商品
- $smarty->assign('new_goods', get_recommend_goods('new')); // 最新商品
- $smarty->assign('hot_goods', get_recommend_goods('hot')); // 热点文章
- $smarty->assign('promotion_goods', get_promote_goods()); // 特价商品
- $smarty->assign('brand_list', get_brands());
- $smarty->assign('promotion_info', get_promotion_info()); // 增加一个动态显示所有促销信息的标签栏
-
- $smarty->assign('invoice_list', index_get_invoice_query()); // 发货查询
- $smarty->assign('new_articles', index_get_new_articles()); // 最新文章
- $smarty->assign('group_buy_goods', index_get_group_buy()); // 团购商品
- $smarty->assign('auction_list', index_get_auction()); // 拍卖活动
- $smarty->assign('shop_notice', $_CFG['shop_notice']); // 商店公告
-
-
- $smarty->assign('index_ad', $_CFG['index_ad']);
- if ($_CFG['index_ad'] == 'cus')
- {
- $sql = 'SELECT ad_type, content, url FROM ' . $ecs->table("ad_custom") . ' WHERE ad_status = 1';
- $ad = $db->getRow($sql, true);
- $smarty->assign('ad', $ad);
- }
-
-
- $links = index_get_links();
- $smarty->assign('img_links', $links['img']);
- $smarty->assign('txt_links', $links['txt']);
- $smarty->assign('data_dir', DATA_DIR); // 数据目录
-
-
- $cat_recommend_res = $db->getAll("SELECT c.cat_id, c.cat_name, cr.recommend_type FROM " . $ecs->table("cat_recommend") . " AS cr INNER JOIN " . $ecs->table("category") . " AS c ON cr.cat_id=c.cat_id");
- if (!empty($cat_recommend_res))
- {
- $cat_rec_array = array();
- foreach($cat_recommend_res as $cat_recommend_data)
- {
- $cat_rec[$cat_recommend_data['recommend_type']][] = array('cat_id' => $cat_recommend_data['cat_id'], 'cat_name' => $cat_recommend_data['cat_name']);
- }
- $smarty->assign('cat_rec', $cat_rec);
- }
-
-
- assign_dynamic('index');
- }
-
- $smarty->display('index.dwt', $cache_id);
-
- /*
分享到: