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.
16 lines
547 B
16 lines
547 B
1 year ago
|
<?php
|
||
|
|
||
|
namespace Notebook;
|
||
|
|
||
|
use App\Interfaces\PluginsInstallInterface;
|
||
|
use App\Util\PluginsInstallHelper;
|
||
|
|
||
|
class Install implements PluginsInstallInterface
|
||
|
{
|
||
|
|
||
|
public static function run(): void
|
||
|
{
|
||
|
PluginsInstallHelper::addResource(__DIR__ . '/resource/wangeditor_editor@5.1.23_dist_index.js', '/static/wangeditor_editor@5.1.23_dist_index.js');
|
||
|
PluginsInstallHelper::addResource(__DIR__ . '/resource/wangeditor_editor@5.1.23_dist_css_style.css', '/static/wangeditor_editor@5.1.23_dist_css_style.css');
|
||
|
}
|
||
|
}
|