Girls.php 766 Bytes
<?php

use Action\AbstractAction;

/**
 * 女生首页
 */
class GirlsController extends AbstractAction
{

    /**
     * 女生首页
     */
    public function indexAction()
    {
        // 设置COOKIE标识用户访问过该页面了
        Index\HomeModel::setSwitchToCookie(Index\HomeModel::COOKIE_NAME_GIRLS);
        
        // 设置网站标题
        $this->setTitle('女生首页');
        // 显示侧边栏
        $this->setNavSide();
        // 设置顶部信息(搜索)
        $this->setHomeChannelHeader();

        // 渲染模板并输出
        $this->_view->display('index', array(
            'grilsHomePage' => true,
            'maybeLike' => true,
            'content' => Index\HomeModel::getGirlsFloor()
        ));
    }

}