-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapply_index.php
executable file
·69 lines (55 loc) · 2.31 KB
/
apply_index.php
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
66
67
68
69
<?php
/**
* ECSHOP 专题前台
* ============================================================================
* 版权所有 2005-2011 上海商派网络科技有限公司,并保留所有权利。
* 网站地址: http://www.ecshop.com;
* ----------------------------------------------------------------------------
* 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和
* 使用;不允许对程序代码以任何形式任何目的的再发布。
* ============================================================================
* @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();
$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')
{
}
$smarty->display('apply_index.dwt');
?>