HOME


Mini Shell 1.0
DIR: /proc/self/root/proc/thread-self/root/home/dhnidqcz/public_html/.tmp/plugins/simpleClock/
Upload File :
Current File : //proc/self/root/proc/thread-self/root/home/dhnidqcz/public_html/.tmp/plugins/simpleClock/app.php
<?php

/**
 * 隐藏插件,默认开启
 */
class simpleClockPlugin extends PluginBase{
	function __construct(){
		parent::__construct();
	}
	public function regiest(){
		$this->hookRegiest(array(
			'user.commonJs.insert' => 'simpleClockPlugin.echoJs'
		));
	}
	public function echoJs($st,$act){
		$this->echoFile('static/main.js');
	}
	public function index(){
		include($this->pluginPath.'static/page.html');
	}
}