• This project
    • Loading...
  • Sign in

fe / YOHOBUYPC · Files

Go to a project

GitLab

  • Go to group
  • Project
  • Activity
  • Files
  • Commits
  • Pipelines 0
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 2
  • Members
  • Labels
  • Wiki
  • Forks
  • Network
  • Create a new issue
  • YOHOBUYPC
  • ..
  • controllers
  • Index.php
  • web framework
    1df90550
    by xuqi
    2015-11-23 17:29:57 +0800  
    Browse Files
Index.php 224 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
<?php

use Action\AbstractAction;
use Plugin\Helpers;

class IndexController extends AbstractAction
{
    /**
     * 商品列表
     */
    public function indexAction()
    {
        $this->_view->display('list');
    }
}