wangtengyu
2018-12-07 f459412e0dac4ed94106da043b4c6f8576bfe496
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?php
 
/**
 * 专题前台
 */
 
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');
 
?>