• This project
    • Loading...
  • Sign in

fe / YOHOBUYWAP · Files

Go to a project

GitLab

  • Go to group
  • Project
  • Activity
  • Files
  • Commits
  • Pipelines 0
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Members
  • Labels
  • Wiki
  • Forks
  • Network
  • Create a new issue
  • YOHOBUYWAP
  • yohobuy
  • www.yohobuy.com
  • application
  • controllers
  • Girls.php
  • code review by hf: do add web group file
    61cdee93
    by hf
    2015-12-28 16:47:32 +0800  
    Browse Files
Girls.php 480 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
<?php
use Action\WebAction;
use Index\HomeModel;

/**
 * 女首
 */
class GirlsController extends WebAction
{

    public function indexAction()
    {
        $this->setWebNavHeader(HomeModel::COOKIE_NAME_GIRLS);
        
        $data = array(
            'boysHomePage' => true,
            'girls' => HomeModel::getChannelResource(HomeModel::COOKIE_NAME_GIRLS, HomeModel::CODE_GIRLS_CHANNEL)
        );
        $this->_view->display('index', $data);
    }
}