chore: 重写初始提交(清空历史,整理后全量提交)
This commit is contained in:
@@ -0,0 +1,54 @@
|
||||
<?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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user