Lifestyle.php 1020 Bytes
<?php

use Action\AbstractAction;
use Plugin\Helpers;

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

    /**
     * 创意生活首页
     */
    public function indexAction()
    {
        // 设置浏览器缓存5分钟
        $this->setExpires(300); // 缓存5分钟
        // 设置COOKIE标识用户访问过该页面了
        // Index\HomeModel::setSwitchToCookie(Index\HomeModel::COOKIE_NAME_LIFESTYLE);
        // 设置网站标题
        $this->setTitle('创意生活首页');
        // 显示侧边栏
        $this->setNavSide('lifestyle');
        // 显示底部TAB
        $this->setNavFooterTab();

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

}