You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
888 B
33 lines
888 B
<?php
|
|
/*----------------------------------------------------------------------
|
|
* 项目名称: CloudAdmin
|
|
* +----------------------------------------------------------------------
|
|
* 版权所有: 2014~2020 安徽云掌开发团队
|
|
* +----------------------------------------------------------------------
|
|
* 官方网站: [ http://www.yaoyz.com、http://www.ahyunzhang.com ]
|
|
* +----------------------------------------------------------------------
|
|
* Date: 2018/11/15 9:47
|
|
* +----------------------------------------------------------------------
|
|
* Des: 插件管理 评论插件
|
|
// +----------------------------------------------------------------------*/
|
|
|
|
namespace hook;
|
|
|
|
use think\Controller;
|
|
|
|
class comment extends Controller
|
|
{
|
|
/**
|
|
* 评论插件
|
|
* @param $type
|
|
*/
|
|
public function run()
|
|
{
|
|
return 'a';
|
|
}
|
|
|
|
public function add()
|
|
{
|
|
|
|
}
|
|
}
|