Lifestyle.php 900 Bytes
<?php

use Action\AbstractAction;
use Plugin\Helpers;

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

    /**
     * 创意生活首页
     */
    public function indexAction()
    {
        // 设置COOKIE标识用户访问过该页面了
        Index\HomeModel::setSwitchToCookie(Index\HomeModel::COOKIE_NAME_LIFESTYLE);

        // 设置网站标题
        $this->setTitle('创意生活首页');
        // 显示侧边栏
        $this->setNavSide();

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

}