Server : Apache System : Linux iZ2vcgyutqttsd1p850kl8Z 3.10.0-1160.92.1.el7.x86_64 #1 SMP Tue Jun 20 11:48:01 UTC 2023 x86_64 User : www ( 1000) PHP Version : 5.6.40 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv Directory : /www/wwwroot/saimikebio.com/ |
<?php /** * ECSHOP 活动列表 * ============================================================================ * * 版权所有 2005-2012 上海商派网络科技有限公司,并保留所有权利。 * 网站地址: http://www.ecshop.com; * ---------------------------------------------------------------------------- * 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和 * 使用;不允许对程序代码以任何形式任何目的的再发布。 * ============================================================================ * $Author: liubo $ * $Id: activity.php 17217 2011-01-19 06:29:08Z liubo $ */ define('IN_ECS', true); require(dirname(__FILE__) . '/includes/init.php'); require_once(ROOT_PATH . 'includes/lib_order.php'); include_once(ROOT_PATH . 'includes/lib_transaction.php'); /* 载入语言文件 */ require_once(ROOT_PATH . 'languages/' .$_CFG['lang']. '/shopping_flow.php'); require_once(ROOT_PATH . 'languages/' .$_CFG['lang']. '/user.php'); /*------------------------------------------------------ */ //-- PROCESSOR /*------------------------------------------------------ */ assign_template(); assign_dynamic('activity'); $position = assign_ur_here(0, $_LANG['shopping_activity']); $smarty->assign('page_title', $position['title']); // 页面标题 $smarty->assign('ur_here', $position['ur_here']); // 当前位置 // 数据准备 /* 取得用户等级 */ $user_rank_list = array(); $user_rank_list[0] = $_LANG['not_user']; $sql = "SELECT rank_id, rank_name FROM " . $ecs->table('user_rank'); $res = $db->query($sql); while ($row = $db->fetchRow($res)) { $user_rank_list[$row['rank_id']] = $row['rank_name']; } // 开始工作 $sql = "SELECT * FROM " . $ecs->table('favourable_activity'). " ORDER BY `sort_order` ASC,`end_time` DESC"; $res = $db->query($sql); $list = array(); while ($row = $db->fetchRow($res)) { $row['start_time'] = local_date('Y-m-d H:i', $row['start_time']); $row['end_time'] = local_date('Y-m-d H:i', $row['end_time']); //享受优惠会员等级 $user_rank = explode(',', $row['user_rank']); $row['user_rank'] = array(); foreach($user_rank as $val) { if (isset($user_rank_list[$val])) { $row['user_rank'][] = $user_rank_list[$val]; } } //优惠范围类型、内容 if ($row['act_range'] != FAR_ALL && !empty($row['act_range_ext'])) { if ($row['act_range'] == FAR_CATEGORY) { $row['act_range'] = $_LANG['far_category']; $row['program'] = 'category.php?id='; $sql = "SELECT cat_id AS id, cat_name AS name FROM " . $ecs->table('category') . " WHERE cat_id " . db_create_in($row['act_range_ext']); } elseif ($row['act_range'] == FAR_BRAND) { $row['act_range'] = $_LANG['far_brand']; $row['program'] = 'brand.php?id='; $sql = "SELECT brand_id AS id, brand_name AS name FROM " . $ecs->table('brand') . " WHERE brand_id " . db_create_in($row['act_range_ext']); } else { $row['act_range'] = $_LANG['far_goods']; $row['program'] = 'goods.php?id='; $sql = "SELECT goods_id AS id, goods_name AS name FROM " . $ecs->table('goods') . " WHERE goods_id " . db_create_in($row['act_range_ext']); } $act_range_ext = $db->getAll($sql); $row['act_range_ext'] = $act_range_ext; } else { $row['act_range'] = $_LANG['far_all']; } $row['act_type_num'] = $row['act_type']; //优惠方式 switch($row['act_type']) { case 0: $row['act_type'] = $_LANG['fat_goods']; $row['gift'] = unserialize($row['gift']); if(is_array($row['gift'])) { foreach($row['gift'] as $k=>$v) { $row['gift'][$k]['thumb'] = get_image_path($v['id'], $db->getOne("SELECT goods_thumb FROM " . $ecs->table('goods') . " WHERE goods_id = '" . $v['id'] . "'"), true); } } break; case 1: $row['act_type'] = $_LANG['fat_price']; $row['act_type_ext'] .= $_LANG['unit_yuan']; $row['gift'] = array(); break; case 2: $row['act_type'] = $_LANG['fat_discount']; $row['act_type_ext'] .= "%"; $row['gift'] = array(); break; } $list[] = $row; } //print_r($list); $smarty->assign('list', $list); $smarty->assign('helps', get_shop_help()); // 网店帮助 $smarty->assign('categories', get_categories_tree()); // 分类树 $smarty->assign('lang', $_LANG); $smarty->assign('feed_url', ($_CFG['rewrite'] == 1) ? "feed-typeactivity.xml" : 'feed.php?type=activity'); // RSS URL $smarty->display('activity.dwt');