• 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
  • yohobuy
  • www.yohobuy.com
  • application
  • controllers
  • Download.php
  • PC接口相关
    abebc28e
    by whb
    2016-04-28 14:11:57 +0800  
    Browse Files
Download.php 344 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
<?php

use Action\WebAction;
use WebPlugin\Helpers;

/**
 * 默认控制器
 */
class DownloadController extends WebAction
{
    public function appAction()
    {
        //头部导航
        $channel = Helpers::getChannelNameByCookie();
        $this->setWebNavHeader($channel);
        $this->_view->display('app');
    }
}