Index.php 1.04 KB
<?php

use Action\WebAction;
use Index\HomeModel;
use WebPlugin\Helpers;

/**
 * 默认控制器
 */
class IndexController extends WebAction
{
    
    /**
     * 男生首页
     */
    public function indexAction()
    {
       // 判断是不是女生
       $channel = Helpers::getChannelNameByCookie();
       if ($channel === 'girls') {
           $this->go(Helpers::url('/woman'));
       } else {
           // 设置客户端浏览器1分钟内不改变 
           $this->setLastModified(mktime(date('H'), date('i'), 0, date('n'), date('j'), date('Y')));
           // 设置浏览器缓存1分钟
           $this->setExpires(60);
       }
       
       // 传递模板数据,渲染模板
       $this->setWebNavHeader(HomeModel::COOKIE_NAME_BOYS);
       $data = array(
           'boysHomePage' => true,
           'footerTop'=> true,
           'boys' => HomeModel::getChannelResource(HomeModel::COOKIE_NAME_BOYS, HomeModel::CODE_BOYS_CHANNEL)
       );
       $this->_view->display('index', $data);
    }
    
}