Lifestyle.php
537 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,
'footerTop'=> true,
'lifestyle' => HomeModel::getChannelResource(HomeModel::COOKIE_NAME_LIFESTYLE, HomeModel::CODE_LIFESTYLE_CHANNEL)
);
$this->_view->display('index', $data);
}
}