Girls.php
1.35 KB
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
<?php
use Action\AbstractAction;
use Plugin\Helpers;
/**
* 女生首页
*/
class GirlsController extends AbstractAction
{
/**
* 女生首页
*/
public function indexAction()
{
// 设置浏览器缓存5分钟
$this->setExpires(300);
// 设置网站标题
$this->setTitle('女生首页');
// 显示侧边栏
$this->setNavSide('girls');
// 显示底部TAB
$this->setNavFooterTab();
$uid = $this->getUid(true);
$this->setCookie('_Channel', 'girls');
// 渲染模板并输出
$this->_view->display('index', array(
'grilsHomePage' => true,
'homeHeader' => array('searchUrl' => Helpers::url('/search', null, 'search')),
'maybeLike' => true,
'content' => Index\HomeModel::getGirlsFloor($uid),
'pageFooter' => true,
));
}
/**
* 异步获取女首底部banner数据
* @return string 底部Banner数据
*/
public function bottomBannerAction()
{
do {
if (!$this->isAjax()) {
break;
}
$bottomBanner = Index\HomeModel::getBottomBanner(2);
if (empty($bottomBanner)) {
break;
}
$this->echoJson($bottomBanner);
} while (false);
echo ' ';
}
}