| DIR: /home/dhnidqcz/public_html/.tmp/plugins/VLCPlayer/ |
| Current File : //home/dhnidqcz/public_html/.tmp/plugins/VLCPlayer/app.php |
<?php
class VLCPlayerPlugin extends PluginBase{
function __construct(){
parent::__construct();
}
public function regiest(){
$this->hookRegiest(array(
'user.commonJs.insert' => 'VLCPlayerPlugin.echoJs',
));
}
public function echoJs($st,$act){
if($this->isFileExtence($st,$act)){
$this->echoFile('static/main.js');
}
}
} |