Girls.php 1.42 KB
<?php

use Action\AbstractAction;
use Plugin\Helpers;

/**
 * 女生首页
 */
class GirlsController extends AbstractAction
{

    /**
     * 女生首页
     */
    public function indexAction()
    {
        // 设置浏览器缓存5分钟
        $this->setExpires(300); // 缓存5分钟
        // 设置COOKIE标识用户访问过该页面了
        // Index\HomeModel::setSwitchToCookie(Index\HomeModel::COOKIE_NAME_GIRLS);
        // 设置网站标题
        $this->setTitle('女生首页');
        // 显示侧边栏
        $this->setNavSide('girls');
        // 显示底部TAB
        $this->setNavFooterTab();

        // 渲染模板并输出
        $this->_view->display('index', array(
            'grilsHomePage' => true,
            'homeHeader' => array('searchUrl' => Helpers::url('/search', null, 'search')),
            'maybeLike' => true,
            'content' => Index\HomeModel::getGirlsFloor(),
            'pageFooter' => true,
        ));
    }

    /**
     * 异步获取女首底部banner数据
     * @return string 底部Banner数据
     */
    public function bottomBannerAction()
    {
        do {
            if (!$this->isAjax()) {
                break;
            }

            $bottomBanner = Index\HomeModel::getBottomBanner(2);
            if (empty($bottomBanner)) {
                break;
            }

            $this->echoJson($bottomBanner);
        } while (false);

        echo ' ';
    }

}