Girls.php
629 Bytes
<?php
use Action\AbstractAction;
/**
* 女生首页
*/
class GirlsController extends AbstractAction
{
/**
* 女生首页
*/
public function indexAction()
{
// 设置网站标题
$this->setTitle('女生首页');
// 显示侧边栏
$this->setNavSide();
// 设置顶部信息(搜索)
$this->setHomeChannelHeader();
// 渲染模板并输出
$this->_view->display('index', array(
'grilsHomePage' => true,
'maybeLike' => true,
'content' => Index\HomeModel::getGirlsFloor()
));
}
}