HOME


Mini Shell 1.0
DIR: /home/dhnidqcz/public_html/.tmp/plugins/DPlayer/
Upload File :
Current File : /home/dhnidqcz/public_html/.tmp/plugins/DPlayer/app.php
<?php

class DPlayerPlugin extends PluginBase{
	function __construct(){
		parent::__construct();
	}
	public function regiest(){
		$this->hookRegiest(array(
			'user.commonJs.insert' => 'DPlayerPlugin.echoJs',
		));
	}
	public function echoJs($st,$act){
		if($this->isFileExtence($st,$act)){
			$this->echoFile('static/main.js');
		}
	}
}