2024-08-31 01:03:37 +08:00

11 lines
223 B
PHP
Executable File

<?php
class toolsCommonPlugin extends PluginBase{
function __construct(){
parent::__construct();
}
public function regist(){
$this->hookRegist(array(
'user.commonJs.insert' => 'toolsCommonPlugin.echoJs'
));
}
}