13 lines
224 B
PHP
Executable File
13 lines
224 B
PHP
Executable File
<?php
|
|
/**
|
|
* 自动执行
|
|
*/
|
|
class adminAutoRun extends Controller {
|
|
function __construct() {
|
|
parent::__construct();
|
|
}
|
|
|
|
public function index(){
|
|
ActionCall('admin.log.hookBind'); // 绑定日志hook
|
|
}
|
|
} |