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.
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Plugins\Notebook;
|
|
|
|
|
|
|
|
use App\Interfaces\PluginsInstallInterface;
|
|
|
|
use Hyperf\DbConnection\Db;
|
|
|
|
|
|
|
|
class Install implements PluginsInstallInterface
|
|
|
|
{
|
|
|
|
|
|
|
|
public static function run(): void
|
|
|
|
{
|
|
|
|
// 添加菜单
|
|
|
|
Db::insert("INSERT INTO `sd_module`.`sc_route` (`pid`, `type`, `title`, `icon`, `route`, `power_route`, `weigh`, `create_time`, `update_time`, `delete_time`) VALUES (0, 1, '笔记本', 'Document', '/admin/plugins/notebook/lists', NULL, 1, '2023-09-24 12:36:45', '2023-09-24 12:36:45', NULL);");
|
|
|
|
}
|
|
|
|
}
|