Lifestyle.php 1.06 KB
<?php

use Action\AbstractAction;
use Plugin\Helpers;

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

    /**
     * 创意生活首页
     */
    public function indexAction()
    {
        // 设置客户端浏览器1分钟内不改变
        $this->setLastModified(mktime(date('H'), date('i'), 0, date('n'), date('j'), date('Y')));

        // 设置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,
        ));
    }

}