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.
53 lines
1.3 KiB
53 lines
1.3 KiB
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | YFCMF [ WE CAN DO IT MORE SIMPLE ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2015-2016 http://www.rainfer.cn All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Author: rainfer <81818832@qq.com>
|
|
// +----------------------------------------------------------------------
|
|
namespace addons\security;
|
|
|
|
use think\Addons;
|
|
|
|
/**
|
|
* 安全检测
|
|
*/
|
|
class Security extends Addons
|
|
{
|
|
public $info = [
|
|
'name' => 'Security',
|
|
'title' => '安全检测',
|
|
'description' => '网站安全检测',
|
|
'status' => 0,
|
|
'author' => 'rainfer',
|
|
'version' => '0.1',
|
|
'admin'=>'1'
|
|
];
|
|
/**
|
|
* @var array 插件管理方法,格式:['控制器/操作方法',[参数数组]])
|
|
*/
|
|
public $admin_actions = [
|
|
'index'=>['Admin/security_list'],//管理首页
|
|
'config'=>[],//设置页
|
|
'edit' => [],//编辑页
|
|
'add'=>[],//增加页
|
|
];
|
|
/**
|
|
* 插件安装方法
|
|
* @return bool
|
|
*/
|
|
public function install()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* 插件卸载方法
|
|
* @return bool
|
|
*/
|
|
public function uninstall()
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
|