48 lines
1.5 KiB
PHP
48 lines
1.5 KiB
PHP
|
|
<?php
|
||
|
|
// +----------------------------------------------------------------------
|
||
|
|
// | ShopXO 国内领先企业级B2C免费开源电商系统
|
||
|
|
// +----------------------------------------------------------------------
|
||
|
|
// | Copyright (c) 2011~2099 http://shopxo.net All rights reserved.
|
||
|
|
// +----------------------------------------------------------------------
|
||
|
|
// | Licensed ( https://opensource.org/licenses/mit-license.php )
|
||
|
|
// +----------------------------------------------------------------------
|
||
|
|
// | Author: Devil
|
||
|
|
// +----------------------------------------------------------------------
|
||
|
|
namespace app\index\controller;
|
||
|
|
|
||
|
|
use app\index\controller\Common;
|
||
|
|
use app\service\ApiService;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 空控制器响应
|
||
|
|
* @author Devil
|
||
|
|
* @blog http://gong.gg/
|
||
|
|
* @version 1.0.0
|
||
|
|
* @date 2018-11-30
|
||
|
|
* @desc description
|
||
|
|
*/
|
||
|
|
class Error extends Common
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* 空控制器响应
|
||
|
|
* @author Devil
|
||
|
|
* @blog http://gong.gg/
|
||
|
|
* @version 1.0.0
|
||
|
|
* @date 2018-11-30
|
||
|
|
* @desc description
|
||
|
|
* @param [string] $method [方法名称]
|
||
|
|
* @param [array] $args [参数]
|
||
|
|
*/
|
||
|
|
public function __call($method, $args)
|
||
|
|
{
|
||
|
|
$msg = MyLang('controller_not_exist_tips').'('.RequestController().')';
|
||
|
|
if(IS_AJAX)
|
||
|
|
{
|
||
|
|
return ApiService::ApiDataReturn(DataReturn($msg, -1000));
|
||
|
|
} else {
|
||
|
|
MyViewAssign('msg', $msg);
|
||
|
|
return MyView('public/tips_error');
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
?>
|