Kids.php 664 Bytes
<?php

use Action\AbstractAction;

/**
 * 儿童首页
 */
class KidsController extends AbstractAction
{

    /**
     * 潮童首页
     */
    public function indexAction()
    {
        // 设置网站标题
        $this->setTitle('潮童首页');
        // 显示侧边栏
        $this->setNavSide();
        // 设置顶部信息(搜索)
        $this->setHomeChannelHeader();

        // 渲染模板并输出
        $this->_view->display('index', array(
            'searchUrl' => '/search',
            'kidsHomePage' => true,
            'maybeLike' => true,
            'content' => Index\HomeModel::getKidsFloor()
        ));
        
    }

}