-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhooker.class.php
More file actions
98 lines (84 loc) · 1.94 KB
/
Copy pathhooker.class.php
File metadata and controls
98 lines (84 loc) · 1.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<?php
/*
[DISCUZ!] dps_exadmincp/hooker.class.php - 文件作用描述
Version: 0.01
Author: Bovvic(671064591@qq.com)
Copyright: For author
Last Modified: 2012.12.05
*/
class plugin_dps_exadmincp{
function __construct() {
}
function global_cpnav_top(){
global $_G;
include template('dps_exadmincp:_tpl_'.__FUNCTION__);
return $return;
}
function global_footer(){
global $_G;
include template('dps_exadmincp:_tpl_'.__FUNCTION__);
return $return;
}
function global_footerlink(){
global $_G;
include template('dps_exadmincp:_tpl_'.__FUNCTION__);
return $return;
}
function global_footer_infomation(){
global $_G;
include template('dps_exadmincp:_tpl_'.__FUNCTION__);
return $return;
}
}
/*function global_usernav_extra1(){
return <<<EOF
<wb:login-button type="3,2" onlogin="login" onlogout="logout">登录按钮</wb:login-button>
EOF;
}*/
class plugin_dps_exadmincp_forum extends plugin_dps_exadmincp{
function __construct(){
//parent::__construct();
}
function index_middle(){
global $_G;
include template('dps_exadmincp:_tpl_'.__FUNCTION__);
return $return;
}
function forumdisplay_fastpost_content(){
global $_G;
include template('dps_exadmincp:_tpl_'.__FUNCTION__);
return $return;
}
function forumdisplay_threadlist_bottom(){
global $_G;
include template('dps_exadmincp:_tpl_'.__FUNCTION__);
return $return;
}
function forumdisplay_leftside_bottom(){
global $_G;
include template('dps_exadmincp:_tpl_'.__FUNCTION__);
return $return;
}
function viewthread_postbutton_top(){
global $_G;
$return = $this->_postbutton();
return $return;
}
function forumdisplay_postbutton_bottom(){
global $_G;
$return = $this->_postbutton();
return $return;
}
function _postbutton(){
global $_G;
$return = '';
return $return;
}
}
/*
class plugin_addbybishop_forum extends plugin_addbybishop{
function __construct(){
parent::__construct();
}
}*/
?>