Girls.php 997 Bytes
<?php
use Action\WebAction;
use Index\HomeModel;
/**
 * 女首
 */
class GirlsController extends WebAction
{

    public function indexAction()
    {
        $this->setTitle('女生|时尚潮流女装,日韩女装,潮牌女装全球购|YOHO!BUY有货  100%正品保证', false);
        $this->setKeywords('女生服饰,时尚潮流女装,日韩女装,女装正品购物网站,女装全球购');
        $this->setDescription('YOHO!BUY有货官网女生频道汇集了全球女装潮流时尚,提供时尚潮流女装,日版女装,韩版女装,潮牌女装正品全球购。YOHO!BUY有货购物100%正品保证,支持货到付款。');
        $this->setWebNavHeader(HomeModel::COOKIE_NAME_GIRLS);
        $data = array(
            'boysHomePage' => true,
            'footerTop'=> true,
            'girls' => HomeModel::getChannelResource(HomeModel::COOKIE_NAME_GIRLS, HomeModel::CODE_GIRLS_CHANNEL)
        );
        $this->_view->display('index', $data);
    }
    
}