Lifestyle.php 558 Bytes
<?php
use Action\WebAction;
use Index\HomeModel;

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

    public function indexAction()
    {
        $this->setWebNavHeader(HomeModel::COOKIE_NAME_LIFESTYLE);
        $data = array(
            'boysHomePage' => true,
            'lifestyle' => HomeModel::getChannelResource(HomeModel::COOKIE_NAME_LIFESTYLE, HomeModel::CODE_LIFESTYLE_CHANNEL)
        )
        // HomeModel::getLifestyleChannel(),
        ;
        $this->_view->display('index', $data);
    }
}