Home.php 730 Bytes
<?php

use Action\AbstractAction;
use Plugin\Helpers;

/**
 * 个人中心相关的控制器
 * 
 * @name HomeController
 * @package 
 * @copyright yoho.inc
 * @version 1.0 (2015-10-28 16:28:32)
 * @author fei.hong <fei.hong@yoho.cn>
 */
class HomeController extends AbstractAction
{
    /**
     * 个人中心入口
     */
    public function indexAction()
    {
        // 目前跳到老站
        // $this->go(OLD_MAIN . '/home');
        // 渲染模板
        // 设置网站标题
        $this->setTitle('男生首页');

        $this->_view->display('index', array(
            'homeHeader' => array('searchUrl' => Helpers::url('/search', null, 'search')),
            'pageFooter' => true,
        ));
    }
    
}