Girls.php 667 Bytes
<?php

use Action\AbstractAction;

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

    /**
     * 女生首页
     */
    public function indexAction()
    {
        // 设置网站标题
        $this->setTitle('女生首页');
        // 显示侧边栏
        $this->setNavSide();
        // 设置顶部信息(搜索)
        $this->setHomeChannelHeader();

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

}