-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtpl_functions.php
executable file
·281 lines (243 loc) · 8.73 KB
/
tpl_functions.php
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
<?php
function tpl_ID($text=null) {
global $conf;
global $ID;
if ($text==null) $text=$ID;
if ($conf['useslash'])
return str_replace(":","/",$text);
else
return $text;
}
function tpl_bs_actionlink($type, $pre = '', $suf = '', $class='', $inner = '', $return = false) {
global $lang;
$data = tpl_get_action($type);
if($data === false) {
return false;
} elseif(!is_array($data)) {
$out = sprintf($data, 'link');
} else {
/**
* @var string $accesskey
* @var string $id
* @var string $method
* @var bool $nofollow
* @var array $params
* @var string $replacement
*/
extract($data);
if(strpos($id, '#') === 0) {
$linktarget = $id;
} else {
$linktarget = wl($id, $params);
}
$caption = $lang['btn_'.$type];
if(strpos($caption, '%s')){
$caption = sprintf($caption, $replacement);
}
$akey = $addTitle = '';
if($accesskey) {
$akey = 'accesskey="'.$accesskey.'" ';
$addTitle = ' ['.strtoupper($accesskey).']';
}
$rel = $nofollow ? 'rel="nofollow" ' : '';
$out = tpl_link(
$linktarget, $pre.(($inner) ? $inner : $caption).$suf,
'class="btn action '.$type.' '.$class.'" '.
$akey.$rel.
'title="'.hsc($caption).$addTitle.'"', 1
);
$out='<a href="'.$linktarget.'" ';
$out.='class="action '.$type.' '.$class.'" '.
$akey.$rel.
'title="'.hsc($caption).$addTitle.'"';
$out.='>';
if ($pre) $out.='<span class="glyphicon glyphicon-'.$pre.'"></span> ';
$out.=(($inner) ? $inner : " ".$caption);
$out.='</a>';
if ($suf) $out='<'.$suf.'>'.$out.'</'.$suf.'>';
}
if($return) return $out;
echo $out;
return true;
}
function tpl_button_a($type, $pre = '', $suf = '', $class='', $inner = '', $return = false) {
global $lang;
$data = tpl_get_action($type);
if($data === false) {
return false;
} elseif(!is_array($data)) {
$out = sprintf($data, 'link');
} else {
/**
* @var string $accesskey
* @var string $id
* @var string $method
* @var bool $nofollow
* @var array $params
* @var string $replacement
*/
extract($data);
if(strpos($id, '#') === 0) {
$linktarget = $id;
} else {
$linktarget = wl($id, $params);
}
$caption = $lang['btn_'.$type];
if(strpos($caption, '%s')){
$caption = sprintf($caption, $replacement);
}
$akey = $addTitle = '';
if($accesskey) {
$akey = 'accesskey="'.$accesskey.'" ';
$addTitle = ' ['.strtoupper($accesskey).']';
}
$rel = $nofollow ? 'rel="nofollow" ' : '';
$out = tpl_link(
$linktarget, $pre.(($inner) ? $inner : $caption).$suf,
'class="btn action '.$type.' '.$class.'" '.
$akey.$rel.
'title="'.hsc($caption).$addTitle.'"', 1
);
$out='<a href="'.$linktarget.'" ';
$out.='class="action_'.$type.' '.$class.'" '.
$akey.$rel.
'title="'.hsc($caption).$addTitle.'"';
$out.='>';
// if ($pre) $out.='<span class="glyphicon glyphicon-'.$pre.'"></span> ';
if ($pre) $out.='<div><i class="fa fa-'.$pre.'"></i></div>';
// $out.=(($inner) ? $inner : " ".$caption);
$out.='<div>'.(($inner) ? $inner : $caption).'</div>';
$out.='</a>';
// if ($suf) $out='<'.$suf.'>'.$out.'</'.$suf.'>';
}
if($return) return $out;
echo $out;
return true;
}
function ds_html_msgarea(){ /* ½ºÆ®·¦¿ë msg */
global $MSG, $MSG_shown;
/** @var array $MSG */
// store if the global $MSG has already been shown and thus HTML output has been started
$MSG_shown = true;
if(!isset($MSG)) return;
$shown = array();
foreach($MSG as $msg){
$hash = md5($msg['msg']);
if(isset($shown[$hash])) continue; // skip double messages
if(info_msg_allowed($msg)){
print '<div class="alert-'.$msg['lvl'].' alert alert-dismissible" role="alert">';
print '<button type="button" class="close" data-dismiss="alert"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>';
print $msg['msg'];
print '</div>';
}
$shown[$hash] = 1;
}
unset($GLOBALS['MSG']);
}
function tpl_bs_breadcrumbs($tag='li') {
global $lang;
global $conf;
//check if enabled
if(!$conf['breadcrumbs']) return false;
$crumbs = breadcrumbs(); //setup crumb trace
$last = count($crumbs);
if ($last==1) return false;
$i = 0;
print '<ol class="breadcrumb text-capitalize hidden-xs">';
print '<li><i class="fa fa-book" aria-hidden="true"></i></li>';
foreach($crumbs as $id => $name) {
$i++;
print '<'.$tag.'>';
tpl_link(wl($id), hsc($name), ' title="'.$id.'"');
print '</'.$tag.'>';
}
print '</ol>';
return true;
}
/*
from twitter bootstrap template
* @author Anika Henke <[email protected]>
*/
function _tpl_toc_to_twitter_bootstrap_event_hander_dump_level($data, $header='', $firstlevel=false)
{
global $lang;
if (count($data) == 0)
{
return '';
}
$ret = '';
$ret .= '<li class="divider"></li>';
// $ret .= '<ul class="nav list-group">';
if ($header != '') {
$ret .= '<li class="dropdown-header">'.$header.'</li>';
}
// $ret .= '<li class="divider"></li>';
// $first = true;
// $li_inner = ' class ="active"';
//Only supports top level links for now.
foreach($data as $heading)
{
$ret .= '<li' . $li_inner . '><a href="#' . $heading['hid'] . '">'. $chevronHTML . $heading['title'] . '</a></li>';
$li_inner = '';
}
//$ret .= '<li class="divider"></li>';
// $ret .= '</ul>';
return $ret;
}
function _tpl_toc_to_twitter_bootstrap_event_hander(&$event, $param)
{
global $conf;
global $lang;
//This is tied to the specific format of the DokuWiki TOC.
echo _tpl_toc_to_twitter_bootstrap_event_hander_dump_level($event->data,$lang['toc'], true);
}
function _tpl_toc_to_twitter_bootstrap()
{
//Force generation of TOC, request that the TOC is returned as HTML, but then ignore the returned string. The hook will instead dump out the TOC.
global $EVENT_HANDLER;
$EVENT_HANDLER->register_hook('TPL_TOC_RENDER', 'AFTER', NULL, '_tpl_toc_to_twitter_bootstrap_event_hander');
tpl_toc(true);
}
function tpl_logo ($return = false) {
global $INFO;
global $conf;
$logoSize = array();
$logo = tpl_getMediaFile(array(':'.$INFO['namespace'].':logo.jpg',':'.$INFO['namespace'].':logo.png',':¿À´Ã:'.date("n¿ù_jÀÏ").'.png',':logo.png',':wiki:logo.png', 'images/logo.png'), false, $logoSize);
$out='<div><img class="logo" src="'.$logo.'" alt="" ></div>';
// $out=tpl_link(wl('..:'),$out,'',1);
$out=tpl_link(wl($INFO['namespace'].':'.$conf['start'],'',true),$out,'',1);
if($return) return $out;
echo $out;
return true;
}
function tpl_background ($return = false) {
global $INFO;
$bg=tpl_getConf('bg_ns');
$logoSize = array();
$img = tpl_getMediaFile(array(':'.$INFO['namespace'].':'.$bg,':'.$bg, 'images/bg.png'), false);
$out=$img;
if($return) return $out;
echo $out;
return true;
}
function tpl_title ($return=false) {
global $INFO;
global $conf;
//strip_tags($conf['title'])
$out='<div class="text-center" >'.tpl_link( wl($INFO['namespace'].':'.$conf['start']),p_get_first_heading(':'.$INFO['namespace'].':'.$conf['start']),'accesskey="h" title="[H]"',1).'</div>';
if($return) return $out;
echo $out;
return true;
}
function tpl_apple_touch_icon() {
$return = '';
$look = array(':apple-touch-icon.svg', ':wiki:apple-touch-icon.png', ':apple-touch-icon.png', 'images/apple-touch-icon.png');
$return .= tpl_getMediaFile($look);
return $return;
}
function tpl_pagesize($ID) {
$page = wikiFN($ID);
if(file_exists($page))
return filesize_h(filesize($page));
}
?>