55 lines
1.2 KiB
PHP
55 lines
1.2 KiB
PHP
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | YwxApp [ WE CAN DO IT JUST THINK ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2026-2036 http://ywxapp.cn All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Author: ywxapp<admin@ywxapp.cn>
|
|
// +----------------------------------------------------------------------
|
|
declare (strict_types = 1);
|
|
|
|
namespace addon\articles;
|
|
|
|
use ywxapp\AddonBase;
|
|
|
|
/**
|
|
* 文章CMS插件启动类
|
|
*/
|
|
class Addon extends addon
|
|
{
|
|
// 插件基本信息
|
|
public $info = [
|
|
'name' => 'articles',
|
|
'title' => '文章CMS',
|
|
'description' => '完整文章类 CMS 插件:文章、分类、标签、评论',
|
|
'status' => 1,
|
|
'author' => 'ywxapp',
|
|
'version' => '1.0.0',
|
|
'type' => 1,
|
|
];
|
|
|
|
// 插件安装
|
|
public function install()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
// 插件卸载
|
|
public function uninstall()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
// 插件启用
|
|
public function enable()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
// 插件禁用
|
|
public function disable()
|
|
{
|
|
return true;
|
|
}
|
|
}
|