40 lines
1.4 KiB
PHP
40 lines
1.4 KiB
PHP
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | 海豚PHP框架 [ DolphinPHP ]
|
|
// +----------------------------------------------------------------------
|
|
// | 版权所有 2016~2019 广东卓锐软件有限公司 [ http://www.zrthink.com ]
|
|
// +----------------------------------------------------------------------
|
|
// | 官方网站: http://dolphinphp.com
|
|
// +----------------------------------------------------------------------
|
|
|
|
namespace app\index\controller;
|
|
|
|
/**
|
|
* 插件控制器
|
|
* @package app\index\home
|
|
*/
|
|
class Plugin extends Home
|
|
{
|
|
/**
|
|
* 执行插件内部方法
|
|
* @author 蔡伟明 <314013107@qq.com>
|
|
* @return mixed
|
|
*/
|
|
public function execute()
|
|
{
|
|
$plugin = input('param._plugin');
|
|
$controller = input('param._controller');
|
|
$action = input('param._action');
|
|
$params = $this->request->except(['_plugin', '_controller', '_action'], 'param');
|
|
|
|
if (empty($plugin) || empty($controller) || empty($action)) {
|
|
$this->error('没有指定插件名称、控制器名称或操作名称');
|
|
}
|
|
|
|
if (!plugin_action_exists($plugin, $controller, $action)) {
|
|
$this->error("找不到方法:{$plugin}/{$controller}/{$action}");
|
|
}
|
|
return plugin_action($plugin, $controller, $action, $params);
|
|
}
|
|
}
|