toolbox-aoaostar/plugin/aoaostar_com/example/Install.php

25 lines
526 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
namespace plugin\aoaostar_com\example;
use app\model\Plugin;
class Install implements \plugin\Install
{
public function Install(Plugin $model)
{
$model->title = "HelloPluto";
$model->class = plugin_current_class_get(__NAMESPACE__);
$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)
{
}
}