Lifestyle.php 1.02 KB
<?php
use Action\WebAction;
use Index\HomeModel;

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

    public function indexAction()
    {
        $this->setTitle('创意生活|创意生活馆,潮流创意家居,家居生活用品|YOHO!BUY有货 100%正品保证', false);
        $this->setKeywords('创意生活,创意生活馆,潮流家居,潮流创意家居,家居生活用品,YOHO!有货');
        $this->setDescription('YOHO!BUY有货官网创意生活频道汇集了创意生活馆,潮流创意家居,家居生活用品等正品网购,给您的生活带来更多创意。YOHO!BUY有货购物100%正品保证,支持货到付款。');
        $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);
    }
}