mirror of
https://github.com/aoaostar/toolbox.git
synced 2025-12-27 23:11:05 +00:00
30 lines
697 B
PHP
30 lines
697 B
PHP
<?php
|
||
|
||
namespace plugin\aoaostar_com\example;
|
||
|
||
|
||
use app\model\Plugin;
|
||
|
||
class Install implements \plugin\Install
|
||
{
|
||
# 安装时运行方法
|
||
public function Install(Plugin $model)
|
||
{
|
||
# 标题
|
||
$model->title = "Hello,Pluto";
|
||
# 类名、无需修改
|
||
$model->class = plugin_current_class_get(__NAMESPACE__);
|
||
# 路由、即 example
|
||
$model->alias = base_space_name(__NAMESPACE__);
|
||
# 描述
|
||
$model->desc = 'If you see this message, it means that your program is running properly.';
|
||
# 版本号
|
||
$model->version = 'v1.0';
|
||
}
|
||
|
||
# 卸载时运行方法
|
||
public function UnInstall(Plugin $model)
|
||
{
|
||
|
||
}
|
||
} |