• 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
  • m.yohobuy.com
  • application
  • controllers
  • Index.php
  • do modify nginx.reg and test render template
    452e97bd
    by hf
    2015-09-29 16:20:55 +0800  
    Browse Files
Index.php 277 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13
<?php
use Action\AbstractAction;
/**
 * 频道选择
 */
class IndexController extends AbstractAction
{
    public function indexAction()
    {
        $this->_view->assign('title', 'YOHO!有货');
        $this->_view->display('index', array('test' => 'hello world'));
    }
}