29 lines
863 B
PHP
29 lines
863 B
PHP
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | 海豚PHP框架 [ DolphinPHP ]
|
|
// +----------------------------------------------------------------------
|
|
// | 版权所有 2016~2019 广东卓锐软件有限公司 [ http://www.zrthink.com ]
|
|
// +----------------------------------------------------------------------
|
|
// | 官方网站: http://dolphinphp.com
|
|
// +----------------------------------------------------------------------
|
|
|
|
namespace plugins\HelloWorld\model;
|
|
|
|
use app\common\model\Plugin;
|
|
|
|
/**
|
|
* 后台插件模型
|
|
* @package plugins\HelloWorld\model
|
|
*/
|
|
class HelloWorld extends Plugin
|
|
{
|
|
// 设置当前模型对应的完整数据表名称
|
|
protected $name = 'plugin_hello';
|
|
|
|
public function test()
|
|
{
|
|
// 获取插件的设置信息
|
|
halt('test');
|
|
}
|
|
}
|