1 Star 0 Fork 0

夏之随想/wangchen

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
apply_index.php 2.65 KB
一键复制 编辑 原始数据 按行查看 历史
夏之随想 提交于 2018-01-11 17:49 . 初版
<?php
/**
* ECSHOP 专题前台
* ============================================================================
* 版权所有 2005-2011 广州热风科技有限公司二次开发,并保留所有权利。
* 演示地址: http://www.sojieke.cn 开发QQ:120029121 309485552
* ----------------------------------------------------------------------------
* 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和
* 使用;不允许对程序代码以任何形式任何目的的再发布。
* ============================================================================
* @author: webboy <[email protected]>
* @version: v2.1
* ---------------------------------------------
*/
define('IN_ECS', true);
require(dirname(__FILE__) . '/includes/init.php');
if ((DEBUG_MODE & 2) != 2)
{
$smarty->caching = true;
}
if (!$smarty->is_cached($templates, $cache_id))
{
/* 模板赋值 */
assign_template();
$position = assign_ur_here(0, $GLOBALS['_LANG']['apply_index']);
$smarty->assign('page_title', $position['title']); // 页面标题
$smarty->assign('ur_here', $position['ur_here'] . '> ' . $topic['title']); // 当前位置
$smarty->assign('helps', get_shop_help()); // 网店帮助
$smarty->assign('all', $cats['all']);
$smarty->assign('tuijian', $tuijian);
$smarty->assign('logopath', '/'.DATA_DIR.'/supplier/logo/');
$smarty->assign('shops_list', $shop_list['shops']);
$smarty->assign('filter', $shop_list['filter']);
$smarty->assign('record_count', $shop_list['record_count']);
$smarty->assign('page_count', $shop_list['page_count']);
$page = (isset($_REQUEST['page'])) ? intval($_REQUEST['page']) : 1;
$start_array = range(1,$page);
$end_array = range($page,$shop_list['page_count']);
if($page-5>0){
$smarty->assign('start',$page-3);
$start_array = range($page,$page-2);
}
if($shop_list['page_count'] - $page > 5){
$smarty->assign('end',$page+3);
$end_array = range($page,$page+2);
}
$page_array = array_merge($start_array,$end_array);
sort($page_array);
$smarty->assign('page_array', array_unique($page_array));
}
if ($action == 'store_joinin')
{
}
//判断 弹框登陆 验证码是否显示
$captcha = intval($_CFG['captcha']);
if(($captcha & CAPTCHA_LOGIN) && (! ($captcha & CAPTCHA_LOGIN_FAIL) || (($captcha & CAPTCHA_LOGIN_FAIL) && $_SESSION['login_fail'] > 2)) && gd_version() > 0)
{
$GLOBALS['smarty']->assign('enabled_captcha', 1);
$GLOBALS['smarty']->assign('rand', mt_rand());
}
$smarty->display('apply_index.dwt');
?>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/tf926088/wangchen.git
[email protected]:tf926088/wangchen.git
tf926088
wangchen
wangchen
master

搜索帮助