Index.php
800 Bytes
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
<?php
use Action\AbstractAction;
use LibModels\Wap\Home\IndexData;
use Plugin\Helpers;
/**
* 频道选择
*/
class IndexController extends AbstractAction
{
/**
* 启动首页频道选择
*/
public function indexAction()
{
$data = array();
// 背景图获取
$banner = IndexData::getBannerStart();
if($banner['code'] == 200)
{
foreach ($banner['data'] as $item) {
foreach ($item['data']['list'] as $val) {
$data['background'] = Helpers::getImageUrl($val['src'], 640, 800, 1);
}
}
}
//echo '<pre>';
//print_r($data);exit;
$this->_view->assign('title', 'YOHO!有货');
$this->_view->display('index', $data);
}
}