Lifestyle.php 952 Bytes
<?php

use Action\AbstractAction;
use Plugin\Helpers;

/**
 * 创意生活首页
 */
class LifestyleController extends AbstractAction
{

    /**
     * 创意生活首页
     */
    public function indexAction()
    {
        // 设置浏览器缓存5分钟
        $this->setExpires(300);

        // 设置网站标题
        $this->setTitle('创意生活首页');
        // 显示侧边栏
        $this->setNavSide('lifestyle');
        // 显示底部TAB
        $this->setNavFooterTab();
        $uid = $this->getUid(true);

        $this->setCookie('_Channel', 'lifestyle');

        // 渲染模板并输出
        $this->_view->display('index', array(
            'lifestyleHomePage' => true,
            'homeHeader' => array('searchUrl' => Helpers::url('/search', null, 'search')),
            'maybeLike' => true,
            'content' => Index\HomeModel::getLifestyleFloor($uid),
            'pageFooter' => true,
        ));
    }

}