12 lines
234 B
PHP
12 lines
234 B
PHP
![]() |
<?php
|
||
|
|
||
|
class htmlEditorPlugin extends PluginBase{
|
||
|
function __construct(){
|
||
|
parent::__construct();
|
||
|
}
|
||
|
public function regist(){
|
||
|
$this->hookRegist(array(
|
||
|
'user.commonJs.insert' => 'htmlEditorPlugin.echoJs',
|
||
|
));
|
||
|
}
|
||
|
}
|