Download.php
344 Bytes
<?php
use Action\WebAction;
use WebPlugin\Helpers;
/**
* 默认控制器
*/
class DownloadController extends WebAction
{
public function appAction()
{
//头部导航
$channel = Helpers::getChannelNameByCookie();
$this->setWebNavHeader($channel);
$this->_view->display('app');
}
}