Lifestyle.php
861 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
39
<?php
use Action\AbstractAction;
use LibModels\Wap\Home\IndexData;
use Plugin\FloorProcess;
/**
* 创意生活首页
*/
class LifestyleController extends AbstractAction
{
public function indexAction()
{
// 显示侧边栏
$this->setNavSide();
// 显示顶部下载
$this->setHeaderDownload();
// 设置顶部信息(搜索)
$this->setHomeChannelHeader();
$data = array();
// 频道数据
$channelData = IndexData::getUserChannelData(0, '1,3', '9aa25f5133f011ec96c2045eb15ae425');
$channels = array();
if($channelData['code'] == 200)
{
$data['content'] = FloorProcess::getContent($channelData['data'], 4);
}
$this->_view->assign('title', 'YOHO!有货');
$this->_view->display('index', $data);
}
}