16b13307fSandi<?php 26b13307fSandi/** 36b13307fSandi * DokuWiki template functions 46b13307fSandi * 56b13307fSandi * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) 66b13307fSandi * @author Andreas Gohr <andi@splitbrain.org> 76b13307fSandi */ 86b13307fSandi 9fa8adffeSAndreas Gohrif(!defined('DOKU_INC')) die('meh.'); 106b13307fSandi 116b13307fSandi/** 12ac7a515fSAndreas Gohr * Access a template file 13ac7a515fSAndreas Gohr * 14ac7a515fSAndreas Gohr * Returns the path to the given file inside the current template, uses 15ac7a515fSAndreas Gohr * default template if the custom version doesn't exist. 165a892029SAndreas Gohr * 175a892029SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 18ac7a515fSAndreas Gohr * @param string $file 19ac7a515fSAndreas Gohr * @return string 205a892029SAndreas Gohr */ 21ac7a515fSAndreas Gohrfunction template($file) { 225a892029SAndreas Gohr global $conf; 235a892029SAndreas Gohr 24ac7a515fSAndreas Gohr if(@is_readable(DOKU_INC.'lib/tpl/'.$conf['template'].'/'.$file)) 25ac7a515fSAndreas Gohr return DOKU_INC.'lib/tpl/'.$conf['template'].'/'.$file; 265a892029SAndreas Gohr 27ac7a515fSAndreas Gohr return DOKU_INC.'lib/tpl/dokuwiki/'.$file; 285a892029SAndreas Gohr} 295a892029SAndreas Gohr 30c4766956SAndreas Gohr/** 31c4766956SAndreas Gohr * Convenience function to access template dir from local FS 32c4766956SAndreas Gohr * 33c4766956SAndreas Gohr * This replaces the deprecated DOKU_TPLINC constant 34c4766956SAndreas Gohr * 35c4766956SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 36afb2c082SAndreas Gohr * @param string $tpl The template to use, default to current one 37ac7a515fSAndreas Gohr * @return string 38c4766956SAndreas Gohr */ 39afb2c082SAndreas Gohrfunction tpl_incdir($tpl='') { 4075b14482SAndreas Gohr global $conf; 41afb2c082SAndreas Gohr if(!$tpl) $tpl = $conf['template']; 42afb2c082SAndreas Gohr return DOKU_INC.'lib/tpl/'.$tpl.'/'; 43c4766956SAndreas Gohr} 44c4766956SAndreas Gohr 45c4766956SAndreas Gohr/** 46c4766956SAndreas Gohr * Convenience function to access template dir from web 47c4766956SAndreas Gohr * 48c4766956SAndreas Gohr * This replaces the deprecated DOKU_TPL constant 49c4766956SAndreas Gohr * 50c4766956SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 51afb2c082SAndreas Gohr * @param string $tpl The template to use, default to current one 52ac7a515fSAndreas Gohr * @return string 53c4766956SAndreas Gohr */ 5499dca513SAndreas Gohrfunction tpl_basedir($tpl='') { 5575b14482SAndreas Gohr global $conf; 56afb2c082SAndreas Gohr if(!$tpl) $tpl = $conf['template']; 57dcd4911eSMichael Hamann return DOKU_BASE.'lib/tpl/'.$tpl.'/'; 58c4766956SAndreas Gohr} 59c4766956SAndreas Gohr 605a892029SAndreas Gohr/** 616b13307fSandi * Print the content 626b13307fSandi * 636b13307fSandi * This function is used for printing all the usual content 646b13307fSandi * (defined by the global $ACT var) by calling the appropriate 656b13307fSandi * outputfunction(s) from html.php 666b13307fSandi * 67ee4c4a1bSAndreas Gohr * Everything that doesn't use the main template file isn't 68ee4c4a1bSAndreas Gohr * handled by this function. ACL stuff is not done here either. 696b13307fSandi * 706b13307fSandi * @author Andreas Gohr <andi@splitbrain.org> 7142ea7f44SGerrit Uitslag * 72ac7a515fSAndreas Gohr * @triggers TPL_ACT_RENDER 73ac7a515fSAndreas Gohr * @triggers TPL_CONTENT_DISPLAY 74ac7a515fSAndreas Gohr * @param bool $prependTOC should the TOC be displayed here? 75ac7a515fSAndreas Gohr * @return bool true if any output 766b13307fSandi */ 77b8595a66SAndreas Gohrfunction tpl_content($prependTOC = true) { 787ea0913cSchris global $ACT; 79b8595a66SAndreas Gohr global $INFO; 80b8595a66SAndreas Gohr $INFO['prependTOC'] = $prependTOC; 817ea0913cSchris 827ea0913cSchris ob_start(); 83746855cfSBen Coburn trigger_event('TPL_ACT_RENDER', $ACT, 'tpl_content_core'); 847ea0913cSchris $html_output = ob_get_clean(); 85746855cfSBen Coburn trigger_event('TPL_CONTENT_DISPLAY', $html_output, 'ptln'); 8654e95700STom N Harris 8754e95700STom N Harris return !empty($html_output); 887ea0913cSchris} 897ea0913cSchris 90ac7a515fSAndreas Gohr/** 91ac7a515fSAndreas Gohr * Default Action of TPL_ACT_RENDER 92ac7a515fSAndreas Gohr * 93ac7a515fSAndreas Gohr * @return bool 94ac7a515fSAndreas Gohr */ 957ea0913cSchrisfunction tpl_content_core() { 966b13307fSandi global $ACT; 976b13307fSandi global $TEXT; 986b13307fSandi global $PRE; 996b13307fSandi global $SUF; 1006b13307fSandi global $SUM; 1016b13307fSandi global $IDX; 102ac7a515fSAndreas Gohr global $INPUT; 1036b13307fSandi 1046b13307fSandi switch($ACT) { 1056b13307fSandi case 'show': 1066b13307fSandi html_show(); 1076b13307fSandi break; 108ac7a515fSAndreas Gohr /** @noinspection PhpMissingBreakStatementInspection */ 10945a99335SAdrian Lang case 'locked': 11045a99335SAdrian Lang html_locked(); 1116b13307fSandi case 'edit': 11245a99335SAdrian Lang case 'recover': 1136b13307fSandi html_edit(); 1146b13307fSandi break; 11545a99335SAdrian Lang case 'preview': 11645a99335SAdrian Lang html_edit(); 11745a99335SAdrian Lang html_show($TEXT); 11845a99335SAdrian Lang break; 119ee4c4a1bSAndreas Gohr case 'draft': 120ee4c4a1bSAndreas Gohr html_draft(); 121ee4c4a1bSAndreas Gohr break; 1226b13307fSandi case 'search': 1236b13307fSandi html_search(); 1246b13307fSandi break; 1256b13307fSandi case 'revisions': 126ac7a515fSAndreas Gohr html_revisions($INPUT->int('first')); 1276b13307fSandi break; 1286b13307fSandi case 'diff': 1296b13307fSandi html_diff(); 1306b13307fSandi break; 1316b13307fSandi case 'recent': 1323c94d07bSAnika Henke $show_changes = $INPUT->str('show_changes'); 1333c94d07bSAnika Henke if (empty($show_changes)) { 1343c94d07bSAnika Henke $show_changes = get_doku_pref('show_changes', $show_changes); 1353c94d07bSAnika Henke } 1363c94d07bSAnika Henke html_recent($INPUT->extract('first')->int('first'), $show_changes); 1376b13307fSandi break; 1386b13307fSandi case 'index': 1396b13307fSandi html_index($IDX); #FIXME can this be pulled from globals? is it sanitized correctly? 1406b13307fSandi break; 1416b13307fSandi case 'backlink': 1426b13307fSandi html_backlinks(); 1436b13307fSandi break; 1446b13307fSandi case 'conflict': 1456b13307fSandi html_conflict(con($PRE, $TEXT, $SUF), $SUM); 1466b13307fSandi html_diff(con($PRE, $TEXT, $SUF), false); 1476b13307fSandi break; 1486b13307fSandi case 'login': 1496b13307fSandi html_login(); 1506b13307fSandi break; 1516b13307fSandi case 'register': 1526b13307fSandi html_register(); 1536b13307fSandi break; 1548b06d178Schris case 'resendpwd': 1558b06d178Schris html_resendpwd(); 1568b06d178Schris break; 157820fa24bSandi case 'denied': 1582f2c518cSGerrit Uitslag html_denied(); 159820fa24bSandi break; 1608b06d178Schris case 'profile' : 1618b06d178Schris html_updateprofile(); 1628b06d178Schris break; 163c19fe9c0Sandi case 'admin': 164c19fe9c0Sandi tpl_admin(); 165c19fe9c0Sandi break; 1665b75cd1fSAdrian Lang case 'subscribe': 1675b75cd1fSAdrian Lang tpl_subscribe(); 1685b75cd1fSAdrian Lang break; 169d9162c6cSKate Arzamastseva case 'media': 170d9162c6cSKate Arzamastseva tpl_media(); 171d9162c6cSKate Arzamastseva break; 1726b13307fSandi default: 17324bb549bSchris $evt = new Doku_Event('TPL_ACT_UNKNOWN', $ACT); 174a85f63deSGerrit Uitslag if($evt->advise_before()) { 175ea67f144Sandi msg("Failed to handle command: ".hsc($ACT), -1); 176a85f63deSGerrit Uitslag } 17724bb549bSchris $evt->advise_after(); 17824bb549bSchris unset($evt); 17954e95700STom N Harris return false; 1806b13307fSandi } 18154e95700STom N Harris return true; 1826b13307fSandi} 1836b13307fSandi 184c19fe9c0Sandi/** 185b8595a66SAndreas Gohr * Places the TOC where the function is called 186b8595a66SAndreas Gohr * 187b8595a66SAndreas Gohr * If you use this you most probably want to call tpl_content with 188b8595a66SAndreas Gohr * a false argument 189b8595a66SAndreas Gohr * 190b8595a66SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 19142ea7f44SGerrit Uitslag * 192ac7a515fSAndreas Gohr * @param bool $return Should the TOC be returned instead to be printed? 193ac7a515fSAndreas Gohr * @return string 194b8595a66SAndreas Gohr */ 195b8595a66SAndreas Gohrfunction tpl_toc($return = false) { 196b8595a66SAndreas Gohr global $TOC; 197b8595a66SAndreas Gohr global $ACT; 198b8595a66SAndreas Gohr global $ID; 199b8595a66SAndreas Gohr global $REV; 200b8595a66SAndreas Gohr global $INFO; 201851f2e89SAnika Henke global $conf; 202ac7a515fSAndreas Gohr global $INPUT; 203b8595a66SAndreas Gohr $toc = array(); 204b8595a66SAndreas Gohr 205b8595a66SAndreas Gohr if(is_array($TOC)) { 206b8595a66SAndreas Gohr // if a TOC was prepared in global scope, always use it 207b8595a66SAndreas Gohr $toc = $TOC; 2083c86d7c9SAndreas Gohr } elseif(($ACT == 'show' || substr($ACT, 0, 6) == 'export') && !$REV && $INFO['exists']) { 209b8595a66SAndreas Gohr // get TOC from metadata, render if neccessary 210e0c26282SGerrit Uitslag $meta = p_get_metadata($ID, '', METADATA_RENDER_USING_CACHE); 211b8595a66SAndreas Gohr if(isset($meta['internal']['toc'])) { 212b8595a66SAndreas Gohr $tocok = $meta['internal']['toc']; 213b8595a66SAndreas Gohr } else { 2142bb0d541Schris $tocok = true; 215b8595a66SAndreas Gohr } 216f87b5dbbSChristopher Smith $toc = isset($meta['description']['tableofcontents']) ? $meta['description']['tableofcontents'] : null; 217851f2e89SAnika Henke if(!$tocok || !is_array($toc) || !$conf['tocminheads'] || count($toc) < $conf['tocminheads']) { 218b8595a66SAndreas Gohr $toc = array(); 219b8595a66SAndreas Gohr } 220b8595a66SAndreas Gohr } elseif($ACT == 'admin') { 221a61966c5SChristopher Smith // try to load admin plugin TOC 222ac7a515fSAndreas Gohr /** @var $plugin DokuWiki_Admin_Plugin */ 223a61966c5SChristopher Smith if ($plugin = plugin_getRequestAdminPlugin()) { 224b8595a66SAndreas Gohr $toc = $plugin->getTOC(); 225b8595a66SAndreas Gohr $TOC = $toc; // avoid later rebuild 226b8595a66SAndreas Gohr } 227b8595a66SAndreas Gohr } 228b8595a66SAndreas Gohr 2290b17fdc6SAndreas Gohr trigger_event('TPL_TOC_RENDER', $toc, null, false); 230b8595a66SAndreas Gohr $html = html_TOC($toc); 231b8595a66SAndreas Gohr if($return) return $html; 232b8595a66SAndreas Gohr echo $html; 233ac7a515fSAndreas Gohr return ''; 234b8595a66SAndreas Gohr} 235b8595a66SAndreas Gohr 236b8595a66SAndreas Gohr/** 237c19fe9c0Sandi * Handle the admin page contents 238c19fe9c0Sandi * 239c19fe9c0Sandi * @author Andreas Gohr <andi@splitbrain.org> 24042ea7f44SGerrit Uitslag * 24142ea7f44SGerrit Uitslag * @return bool 242c19fe9c0Sandi */ 243c19fe9c0Sandifunction tpl_admin() { 244f8cc712eSAndreas Gohr global $INFO; 245b8595a66SAndreas Gohr global $TOC; 246ac7a515fSAndreas Gohr global $INPUT; 24711e2ce22Schris 248b8595a66SAndreas Gohr $plugin = null; 249ac7a515fSAndreas Gohr $class = $INPUT->str('page'); 250ac7a515fSAndreas Gohr if(!empty($class)) { 25111e2ce22Schris $pluginlist = plugin_list('admin'); 25211e2ce22Schris 253ac7a515fSAndreas Gohr if(in_array($class, $pluginlist)) { 25411e2ce22Schris // attempt to load the plugin 255ac7a515fSAndreas Gohr /** @var $plugin DokuWiki_Admin_Plugin */ 256a04f2bd5SGerrit Uitslag $plugin = plugin_load('admin', $class); 25711e2ce22Schris } 25811e2ce22Schris } 25911e2ce22Schris 260b8595a66SAndreas Gohr if($plugin !== null) { 261b8595a66SAndreas Gohr if(!is_array($TOC)) $TOC = $plugin->getTOC(); //if TOC wasn't requested yet 262b8595a66SAndreas Gohr if($INFO['prependTOC']) tpl_toc(); 263f8cc712eSAndreas Gohr $plugin->html(); 264f8cc712eSAndreas Gohr } else { 265f8cc712eSAndreas Gohr html_admin(); 266f8cc712eSAndreas Gohr } 26754e95700STom N Harris return true; 268c19fe9c0Sandi} 2696b13307fSandi 2706b13307fSandi/** 2716b13307fSandi * Print the correct HTML meta headers 2726b13307fSandi * 2736b13307fSandi * This has to go into the head section of your template. 2746b13307fSandi * 2756b13307fSandi * @author Andreas Gohr <andi@splitbrain.org> 27642ea7f44SGerrit Uitslag * 277ac7a515fSAndreas Gohr * @triggers TPL_METAHEADER_OUTPUT 278ac7a515fSAndreas Gohr * @param bool $alt Should feeds and alternative format links be added? 279ac7a515fSAndreas Gohr * @return bool 2806b13307fSandi */ 281f96fa415SAndreas Gohrfunction tpl_metaheaders($alt = true) { 2826b13307fSandi global $ID; 283d98d4540SBen Coburn global $REV; 2846b13307fSandi global $INFO; 28572e0dc37SAndreas Gohr global $JSINFO; 2866b13307fSandi global $ACT; 2874bb1b5aeSAndreas Gohr global $QUERY; 2886b13307fSandi global $lang; 289dc57ef04Sandi global $conf; 2909c438d6cSMichael Hamann global $updateVersion; 291585bf44eSChristopher Smith /** @var Input $INPUT */ 292585bf44eSChristopher Smith global $INPUT; 2936b13307fSandi 2947bff22c0SAndreas Gohr // prepare the head array 2957bff22c0SAndreas Gohr $head = array(); 2967bff22c0SAndreas Gohr 297202ac28bSMichael Klier // prepare seed for js and css 298cd997f93SAndreas Gohr $tseed = $updateVersion; 299202ac28bSMichael Klier $depends = getConfigFiles('main'); 30084e76a7eSAndreas Gohr $depends[] = DOKU_CONF."tpl/".$conf['template']."/style.ini"; 301cd997f93SAndreas Gohr foreach($depends as $f) $tseed .= @filemtime($f); 302cd997f93SAndreas Gohr $tseed = md5($tseed); 3037bff22c0SAndreas Gohr 3046b13307fSandi // the usual stuff 3053f803e5eSGina Haeussge $head['meta'][] = array('name'=> 'generator', 'content'=> 'DokuWiki'); 306ac7a515fSAndreas Gohr $head['link'][] = array( 307ac7a515fSAndreas Gohr 'rel' => 'search', 'type'=> 'application/opensearchdescription+xml', 308ac7a515fSAndreas Gohr 'href'=> DOKU_BASE.'lib/exe/opensearch.php', 'title'=> $conf['title'] 309ac7a515fSAndreas Gohr ); 310f4f47358SBen Coburn $head['link'][] = array('rel'=> 'start', 'href'=> DOKU_BASE); 3117aedde2eSGina Haeussge if(actionOK('index')) { 312ac7a515fSAndreas Gohr $head['link'][] = array( 313ac7a515fSAndreas Gohr 'rel' => 'contents', 'href'=> wl($ID, 'do=index', false, '&'), 314ac7a515fSAndreas Gohr 'title'=> $lang['btn_index'] 315ac7a515fSAndreas Gohr ); 3167aedde2eSGina Haeussge } 317f96fa415SAndreas Gohr 318f96fa415SAndreas Gohr if($alt) { 31954be1338SGerrit Uitslag if(actionOK('rss')) { 320ac7a515fSAndreas Gohr $head['link'][] = array( 321ac7a515fSAndreas Gohr 'rel' => 'alternate', 'type'=> 'application/rss+xml', 322a1288caeSGerrit Uitslag 'title'=> $lang['btn_recent'], 'href'=> DOKU_BASE.'feed.php' 323ac7a515fSAndreas Gohr ); 324ac7a515fSAndreas Gohr $head['link'][] = array( 325ac7a515fSAndreas Gohr 'rel' => 'alternate', 'type'=> 'application/rss+xml', 326a1288caeSGerrit Uitslag 'title'=> $lang['currentns'], 327ac7a515fSAndreas Gohr 'href' => DOKU_BASE.'feed.php?mode=list&ns='.$INFO['namespace'] 328ac7a515fSAndreas Gohr ); 32954be1338SGerrit Uitslag } 330c35f3875SAndreas Gohr if(($ACT == 'show' || $ACT == 'search') && $INFO['writable']) { 331ac7a515fSAndreas Gohr $head['link'][] = array( 332ac7a515fSAndreas Gohr 'rel' => 'edit', 333715bdf1fSAndreas Gohr 'title'=> $lang['btn_edit'], 334ac7a515fSAndreas Gohr 'href' => wl($ID, 'do=edit', false, '&') 335ac7a515fSAndreas Gohr ); 336c35f3875SAndreas Gohr } 337c35f3875SAndreas Gohr 33854be1338SGerrit Uitslag if(actionOK('rss') && $ACT == 'search') { 339ac7a515fSAndreas Gohr $head['link'][] = array( 340ac7a515fSAndreas Gohr 'rel' => 'alternate', 'type'=> 'application/rss+xml', 341a1288caeSGerrit Uitslag 'title'=> $lang['searchresult'], 342ac7a515fSAndreas Gohr 'href' => DOKU_BASE.'feed.php?mode=search&q='.$QUERY 343ac7a515fSAndreas Gohr ); 3444bb1b5aeSAndreas Gohr } 345bae36d94SAndreas Gohr 346bae36d94SAndreas Gohr if(actionOK('export_xhtml')) { 347ac7a515fSAndreas Gohr $head['link'][] = array( 348a1288caeSGerrit Uitslag 'rel' => 'alternate', 'type'=> 'text/html', 'title'=> $lang['plainhtml'], 349ac7a515fSAndreas Gohr 'href'=> exportlink($ID, 'xhtml', '', false, '&') 350ac7a515fSAndreas Gohr ); 351bae36d94SAndreas Gohr } 352bae36d94SAndreas Gohr 353bae36d94SAndreas Gohr if(actionOK('export_raw')) { 354ac7a515fSAndreas Gohr $head['link'][] = array( 355a1288caeSGerrit Uitslag 'rel' => 'alternate', 'type'=> 'text/plain', 'title'=> $lang['wikimarkup'], 356ac7a515fSAndreas Gohr 'href'=> exportlink($ID, 'raw', '', false, '&') 357ac7a515fSAndreas Gohr ); 358f96fa415SAndreas Gohr } 359bae36d94SAndreas Gohr } 3606b13307fSandi 3616b13307fSandi // setup robot tags apropriate for different modes 3624f2e0004STim Weber if(($ACT == 'show' || $ACT == 'export_xhtml') && !$REV) { 3636b13307fSandi if($INFO['exists']) { 3646b13307fSandi //delay indexing: 3656b13307fSandi if((time() - $INFO['lastmod']) >= $conf['indexdelay']) { 3667bff22c0SAndreas Gohr $head['meta'][] = array('name'=> 'robots', 'content'=> 'index,follow'); 3676b13307fSandi } else { 3687bff22c0SAndreas Gohr $head['meta'][] = array('name'=> 'robots', 'content'=> 'noindex,nofollow'); 3696b13307fSandi } 37001f9be51SAnika Henke $canonicalUrl = wl($ID, '', true, '&'); 37101f9be51SAnika Henke if ($ID == $conf['start']) { 37201f9be51SAnika Henke $canonicalUrl = DOKU_URL; 37301f9be51SAnika Henke } 37401f9be51SAnika Henke $head['link'][] = array('rel'=> 'canonical', 'href'=> $canonicalUrl); 3756b13307fSandi } else { 3767bff22c0SAndreas Gohr $head['meta'][] = array('name'=> 'robots', 'content'=> 'noindex,follow'); 3776b13307fSandi } 3787a24876fSAndreas Gohr } elseif(defined('DOKU_MEDIADETAIL')) { 3797bff22c0SAndreas Gohr $head['meta'][] = array('name'=> 'robots', 'content'=> 'index,follow'); 3806b13307fSandi } else { 3817bff22c0SAndreas Gohr $head['meta'][] = array('name'=> 'robots', 'content'=> 'noindex,nofollow'); 3826b13307fSandi } 3836b13307fSandi 384831800b8SAndreas Gohr // set metadata 385831800b8SAndreas Gohr if($ACT == 'show' || $ACT == 'export_xhtml') { 386831800b8SAndreas Gohr // keywords (explicit or implicit) 387bb4866bdSchris if(!empty($INFO['meta']['subject'])) { 3887bff22c0SAndreas Gohr $head['meta'][] = array('name'=> 'keywords', 'content'=> join(',', $INFO['meta']['subject'])); 389831800b8SAndreas Gohr } else { 3907bff22c0SAndreas Gohr $head['meta'][] = array('name'=> 'keywords', 'content'=> str_replace(':', ',', $ID)); 391831800b8SAndreas Gohr } 392831800b8SAndreas Gohr } 393831800b8SAndreas Gohr 39478a6aeb1SAndreas Gohr // load stylesheets 395ac7a515fSAndreas Gohr $head['link'][] = array( 396ac7a515fSAndreas Gohr 'rel' => 'stylesheet', 'type'=> 'text/css', 397e283bd6cSAnika Henke 'href'=> DOKU_BASE.'lib/exe/css.php?t='.rawurlencode($conf['template']).'&tseed='.$tseed 398ac7a515fSAndreas Gohr ); 399bad31ae9SAndreas Gohr 4008bbcb611SAndreas Gohr // make $INFO and other vars available to JavaScripts 401463d4a65SAndreas Gohr $json = new JSON(); 40272e0dc37SAndreas Gohr $script = "var NS='".$INFO['namespace']."';"; 403585bf44eSChristopher Smith if($conf['useacl'] && $INPUT->server->str('REMOTE_USER')) { 40472e0dc37SAndreas Gohr $script .= "var SIG='".toolbar_signature()."';"; 405c591aabeSAndreas Gohr } 40672e0dc37SAndreas Gohr $script .= 'var JSINFO = '.$json->encode($JSINFO).';'; 40785f81679SAdrian Lang $head['script'][] = array('type'=> 'text/javascript', '_data'=> $script); 4088bbcb611SAndreas Gohr 4098bbcb611SAndreas Gohr // load external javascript 410ac7a515fSAndreas Gohr $head['script'][] = array( 411ac7a515fSAndreas Gohr 'type'=> 'text/javascript', 'charset'=> 'utf-8', '_data'=> '', 412e283bd6cSAnika Henke 'src' => DOKU_BASE.'lib/exe/js.php'.'?t='.rawurlencode($conf['template']).'&tseed='.$tseed 413ac7a515fSAndreas Gohr ); 4147bff22c0SAndreas Gohr 4157bff22c0SAndreas Gohr // trigger event here 416016b6153SAndreas Gohr trigger_event('TPL_METAHEADER_OUTPUT', $head, '_tpl_metaheaders_action', true); 41754e95700STom N Harris return true; 4187bff22c0SAndreas Gohr} 4197bff22c0SAndreas Gohr 4207bff22c0SAndreas Gohr/** 4217bff22c0SAndreas Gohr * prints the array build by tpl_metaheaders 4227bff22c0SAndreas Gohr * 4237bff22c0SAndreas Gohr * $data is an array of different header tags. Each tag can have multiple 4247bff22c0SAndreas Gohr * instances. Attributes are given as key value pairs. Values will be HTML 4257bff22c0SAndreas Gohr * encoded automatically so they should be provided as is in the $data array. 4267bff22c0SAndreas Gohr * 42742ea7f44SGerrit Uitslag * For tags having a body attribute specify the body data in the special 4281304d1dbSAndreas Gohr * attribute '_data'. This field will NOT BE ESCAPED automatically. 4297bff22c0SAndreas Gohr * 4307bff22c0SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 43142ea7f44SGerrit Uitslag * 43242ea7f44SGerrit Uitslag * @param array $data 4337bff22c0SAndreas Gohr */ 4347bff22c0SAndreas Gohrfunction _tpl_metaheaders_action($data) { 4357bff22c0SAndreas Gohr foreach($data as $tag => $inst) { 4367bff22c0SAndreas Gohr foreach($inst as $attr) { 4377bff22c0SAndreas Gohr echo '<', $tag, ' ', buildAttributes($attr); 43826afa874SMikhail I. Izmestev if(isset($attr['_data']) || $tag == 'script') { 439e226efe1SAndreas Gohr if($tag == 'script' && $attr['_data']) 44009f791c4SDominik Eckelmann $attr['_data'] = "/*<![CDATA[*/". 441e226efe1SAndreas Gohr $attr['_data']. 44209f791c4SDominik Eckelmann "\n/*!]]>*/"; 443e226efe1SAndreas Gohr 4441304d1dbSAndreas Gohr echo '>', $attr['_data'], '</', $tag, '>'; 4457bff22c0SAndreas Gohr } else { 4467bff22c0SAndreas Gohr echo '/>'; 4477bff22c0SAndreas Gohr } 4487bff22c0SAndreas Gohr echo "\n"; 4497bff22c0SAndreas Gohr } 4507bff22c0SAndreas Gohr } 4516b13307fSandi} 4526b13307fSandi 4536b13307fSandi/** 4546b13307fSandi * Print a link 4556b13307fSandi * 4565e163278SAndreas Gohr * Just builds a link. 4576b13307fSandi * 4586b13307fSandi * @author Andreas Gohr <andi@splitbrain.org> 45942ea7f44SGerrit Uitslag * 46042ea7f44SGerrit Uitslag * @param string $url 46142ea7f44SGerrit Uitslag * @param string $name 46242ea7f44SGerrit Uitslag * @param string $more 46321d806cdSGerrit Uitslag * @param bool $return if true return the link html, otherwise print 46421d806cdSGerrit Uitslag * @return bool|string html of the link, or true if printed 4656b13307fSandi */ 4661af98a77SAnika Henkefunction tpl_link($url, $name, $more = '', $return = false) { 46701f17825SAnika Henke $out = '<a href="'.$url.'" '; 4681af98a77SAnika Henke if($more) $out .= ' '.$more; 4691af98a77SAnika Henke $out .= ">$name</a>"; 4701af98a77SAnika Henke if($return) return $out; 4711af98a77SAnika Henke print $out; 47254e95700STom N Harris return true; 4736b13307fSandi} 4746b13307fSandi 4756b13307fSandi/** 47655efc227SAndreas Gohr * Prints a link to a WikiPage 47755efc227SAndreas Gohr * 47855efc227SAndreas Gohr * Wrapper around html_wikilink 47955efc227SAndreas Gohr * 48055efc227SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 48142ea7f44SGerrit Uitslag * 48242ea7f44SGerrit Uitslag * @param string $id page id 48342ea7f44SGerrit Uitslag * @param string|null $name the name of the link 48421d806cdSGerrit Uitslag * @return bool true 48555efc227SAndreas Gohr */ 4860b17fdc6SAndreas Gohrfunction tpl_pagelink($id, $name = null) { 487d317fb5dSAnika Henke print '<bdi>'.html_wikilink($id, $name).'</bdi>'; 48854e95700STom N Harris return true; 48955efc227SAndreas Gohr} 49055efc227SAndreas Gohr 49155efc227SAndreas Gohr/** 492a3ec5f4aSmatthiasgrimm * get the parent page 493a3ec5f4aSmatthiasgrimm * 494a3ec5f4aSmatthiasgrimm * Tries to find out which page is parent. 495a3ec5f4aSmatthiasgrimm * returns false if none is available 496a3ec5f4aSmatthiasgrimm * 497377f9e97SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 49842ea7f44SGerrit Uitslag * 49942ea7f44SGerrit Uitslag * @param string $id page id 50042ea7f44SGerrit Uitslag * @return false|string 501a3ec5f4aSmatthiasgrimm */ 502377f9e97SAndreas Gohrfunction tpl_getparent($id) { 503377f9e97SAndreas Gohr $parent = getNS($id).':'; 504377f9e97SAndreas Gohr resolve_pageid('', $parent, $exists); 505a197105eSmatthiasgrimm if($parent == $id) { 506a197105eSmatthiasgrimm $pos = strrpos(getNS($id), ':'); 507a197105eSmatthiasgrimm $parent = substr($parent, 0, $pos).':'; 508a197105eSmatthiasgrimm resolve_pageid('', $parent, $exists); 509377f9e97SAndreas Gohr if($parent == $id) return false; 510a197105eSmatthiasgrimm } 511377f9e97SAndreas Gohr return $parent; 512a3ec5f4aSmatthiasgrimm} 513a3ec5f4aSmatthiasgrimm 514a3ec5f4aSmatthiasgrimm/** 5156b13307fSandi * Print one of the buttons 5166b13307fSandi * 517a453d131SAdrian Lang * @author Adrian Lang <mail@adrianlang.de> 518a453d131SAdrian Lang * @see tpl_get_action 519e0c26282SGerrit Uitslag * 520e0c26282SGerrit Uitslag * @param string $type 521e0c26282SGerrit Uitslag * @param bool $return 522e0c26282SGerrit Uitslag * @return bool|string html, or false if no data, true if printed 5236b13307fSandi */ 5241af98a77SAnika Henkefunction tpl_button($type, $return = false) { 525a453d131SAdrian Lang $data = tpl_get_action($type); 526a453d131SAdrian Lang if($data === false) { 527a453d131SAdrian Lang return false; 528a453d131SAdrian Lang } elseif(!is_array($data)) { 529a453d131SAdrian Lang $out = sprintf($data, 'button'); 530409d7af7SAndreas Gohr } else { 531ac7a515fSAndreas Gohr /** 532ac7a515fSAndreas Gohr * @var string $accesskey 533ac7a515fSAndreas Gohr * @var string $id 534ac7a515fSAndreas Gohr * @var string $method 535ac7a515fSAndreas Gohr * @var array $params 536ac7a515fSAndreas Gohr */ 537a453d131SAdrian Lang extract($data); 538a453d131SAdrian Lang if($id === '#dokuwiki__top') { 539a453d131SAdrian Lang $out = html_topbtn(); 540409d7af7SAndreas Gohr } else { 541a453d131SAdrian Lang $out = html_btn($type, $id, $accesskey, $params, $method); 542409d7af7SAndreas Gohr } 543409d7af7SAndreas Gohr } 5441af98a77SAnika Henke if($return) return $out; 545a453d131SAdrian Lang echo $out; 546a453d131SAdrian Lang return true; 5476b13307fSandi} 5486b13307fSandi 5496b13307fSandi/** 550ed630903Sandi * Like the action buttons but links 551ed630903Sandi * 552a453d131SAdrian Lang * @author Adrian Lang <mail@adrianlang.de> 553a453d131SAdrian Lang * @see tpl_get_action 554e0c26282SGerrit Uitslag * 55542ea7f44SGerrit Uitslag * @param string $type action command 556e0c26282SGerrit Uitslag * @param string $pre prefix of link 557e0c26282SGerrit Uitslag * @param string $suf suffix of link 558e0c26282SGerrit Uitslag * @param string $inner innerHML of link 55921d806cdSGerrit Uitslag * @param bool $return if true it returns html, otherwise prints 560e0c26282SGerrit Uitslag * @return bool|string html or false if no data, true if printed 561a453d131SAdrian Lang */ 562a453d131SAdrian Langfunction tpl_actionlink($type, $pre = '', $suf = '', $inner = '', $return = false) { 563a453d131SAdrian Lang global $lang; 564a453d131SAdrian Lang $data = tpl_get_action($type); 565a453d131SAdrian Lang if($data === false) { 566a453d131SAdrian Lang return false; 567a453d131SAdrian Lang } elseif(!is_array($data)) { 568a453d131SAdrian Lang $out = sprintf($data, 'link'); 569a453d131SAdrian Lang } else { 570ac7a515fSAndreas Gohr /** 571ac7a515fSAndreas Gohr * @var string $accesskey 572ac7a515fSAndreas Gohr * @var string $id 573ac7a515fSAndreas Gohr * @var string $method 574b1af9014SChristopher Smith * @var bool $nofollow 575ac7a515fSAndreas Gohr * @var array $params 576becfa414SGerrit Uitslag * @var string $replacement 577ac7a515fSAndreas Gohr */ 578a453d131SAdrian Lang extract($data); 579a453d131SAdrian Lang if(strpos($id, '#') === 0) { 580a453d131SAdrian Lang $linktarget = $id; 581a453d131SAdrian Lang } else { 582a453d131SAdrian Lang $linktarget = wl($id, $params); 583a453d131SAdrian Lang } 584a453d131SAdrian Lang $caption = $lang['btn_'.$type]; 585becfa414SGerrit Uitslag if(strpos($caption, '%s')){ 586becfa414SGerrit Uitslag $caption = sprintf($caption, $replacement); 587becfa414SGerrit Uitslag } 588c7e90e3fSAnika Henke $akey = $addTitle = ''; 589c7e90e3fSAnika Henke if($accesskey) { 590c7e90e3fSAnika Henke $akey = 'accesskey="'.$accesskey.'" '; 591c7e90e3fSAnika Henke $addTitle = ' ['.strtoupper($accesskey).']'; 592c7e90e3fSAnika Henke } 593b1af9014SChristopher Smith $rel = $nofollow ? 'rel="nofollow" ' : ''; 594ac7a515fSAndreas Gohr $out = tpl_link( 595ac7a515fSAndreas Gohr $linktarget, $pre.(($inner) ? $inner : $caption).$suf, 596a453d131SAdrian Lang 'class="action '.$type.'" '. 597b1af9014SChristopher Smith $akey.$rel. 598e0c26282SGerrit Uitslag 'title="'.hsc($caption).$addTitle.'"', true 599ac7a515fSAndreas Gohr ); 600a453d131SAdrian Lang } 601a453d131SAdrian Lang if($return) return $out; 602a453d131SAdrian Lang echo $out; 603a453d131SAdrian Lang return true; 604a453d131SAdrian Lang} 605a453d131SAdrian Lang 606a453d131SAdrian Lang/** 607a453d131SAdrian Lang * Check the actions and get data for buttons and links 608ed630903Sandi * 609a453d131SAdrian Lang * Available actions are 610a453d131SAdrian Lang * 611a453d131SAdrian Lang * edit - edit/create/show/draft 612ed630903Sandi * history - old revisions 613ed630903Sandi * recent - recent changes 614a453d131SAdrian Lang * login - login/logout - if ACL enabled 615a453d131SAdrian Lang * profile - user profile (if logged in) 616ed630903Sandi * index - The index 617ed630903Sandi * admin - admin page - if enough rights 618a453d131SAdrian Lang * top - back to top 619a453d131SAdrian Lang * back - back to parent - if available 620bbd37938SAndreas Gohr * backlink - links to the list of backlinks 621a453d131SAdrian Lang * subscribe/subscription- subscribe/unsubscribe 622ed630903Sandi * 623ed630903Sandi * @author Andreas Gohr <andi@splitbrain.org> 624a3ec5f4aSmatthiasgrimm * @author Matthias Grimm <matthiasgrimm@users.sourceforge.net> 625a453d131SAdrian Lang * @author Adrian Lang <mail@adrianlang.de> 626e0c26282SGerrit Uitslag * 627ac7a515fSAndreas Gohr * @param string $type 628ac7a515fSAndreas Gohr * @return array|bool|string 629ed630903Sandi */ 630a453d131SAdrian Langfunction tpl_get_action($type) { 631ed630903Sandi global $ID; 632ed630903Sandi global $INFO; 633ed630903Sandi global $REV; 634ed630903Sandi global $ACT; 635b1af9014SChristopher Smith global $conf; 636585bf44eSChristopher Smith /** @var Input $INPUT */ 637585bf44eSChristopher Smith global $INPUT; 638ed630903Sandi 63975e487e9SAndreas Gohr // check disabled actions and fix the badly named ones 640a453d131SAdrian Lang if($type == 'history') $type = 'revisions'; 6414c4b65c8SMichael Hamann if ($type == 'subscription') $type = 'subscribe'; 642a453d131SAdrian Lang if(!actionOK($type)) return false; 643409d7af7SAndreas Gohr 644a453d131SAdrian Lang $accesskey = null; 6456709e843SAdrian Lang $id = $ID; 646a453d131SAdrian Lang $method = 'get'; 647a453d131SAdrian Lang $params = array('do' => $type); 648b1af9014SChristopher Smith $nofollow = true; 649becfa414SGerrit Uitslag $replacement = ''; 6507b4365a7SGerrit Uitslag 6517b4365a7SGerrit Uitslag $unknown = false; 652ed630903Sandi switch($type) { 653ed630903Sandi case 'edit': 6540b17fdc6SAndreas Gohr // most complicated type - we need to decide on current action 655ed630903Sandi if($ACT == 'show' || $ACT == 'search') { 656a453d131SAdrian Lang $method = 'post'; 657ed630903Sandi if($INFO['writable']) { 658a453d131SAdrian Lang $accesskey = 'e'; 659b8a111f5SMichael Klier if(!empty($INFO['draft'])) { 6606709e843SAdrian Lang $type = 'draft'; 661a453d131SAdrian Lang $params['do'] = 'draft'; 662b8a111f5SMichael Klier } else { 663a453d131SAdrian Lang $params['rev'] = $REV; 664a453d131SAdrian Lang if(!$INFO['exists']) { 6656709e843SAdrian Lang $type = 'create'; 666ed630903Sandi } 667b8a111f5SMichael Klier } 668ed630903Sandi } else { 669a453d131SAdrian Lang if(!actionOK('source')) return false; //pseudo action 670a453d131SAdrian Lang $params['rev'] = $REV; 6716709e843SAdrian Lang $type = 'source'; 672a453d131SAdrian Lang $accesskey = 'v'; 673ed630903Sandi } 674ed630903Sandi } else { 675d30d4913SChristopher Smith $params = array('do' => ''); 6766709e843SAdrian Lang $type = 'show'; 677a453d131SAdrian Lang $accesskey = 'v'; 678ed630903Sandi } 6791af98a77SAnika Henke break; 680a453d131SAdrian Lang case 'revisions': 6816709e843SAdrian Lang $type = 'revs'; 682a453d131SAdrian Lang $accesskey = 'o'; 6831af98a77SAnika Henke break; 684ed630903Sandi case 'recent': 685a453d131SAdrian Lang $accesskey = 'r'; 6861af98a77SAnika Henke break; 687ed630903Sandi case 'index': 688a453d131SAdrian Lang $accesskey = 'x'; 689b1af9014SChristopher Smith // allow searchbots to get to the sitemap from the homepage (when dokuwiki isn't providing a sitemap.xml) 690b1af9014SChristopher Smith if ($conf['start'] == $ID && !$conf['sitemap']) { 691b1af9014SChristopher Smith $nofollow = false; 692b1af9014SChristopher Smith } 6931af98a77SAnika Henke break; 694ed630903Sandi case 'top': 695076f0d72SAnika Henke $accesskey = 't'; 696d30d4913SChristopher Smith $params = array('do' => ''); 697a453d131SAdrian Lang $id = '#dokuwiki__top'; 6981af98a77SAnika Henke break; 699a3ec5f4aSmatthiasgrimm case 'back': 700a453d131SAdrian Lang $parent = tpl_getparent($ID); 701a453d131SAdrian Lang if(!$parent) { 702a453d131SAdrian Lang return false; 703a3ec5f4aSmatthiasgrimm } 704a453d131SAdrian Lang $id = $parent; 705d30d4913SChristopher Smith $params = array('do' => ''); 706a453d131SAdrian Lang $accesskey = 'b'; 7071af98a77SAnika Henke break; 708becfa414SGerrit Uitslag case 'img_backto': 709becfa414SGerrit Uitslag $params = array(); 710becfa414SGerrit Uitslag $accesskey = 'b'; 711becfa414SGerrit Uitslag $replacement = $ID; 712becfa414SGerrit Uitslag break; 713ed630903Sandi case 'login': 714a453d131SAdrian Lang $params['sectok'] = getSecurityToken(); 715585bf44eSChristopher Smith if($INPUT->server->has('REMOTE_USER')) { 7163a48618aSAnika Henke if(!actionOK('logout')) { 7172380e8a8SAdrian Lang return false; 7182380e8a8SAdrian Lang } 719a453d131SAdrian Lang $params['do'] = 'logout'; 720a453d131SAdrian Lang $type = 'logout'; 721bf413a4eSAnika Henke } 722bf413a4eSAnika Henke break; 723bf413a4eSAnika Henke case 'register': 724585bf44eSChristopher Smith if($INPUT->server->str('REMOTE_USER')) { 725bf413a4eSAnika Henke return false; 726bf413a4eSAnika Henke } 727bf413a4eSAnika Henke break; 728bf413a4eSAnika Henke case 'resendpwd': 729585bf44eSChristopher Smith if($INPUT->server->str('REMOTE_USER')) { 730bf413a4eSAnika Henke return false; 731ed630903Sandi } 7321af98a77SAnika Henke break; 733ed630903Sandi case 'admin': 734a453d131SAdrian Lang if(!$INFO['ismanager']) { 735a453d131SAdrian Lang return false; 736c059e1a6SAndreas Gohr } 7371af98a77SAnika Henke break; 7381246e016SAndreas Gohr case 'revert': 739a453d131SAdrian Lang if(!$INFO['ismanager'] || !$REV || !$INFO['writable']) { 740a453d131SAdrian Lang return false; 7411246e016SAndreas Gohr } 742a453d131SAdrian Lang $params['rev'] = $REV; 743a453d131SAdrian Lang $params['sectok'] = getSecurityToken(); 7441246e016SAndreas Gohr break; 7456709e843SAdrian Lang case 'subscribe': 746585bf44eSChristopher Smith if(!$INPUT->server->str('REMOTE_USER')) { 747a453d131SAdrian Lang return false; 748b158d625SSteven Danz } 7491af98a77SAnika Henke break; 750f00151b4Schris case 'backlink': 7511af98a77SAnika Henke break; 7528b06d178Schris case 'profile': 753585bf44eSChristopher Smith if(!$INPUT->server->has('REMOTE_USER')) { 754a453d131SAdrian Lang return false; 7558b06d178Schris } 7561af98a77SAnika Henke break; 757b9eb2e61SKate Arzamastseva case 'media': 758d08527abSAnika Henke $params['ns'] = getNS($ID); 759b9eb2e61SKate Arzamastseva break; 760becfa414SGerrit Uitslag case 'mediaManager': 761becfa414SGerrit Uitslag // View image in media manager 762becfa414SGerrit Uitslag global $IMG; 763becfa414SGerrit Uitslag $imgNS = getNS($IMG); 764becfa414SGerrit Uitslag $authNS = auth_quickaclcheck("$imgNS:*"); 765becfa414SGerrit Uitslag if ($authNS < AUTH_UPLOAD) { 766becfa414SGerrit Uitslag return false; 767becfa414SGerrit Uitslag } 768becfa414SGerrit Uitslag $params = array( 769becfa414SGerrit Uitslag 'ns' => $imgNS, 770becfa414SGerrit Uitslag 'image' => $IMG, 771becfa414SGerrit Uitslag 'do' => 'media' 772becfa414SGerrit Uitslag ); 773becfa414SGerrit Uitslag //$type = 'media'; 774becfa414SGerrit Uitslag break; 775ed630903Sandi default: 7767b4365a7SGerrit Uitslag //unknown type 7777b4365a7SGerrit Uitslag $unknown = true; 778ed630903Sandi } 7797b4365a7SGerrit Uitslag 7807b4365a7SGerrit Uitslag $data = compact('accesskey', 'type', 'id', 'method', 'params', 'nofollow', 'replacement'); 7817b4365a7SGerrit Uitslag 7823131073dSGerrit Uitslag $evt = new Doku_Event('TPL_ACTION_GET', $data); 7837b4365a7SGerrit Uitslag if($evt->advise_before()) { 7847b4365a7SGerrit Uitslag //handle unknown types 7857b4365a7SGerrit Uitslag if($unknown) { 78638d2ca46SGerrit Uitslag $data = '[unknown %s type]'; 7877b4365a7SGerrit Uitslag } 7887b4365a7SGerrit Uitslag } 7897b4365a7SGerrit Uitslag $evt->advise_after(); 7907b4365a7SGerrit Uitslag unset($evt); 7917b4365a7SGerrit Uitslag 7927b4365a7SGerrit Uitslag return $data; 793ed630903Sandi} 794ed630903Sandi 795ed630903Sandi/** 79601f17825SAnika Henke * Wrapper around tpl_button() and tpl_actionlink() 79701f17825SAnika Henke * 79801f17825SAnika Henke * @author Anika Henke <anika@selfthinker.org> 79942ea7f44SGerrit Uitslag * 80042ea7f44SGerrit Uitslag * @param string $type action command 801ac7a515fSAndreas Gohr * @param bool $link link or form button? 802e0c26282SGerrit Uitslag * @param string|bool $wrapper HTML element wrapper 803ac7a515fSAndreas Gohr * @param bool $return return or print 804ac7a515fSAndreas Gohr * @param string $pre prefix for links 805ac7a515fSAndreas Gohr * @param string $suf suffix for links 806ac7a515fSAndreas Gohr * @param string $inner inner HTML for links 807ac7a515fSAndreas Gohr * @return bool|string 80801f17825SAnika Henke */ 809ac7a515fSAndreas Gohrfunction tpl_action($type, $link = false, $wrapper = false, $return = false, $pre = '', $suf = '', $inner = '') { 81001f17825SAnika Henke $out = ''; 811ac7a515fSAndreas Gohr if($link) { 812e0c26282SGerrit Uitslag $out .= tpl_actionlink($type, $pre, $suf, $inner, true); 813ac7a515fSAndreas Gohr } else { 814e0c26282SGerrit Uitslag $out .= tpl_button($type, true); 815ac7a515fSAndreas Gohr } 81601f17825SAnika Henke if($out && $wrapper) $out = "<$wrapper>$out</$wrapper>"; 81701f17825SAnika Henke 81801f17825SAnika Henke if($return) return $out; 81901f17825SAnika Henke print $out; 82001f17825SAnika Henke return $out ? true : false; 82101f17825SAnika Henke} 82201f17825SAnika Henke 82301f17825SAnika Henke/** 8246b13307fSandi * Print the search form 8256b13307fSandi * 82672645b75SAndreas Gohr * If the first parameter is given a div with the ID 'qsearch_out' will 82772645b75SAndreas Gohr * be added which instructs the ajax pagequicksearch to kick in and place 82872645b75SAndreas Gohr * its output into this div. The second parameter controls the propritary 82972645b75SAndreas Gohr * attribute autocomplete. If set to false this attribute will be set with an 83072645b75SAndreas Gohr * value of "off" to instruct the browser to disable it's own built in 83172645b75SAndreas Gohr * autocompletion feature (MSIE and Firefox) 83272645b75SAndreas Gohr * 8336b13307fSandi * @author Andreas Gohr <andi@splitbrain.org> 83442ea7f44SGerrit Uitslag * 835ac7a515fSAndreas Gohr * @param bool $ajax 836ac7a515fSAndreas Gohr * @param bool $autocomplete 837ac7a515fSAndreas Gohr * @return bool 8386b13307fSandi */ 83972645b75SAndreas Gohrfunction tpl_searchform($ajax = true, $autocomplete = true) { 8406b13307fSandi global $lang; 841c1e3b7d9Smatthiasgrimm global $ACT; 842ad4aaef7SAndreas Gohr global $QUERY; 843c1e3b7d9Smatthiasgrimm 844670ff54eSchris // don't print the search form if search action has been disabled 84564276bbcSarbrk1 if(!actionOK('search')) return false; 846670ff54eSchris 8479805efa0SAnika Henke print '<form action="'.wl().'" accept-charset="utf-8" class="search" id="dw__search" method="get" role="search"><div class="no">'; 8486b13307fSandi print '<input type="hidden" name="do" value="search" />'; 849c1e3b7d9Smatthiasgrimm print '<input type="text" '; 850ad4aaef7SAndreas Gohr if($ACT == 'search') print 'value="'.htmlspecialchars($QUERY).'" '; 851001ea14eSRainbow Spike print 'placeholder="'.$lang['btn_search'].'" '; 85272645b75SAndreas Gohr if(!$autocomplete) print 'autocomplete="off" '; 85307493d05SAnika Henke print 'id="qsearch__in" accesskey="f" name="id" class="edit" title="[F]" />'; 854ae614416SAnika Henke print '<button type="submit" title="'.$lang['btn_search'].'">'.$lang['btn_search'].'</button>'; 85524a33b42SAndreas Gohr if($ajax) print '<div id="qsearch__out" class="ajax_qsearch JSpopup"></div>'; 8564beabca9SAnika Henke print '</div></form>'; 85754e95700STom N Harris return true; 8586b13307fSandi} 8596b13307fSandi 8606b13307fSandi/** 8616b13307fSandi * Print the breadcrumbs trace 8626b13307fSandi * 8636b13307fSandi * @author Andreas Gohr <andi@splitbrain.org> 86442ea7f44SGerrit Uitslag * 865ac7a515fSAndreas Gohr * @param string $sep Separator between entries 866ac7a515fSAndreas Gohr * @return bool 8676b13307fSandi */ 868e260f93bSAnika Henkefunction tpl_breadcrumbs($sep = '•') { 8696b13307fSandi global $lang; 8706b13307fSandi global $conf; 8716b13307fSandi 8726b13307fSandi //check if enabled 873359fab8bSMichael Hamann if(!$conf['breadcrumbs']) return false; 8746b13307fSandi 8756b13307fSandi $crumbs = breadcrumbs(); //setup crumb trace 876265e3787Sandi 8772979a10bSKatriel Traum $crumbs_sep = ' <span class="bcsep">'.$sep.'</span> '; 878265e3787Sandi 87940eb54bbSjan //render crumbs, highlight the last one 880fde860beSGerrit Uitslag print '<span class="bchead">'.$lang['breadcrumb'].'</span>'; 88140eb54bbSjan $last = count($crumbs); 88240eb54bbSjan $i = 0; 883a77f5846Sjan foreach($crumbs as $id => $name) { 88440eb54bbSjan $i++; 8852979a10bSKatriel Traum echo $crumbs_sep; 88692795d04Sandi if($i == $last) print '<span class="curid">'; 887d317fb5dSAnika Henke print '<bdi>'; 888e26fd1eeSAndreas Gohr tpl_link(wl($id), hsc($name), 'class="breadcrumbs" title="'.$id.'"'); 889d317fb5dSAnika Henke print '</bdi>'; 89092795d04Sandi if($i == $last) print '</span>'; 8916b13307fSandi } 89254e95700STom N Harris return true; 8936b13307fSandi} 8946b13307fSandi 8956b13307fSandi/** 8961734437eSandi * Hierarchical breadcrumbs 8971734437eSandi * 89831e187f8SSean Coates * This code was suggested as replacement for the usual breadcrumbs. 8991734437eSandi * It only makes sense with a deep site structure. 9001734437eSandi * 9011734437eSandi * @author Andreas Gohr <andi@splitbrain.org> 9026bd812dfSNigel McNie * @author Nigel McNie <oracle.shinoda@gmail.com> 90331e187f8SSean Coates * @author Sean Coates <sean@caedmon.net> 904f46c9e83SAnika Henke * @author <fredrik@averpil.com> 90508d7a575SAndreas Gohr * @todo May behave strangely in RTL languages 90642ea7f44SGerrit Uitslag * 907ac7a515fSAndreas Gohr * @param string $sep Separator between entries 908ac7a515fSAndreas Gohr * @return bool 9091734437eSandi */ 91008d7a575SAndreas Gohrfunction tpl_youarehere($sep = ' » ') { 9111734437eSandi global $conf; 9121734437eSandi global $ID; 9131734437eSandi global $lang; 9141734437eSandi 91531e187f8SSean Coates // check if enabled 91654e95700STom N Harris if(!$conf['youarehere']) return false; 9171734437eSandi 9181734437eSandi $parts = explode(':', $ID); 919796bafb3SAndreas Gohr $count = count($parts); 9201734437eSandi 92108d7a575SAndreas Gohr echo '<span class="bchead">'.$lang['youarehere'].' </span>'; 9223940c519SMark 92308d7a575SAndreas Gohr // always print the startpage 92408d7a575SAndreas Gohr echo '<span class="home">'; 92508d7a575SAndreas Gohr tpl_pagelink(':'.$conf['start']); 92608d7a575SAndreas Gohr echo '</span>'; 927796bafb3SAndreas Gohr 928796bafb3SAndreas Gohr // print intermediate namespace links 929796bafb3SAndreas Gohr $part = ''; 930796bafb3SAndreas Gohr for($i = 0; $i < $count - 1; $i++) { 931796bafb3SAndreas Gohr $part .= $parts[$i].':'; 932796bafb3SAndreas Gohr $page = $part; 933796bafb3SAndreas Gohr if($page == $conf['start']) continue; // Skip startpage 934796bafb3SAndreas Gohr 93508d7a575SAndreas Gohr // output 93608d7a575SAndreas Gohr echo $sep; 93708d7a575SAndreas Gohr tpl_pagelink($page); 93831e187f8SSean Coates } 9391734437eSandi 940796bafb3SAndreas Gohr // print current page, skipping start page, skipping for namespace index 941e013f48dSAnika Henke resolve_pageid('', $page, $exists); 94208d7a575SAndreas Gohr if(isset($page) && $page == $part.$parts[$i]) return true; 943796bafb3SAndreas Gohr $page = $part.$parts[$i]; 94408d7a575SAndreas Gohr if($page == $conf['start']) return true; 94508d7a575SAndreas Gohr echo $sep; 94608d7a575SAndreas Gohr tpl_pagelink($page); 94754e95700STom N Harris return true; 9481734437eSandi} 9491734437eSandi 9501734437eSandi/** 9516b13307fSandi * Print info if the user is logged in 952a2488c3cSMatthias Grimm * and show full name in that case 9536b13307fSandi * 9546b13307fSandi * Could be enhanced with a profile link in future? 9556b13307fSandi * 9566b13307fSandi * @author Andreas Gohr <andi@splitbrain.org> 95742ea7f44SGerrit Uitslag * 958ac7a515fSAndreas Gohr * @return bool 9596b13307fSandi */ 9606b13307fSandifunction tpl_userinfo() { 9616b13307fSandi global $lang; 962585bf44eSChristopher Smith /** @var Input $INPUT */ 963585bf44eSChristopher Smith global $INPUT; 964585bf44eSChristopher Smith 965585bf44eSChristopher Smith if($INPUT->server->str('REMOTE_USER')) { 966fde860beSGerrit Uitslag print $lang['loggedinas'].' '.userlink(); 96754e95700STom N Harris return true; 96854e95700STom N Harris } 96954e95700STom N Harris return false; 9706b13307fSandi} 9716b13307fSandi 9726b13307fSandi/** 9736b13307fSandi * Print some info about the current page 9746b13307fSandi * 9756b13307fSandi * @author Andreas Gohr <andi@splitbrain.org> 97642ea7f44SGerrit Uitslag * 977ac7a515fSAndreas Gohr * @param bool $ret return content instead of printing it 978ac7a515fSAndreas Gohr * @return bool|string 9796b13307fSandi */ 9804b0d3916SAndreas Gohrfunction tpl_pageinfo($ret = false) { 9816b13307fSandi global $conf; 9826b13307fSandi global $lang; 9836b13307fSandi global $INFO; 984c6e92a3cSDavid Lorentsen global $ID; 985c6e92a3cSDavid Lorentsen 986c6e92a3cSDavid Lorentsen // return if we are not allowed to view the page 987ac7a515fSAndreas Gohr if(!auth_quickaclcheck($ID)) { 988ac7a515fSAndreas Gohr return false; 989ac7a515fSAndreas Gohr } 9906b13307fSandi 9916b13307fSandi // prepare date and path 9926b13307fSandi $fn = $INFO['filepath']; 9936b13307fSandi if(!$conf['fullpath']) { 994613bca54SAndreas Gohr if($INFO['rev']) { 99550fbebceSGina Haeussge $fn = str_replace(fullpath($conf['olddir']).'/', '', $fn); 9966b13307fSandi } else { 99750fbebceSGina Haeussge $fn = str_replace(fullpath($conf['datadir']).'/', '', $fn); 9986b13307fSandi } 9996b13307fSandi } 1000bee6dc82Sandi $fn = utf8_decodeFN($fn); 1001f2263577SAndreas Gohr $date = dformat($INFO['lastmod']); 10026b13307fSandi 1003faecdfdfSAndreas Gohr // print it 1004faecdfdfSAndreas Gohr if($INFO['exists']) { 10054b0d3916SAndreas Gohr $out = ''; 1006d317fb5dSAnika Henke $out .= '<bdi>'.$fn.'</bdi>'; 1007e260f93bSAnika Henke $out .= ' · '; 10084b0d3916SAndreas Gohr $out .= $lang['lastmod']; 1009fde860beSGerrit Uitslag $out .= ' '; 10104b0d3916SAndreas Gohr $out .= $date; 10116b13307fSandi if($INFO['editor']) { 10124b0d3916SAndreas Gohr $out .= ' '.$lang['by'].' '; 1013d317fb5dSAnika Henke $out .= '<bdi>'.editorinfo($INFO['editor']).'</bdi>'; 10145aa52fafSBen Coburn } else { 10154b0d3916SAndreas Gohr $out .= ' ('.$lang['external_edit'].')'; 10166b13307fSandi } 10176b13307fSandi if($INFO['locked']) { 1018e260f93bSAnika Henke $out .= ' · '; 10194b0d3916SAndreas Gohr $out .= $lang['lockedby']; 1020fde860beSGerrit Uitslag $out .= ' '; 1021d317fb5dSAnika Henke $out .= '<bdi>'.editorinfo($INFO['locked']).'</bdi>'; 10226b13307fSandi } 10234b0d3916SAndreas Gohr if($ret) { 10244b0d3916SAndreas Gohr return $out; 10254b0d3916SAndreas Gohr } else { 10264b0d3916SAndreas Gohr echo $out; 102754e95700STom N Harris return true; 10286b13307fSandi } 10294b0d3916SAndreas Gohr } 103054e95700STom N Harris return false; 10316b13307fSandi} 10326b13307fSandi 1033820fa24bSandi/** 1034a6598f23SBen Coburn * Prints or returns the name of the given page (current one if none given). 103587c434ceSAndreas Gohr * 103687c434ceSAndreas Gohr * If useheading is enabled this will use the first headline else 1037a6598f23SBen Coburn * the given ID is used. 103887c434ceSAndreas Gohr * 103987c434ceSAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 104042ea7f44SGerrit Uitslag * 1041ac7a515fSAndreas Gohr * @param string $id page id 1042ac7a515fSAndreas Gohr * @param bool $ret return content instead of printing 1043ac7a515fSAndreas Gohr * @return bool|string 104487c434ceSAndreas Gohr */ 1045a6598f23SBen Coburnfunction tpl_pagetitle($id = null, $ret = false) { 1046c248bda1SChristopher Smith global $ACT, $INPUT, $conf, $lang; 1047fffeeafeSChristopher Smith 104887c434ceSAndreas Gohr if(is_null($id)) { 104987c434ceSAndreas Gohr global $ID; 105087c434ceSAndreas Gohr $id = $ID; 105187c434ceSAndreas Gohr } 105287c434ceSAndreas Gohr 105387c434ceSAndreas Gohr $name = $id; 1054fe9ec250SChris Smith if(useHeading('navigation')) { 1055fffeeafeSChristopher Smith $first_heading = p_get_first_heading($id); 1056fffeeafeSChristopher Smith if($first_heading) $name = $first_heading; 1057fffeeafeSChristopher Smith } 1058fffeeafeSChristopher Smith 1059fffeeafeSChristopher Smith // default page title is the page name, modify with the current action 1060fffeeafeSChristopher Smith switch ($ACT) { 1061fffeeafeSChristopher Smith // admin functions 1062fffeeafeSChristopher Smith case 'admin' : 1063fffeeafeSChristopher Smith $page_title = $lang['btn_admin']; 1064fffeeafeSChristopher Smith // try to get the plugin name 1065a61966c5SChristopher Smith /** @var $plugin DokuWiki_Admin_Plugin */ 1066a61966c5SChristopher Smith if ($plugin = plugin_getRequestAdminPlugin()){ 1067c248bda1SChristopher Smith $plugin_title = $plugin->getMenuText($conf['lang']); 1068a61966c5SChristopher Smith $page_title = $plugin_title ? $plugin_title : $plugin->getPluginName(); 1069fffeeafeSChristopher Smith } 1070fffeeafeSChristopher Smith break; 1071fffeeafeSChristopher Smith 1072fffeeafeSChristopher Smith // user functions 1073fffeeafeSChristopher Smith case 'login' : 1074fffeeafeSChristopher Smith case 'profile' : 1075fffeeafeSChristopher Smith case 'register' : 1076fffeeafeSChristopher Smith case 'resendpwd' : 1077fffeeafeSChristopher Smith $page_title = $lang['btn_'.$ACT]; 1078fffeeafeSChristopher Smith break; 1079fffeeafeSChristopher Smith 1080fffeeafeSChristopher Smith // wiki functions 1081fffeeafeSChristopher Smith case 'search' : 1082fffeeafeSChristopher Smith case 'index' : 1083fffeeafeSChristopher Smith $page_title = $lang['btn_'.$ACT]; 1084fffeeafeSChristopher Smith break; 1085fffeeafeSChristopher Smith 1086fffeeafeSChristopher Smith // page functions 1087fffeeafeSChristopher Smith case 'edit' : 1088fffeeafeSChristopher Smith $page_title = "✎ ".$name; 1089fffeeafeSChristopher Smith break; 1090fffeeafeSChristopher Smith 1091fffeeafeSChristopher Smith case 'revisions' : 1092fffeeafeSChristopher Smith $page_title = $name . ' - ' . $lang['btn_revs']; 1093fffeeafeSChristopher Smith break; 1094fffeeafeSChristopher Smith 1095fffeeafeSChristopher Smith case 'backlink' : 1096fffeeafeSChristopher Smith case 'recent' : 1097fffeeafeSChristopher Smith case 'subscribe' : 1098fffeeafeSChristopher Smith $page_title = $name . ' - ' . $lang['btn_'.$ACT]; 1099fffeeafeSChristopher Smith break; 1100fffeeafeSChristopher Smith 1101fffeeafeSChristopher Smith default : // SHOW and anything else not included 1102fffeeafeSChristopher Smith $page_title = $name; 110387c434ceSAndreas Gohr } 1104a6598f23SBen Coburn 1105a6598f23SBen Coburn if($ret) { 1106fffeeafeSChristopher Smith return hsc($page_title); 1107a6598f23SBen Coburn } else { 1108fffeeafeSChristopher Smith print hsc($page_title); 110954e95700STom N Harris return true; 111087c434ceSAndreas Gohr } 1111a6598f23SBen Coburn} 1112340756e4Sandi 111355efc227SAndreas Gohr/** 111455efc227SAndreas Gohr * Returns the requested EXIF/IPTC tag from the current image 111555efc227SAndreas Gohr * 111655efc227SAndreas Gohr * If $tags is an array all given tags are tried until a 111755efc227SAndreas Gohr * value is found. If no value is found $alt is returned. 111855efc227SAndreas Gohr * 111955efc227SAndreas Gohr * Which texts are known is defined in the functions _exifTagNames 112055efc227SAndreas Gohr * and _iptcTagNames() in inc/jpeg.php (You need to prepend IPTC 112155efc227SAndreas Gohr * to the names of the latter one) 112255efc227SAndreas Gohr * 11233df72098SAndreas Gohr * Only allowed in: detail.php 112455efc227SAndreas Gohr * 112555efc227SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 112642ea7f44SGerrit Uitslag * 112721d806cdSGerrit Uitslag * @param array|string $tags tag or array of tags to try 1128ac7a515fSAndreas Gohr * @param string $alt alternative output if no data was found 1129e0c26282SGerrit Uitslag * @param null|string $src the image src, uses global $SRC if not given 1130ac7a515fSAndreas Gohr * @return string 113155efc227SAndreas Gohr */ 11323df72098SAndreas Gohrfunction tpl_img_getTag($tags, $alt = '', $src = null) { 113355efc227SAndreas Gohr // Init Exif Reader 113455efc227SAndreas Gohr global $SRC; 11353df72098SAndreas Gohr 11363df72098SAndreas Gohr if(is_null($src)) $src = $SRC; 11373df72098SAndreas Gohr 113855efc227SAndreas Gohr static $meta = null; 11393df72098SAndreas Gohr if(is_null($meta)) $meta = new JpegMeta($src); 114055efc227SAndreas Gohr if($meta === false) return $alt; 114188945224SChristopher Smith $info = cleanText($meta->getField($tags)); 114255efc227SAndreas Gohr if($info == false) return $alt; 114355efc227SAndreas Gohr return $info; 114455efc227SAndreas Gohr} 114555efc227SAndreas Gohr 114655efc227SAndreas Gohr/** 1147becfa414SGerrit Uitslag * Returns a description list of the metatags of the current image 1148becfa414SGerrit Uitslag * 1149becfa414SGerrit Uitslag * @return string html of description list 1150becfa414SGerrit Uitslag */ 1151becfa414SGerrit Uitslagfunction tpl_img_meta() { 1152becfa414SGerrit Uitslag global $lang; 1153becfa414SGerrit Uitslag 1154becfa414SGerrit Uitslag $tags = tpl_get_img_meta(); 1155becfa414SGerrit Uitslag 1156becfa414SGerrit Uitslag echo '<dl>'; 1157becfa414SGerrit Uitslag foreach($tags as $tag) { 1158becfa414SGerrit Uitslag $label = $lang[$tag['langkey']]; 1159fde860beSGerrit Uitslag if(!$label) $label = $tag['langkey'] . ':'; 1160becfa414SGerrit Uitslag 1161fde860beSGerrit Uitslag echo '<dt>'.$label.'</dt><dd>'; 1162becfa414SGerrit Uitslag if ($tag['type'] == 'date') { 1163becfa414SGerrit Uitslag echo dformat($tag['value']); 1164becfa414SGerrit Uitslag } else { 1165becfa414SGerrit Uitslag echo hsc($tag['value']); 1166becfa414SGerrit Uitslag } 1167becfa414SGerrit Uitslag echo '</dd>'; 1168becfa414SGerrit Uitslag } 1169becfa414SGerrit Uitslag echo '</dl>'; 1170becfa414SGerrit Uitslag} 1171becfa414SGerrit Uitslag 1172becfa414SGerrit Uitslag/** 1173becfa414SGerrit Uitslag * Returns metadata as configured in mediameta config file, ready for creating html 1174becfa414SGerrit Uitslag * 1175becfa414SGerrit Uitslag * @return array with arrays containing the entries: 1176becfa414SGerrit Uitslag * - string langkey key to lookup in the $lang var, if not found printed as is 1177becfa414SGerrit Uitslag * - string type type of value 1178becfa414SGerrit Uitslag * - string value tag value (unescaped) 1179becfa414SGerrit Uitslag */ 1180becfa414SGerrit Uitslagfunction tpl_get_img_meta() { 1181becfa414SGerrit Uitslag 1182becfa414SGerrit Uitslag $config_files = getConfigFiles('mediameta'); 1183becfa414SGerrit Uitslag foreach ($config_files as $config_file) { 118479e79377SAndreas Gohr if(file_exists($config_file)) { 1185becfa414SGerrit Uitslag include($config_file); 1186becfa414SGerrit Uitslag } 1187becfa414SGerrit Uitslag } 1188becfa414SGerrit Uitslag /** @var array $fields the included array with metadata */ 1189becfa414SGerrit Uitslag 1190becfa414SGerrit Uitslag $tags = array(); 1191becfa414SGerrit Uitslag foreach($fields as $tag){ 1192becfa414SGerrit Uitslag $t = array(); 1193becfa414SGerrit Uitslag if (!empty($tag[0])) { 1194becfa414SGerrit Uitslag $t = array($tag[0]); 1195becfa414SGerrit Uitslag } 1196becfa414SGerrit Uitslag if(is_array($tag[3])) { 1197becfa414SGerrit Uitslag $t = array_merge($t,$tag[3]); 1198becfa414SGerrit Uitslag } 1199becfa414SGerrit Uitslag $value = tpl_img_getTag($t); 1200becfa414SGerrit Uitslag if ($value) { 1201becfa414SGerrit Uitslag $tags[] = array('langkey' => $tag[1], 'type' => $tag[2], 'value' => $value); 1202becfa414SGerrit Uitslag } 1203becfa414SGerrit Uitslag } 1204becfa414SGerrit Uitslag return $tags; 1205becfa414SGerrit Uitslag} 1206becfa414SGerrit Uitslag 1207becfa414SGerrit Uitslag/** 120855efc227SAndreas Gohr * Prints the image with a link to the full sized version 120955efc227SAndreas Gohr * 121055efc227SAndreas Gohr * Only allowed in: detail.php 1211a02d2933SAndreas Gohr * 1212ac7a515fSAndreas Gohr * @triggers TPL_IMG_DISPLAY 1213a02d2933SAndreas Gohr * @param $maxwidth int - maximal width of the image 1214a02d2933SAndreas Gohr * @param $maxheight int - maximal height of the image 1215a02d2933SAndreas Gohr * @param $link bool - link to the orginal size? 1216a02d2933SAndreas Gohr * @param $params array - additional image attributes 121742ea7f44SGerrit Uitslag * @return bool Result of TPL_IMG_DISPLAY 121855efc227SAndreas Gohr */ 1219a02d2933SAndreas Gohrfunction tpl_img($maxwidth = 0, $maxheight = 0, $link = true, $params = null) { 122055efc227SAndreas Gohr global $IMG; 1221585bf44eSChristopher Smith /** @var Input $INPUT */ 1222ac7a515fSAndreas Gohr global $INPUT; 12235c2eed9aSlisps global $REV; 122455efc227SAndreas Gohr $w = tpl_img_getTag('File.Width'); 122555efc227SAndreas Gohr $h = tpl_img_getTag('File.Height'); 122655efc227SAndreas Gohr 122755efc227SAndreas Gohr //resize to given max values 122823a34783SAndreas Gohr $ratio = 1; 122923a34783SAndreas Gohr if($w >= $h) { 1230f8925855Sjoe.lapp if($maxwidth && $w >= $maxwidth) { 123155efc227SAndreas Gohr $ratio = $maxwidth / $w; 1232f8925855Sjoe.lapp } elseif($maxheight && $h > $maxheight) { 123355efc227SAndreas Gohr $ratio = $maxheight / $h; 123455efc227SAndreas Gohr } 123555efc227SAndreas Gohr } else { 1236f8925855Sjoe.lapp if($maxheight && $h >= $maxheight) { 123755efc227SAndreas Gohr $ratio = $maxheight / $h; 1238f8925855Sjoe.lapp } elseif($maxwidth && $w > $maxwidth) { 123955efc227SAndreas Gohr $ratio = $maxwidth / $w; 124055efc227SAndreas Gohr } 124155efc227SAndreas Gohr } 124255efc227SAndreas Gohr if($ratio) { 124355efc227SAndreas Gohr $w = floor($ratio * $w); 124455efc227SAndreas Gohr $h = floor($ratio * $h); 124555efc227SAndreas Gohr } 124655efc227SAndreas Gohr 12476de3759aSAndreas Gohr //prepare URLs 12485c2eed9aSlisps $url = ml($IMG, array('cache'=> $INPUT->str('cache'),'rev'=>$REV), true, '&'); 12495c2eed9aSlisps $src = ml($IMG, array('cache'=> $INPUT->str('cache'),'rev'=>$REV, 'w'=> $w, 'h'=> $h), true, '&'); 125055efc227SAndreas Gohr 12512684e50aSAndreas Gohr //prepare attributes 125255efc227SAndreas Gohr $alt = tpl_img_getTag('Simple.Title'); 1253a02d2933SAndreas Gohr if(is_null($params)) { 12542684e50aSAndreas Gohr $p = array(); 1255a02d2933SAndreas Gohr } else { 1256a02d2933SAndreas Gohr $p = $params; 1257a02d2933SAndreas Gohr } 12582684e50aSAndreas Gohr if($w) $p['width'] = $w; 12592684e50aSAndreas Gohr if($h) $p['height'] = $h; 12602684e50aSAndreas Gohr $p['class'] = 'img_detail'; 12612684e50aSAndreas Gohr if($alt) { 12622684e50aSAndreas Gohr $p['alt'] = $alt; 12632684e50aSAndreas Gohr $p['title'] = $alt; 12642684e50aSAndreas Gohr } else { 12652684e50aSAndreas Gohr $p['alt'] = ''; 12662684e50aSAndreas Gohr } 1267a02d2933SAndreas Gohr $p['src'] = $src; 126855efc227SAndreas Gohr 1269a02d2933SAndreas Gohr $data = array('url'=> ($link ? $url : null), 'params'=> $p); 1270a02d2933SAndreas Gohr return trigger_event('TPL_IMG_DISPLAY', $data, '_tpl_img_action', true); 1271a02d2933SAndreas Gohr} 1272a02d2933SAndreas Gohr 1273a02d2933SAndreas Gohr/** 1274a02d2933SAndreas Gohr * Default action for TPL_IMG_DISPLAY 1275ac7a515fSAndreas Gohr * 1276ac7a515fSAndreas Gohr * @param array $data 1277ac7a515fSAndreas Gohr * @return bool 1278a02d2933SAndreas Gohr */ 1279ac7a515fSAndreas Gohrfunction _tpl_img_action($data) { 128059f3611bSAnika Henke global $lang; 1281a02d2933SAndreas Gohr $p = buildAttributes($data['params']); 1282a02d2933SAndreas Gohr 128359f3611bSAnika Henke if($data['url']) print '<a href="'.hsc($data['url']).'" title="'.$lang['mediaview'].'">'; 1284a02d2933SAndreas Gohr print '<img '.$p.'/>'; 1285a02d2933SAndreas Gohr if($data['url']) print '</a>'; 128654e95700STom N Harris return true; 128755efc227SAndreas Gohr} 128855efc227SAndreas Gohr 12897367b368SAndreas Gohr/** 1290881f2ee2SAndreas Haerter * This function inserts a small gif which in reality is the indexer function. 12917367b368SAndreas Gohr * 12927367b368SAndreas Gohr * Should be called somewhere at the very end of the main.php 12937367b368SAndreas Gohr * template 1294ac7a515fSAndreas Gohr * 1295ac7a515fSAndreas Gohr * @return bool 12967367b368SAndreas Gohr */ 12977367b368SAndreas Gohrfunction tpl_indexerWebBug() { 12987367b368SAndreas Gohr global $ID; 12991dad36f5SAndreas Gohr 13007367b368SAndreas Gohr $p = array(); 1301b6c6979fSAndreas Gohr $p['src'] = DOKU_BASE.'lib/exe/indexer.php?id='.rawurlencode($ID). 1302e68c51baSAndreas Gohr '&'.time(); 1303881f2ee2SAndreas Haerter $p['width'] = 2; //no more 1x1 px image because we live in times of ad blockers... 13047367b368SAndreas Gohr $p['height'] = 1; 13057367b368SAndreas Gohr $p['alt'] = ''; 13067367b368SAndreas Gohr $att = buildAttributes($p); 13077367b368SAndreas Gohr print "<img $att />"; 130854e95700STom N Harris return true; 13097367b368SAndreas Gohr} 13107367b368SAndreas Gohr 131178d4e784SEsther Brunner/** 131278d4e784SEsther Brunner * tpl_getConf($id) 131378d4e784SEsther Brunner * 131478d4e784SEsther Brunner * use this function to access template configuration variables 1315ac7a515fSAndreas Gohr * 131617448fb8SChristopher Smith * @param string $id name of the value to access 131717448fb8SChristopher Smith * @param mixed $notset what to return if the setting is not available 131817448fb8SChristopher Smith * @return mixed 131978d4e784SEsther Brunner */ 132017448fb8SChristopher Smithfunction tpl_getConf($id, $notset=false) { 132178d4e784SEsther Brunner global $conf; 132217566ac6SAdrian Lang static $tpl_configloaded = false; 132378d4e784SEsther Brunner 132478d4e784SEsther Brunner $tpl = $conf['template']; 132578d4e784SEsther Brunner 132678d4e784SEsther Brunner if(!$tpl_configloaded) { 132778d4e784SEsther Brunner $tconf = tpl_loadConfig(); 132878d4e784SEsther Brunner if($tconf !== false) { 132978d4e784SEsther Brunner foreach($tconf as $key => $value) { 133078d4e784SEsther Brunner if(isset($conf['tpl'][$tpl][$key])) continue; 133178d4e784SEsther Brunner $conf['tpl'][$tpl][$key] = $value; 133278d4e784SEsther Brunner } 133378d4e784SEsther Brunner $tpl_configloaded = true; 133478d4e784SEsther Brunner } 133578d4e784SEsther Brunner } 133678d4e784SEsther Brunner 133717448fb8SChristopher Smith if(isset($conf['tpl'][$tpl][$id])){ 133878d4e784SEsther Brunner return $conf['tpl'][$tpl][$id]; 133978d4e784SEsther Brunner } 134078d4e784SEsther Brunner 134117448fb8SChristopher Smith return $notset; 134217448fb8SChristopher Smith} 134317448fb8SChristopher Smith 134478d4e784SEsther Brunner/** 134578d4e784SEsther Brunner * tpl_loadConfig() 1346ac7a515fSAndreas Gohr * 134778d4e784SEsther Brunner * reads all template configuration variables 134878d4e784SEsther Brunner * this function is automatically called by tpl_getConf() 1349ac7a515fSAndreas Gohr * 1350ac7a515fSAndreas Gohr * @return array 135178d4e784SEsther Brunner */ 135278d4e784SEsther Brunnerfunction tpl_loadConfig() { 135378d4e784SEsther Brunner 1354c4766956SAndreas Gohr $file = tpl_incdir().'/conf/default.php'; 135578d4e784SEsther Brunner $conf = array(); 135678d4e784SEsther Brunner 135779e79377SAndreas Gohr if(!file_exists($file)) return false; 135878d4e784SEsther Brunner 135978d4e784SEsther Brunner // load default config file 136078d4e784SEsther Brunner include($file); 136178d4e784SEsther Brunner 136278d4e784SEsther Brunner return $conf; 136378d4e784SEsther Brunner} 136478d4e784SEsther Brunner 136517566ac6SAdrian Lang// language methods 136617566ac6SAdrian Lang/** 136717566ac6SAdrian Lang * tpl_getLang($id) 136817566ac6SAdrian Lang * 136917566ac6SAdrian Lang * use this function to access template language variables 137042ea7f44SGerrit Uitslag * 137142ea7f44SGerrit Uitslag * @param string $id key of language string 137242ea7f44SGerrit Uitslag * @return string 137317566ac6SAdrian Lang */ 137417566ac6SAdrian Langfunction tpl_getLang($id) { 137517566ac6SAdrian Lang static $lang = array(); 137617566ac6SAdrian Lang 137717566ac6SAdrian Lang if(count($lang) === 0) { 1378dd7a6159SGerrit Uitslag global $conf, $config_cascade; // definitely don't invoke "global $lang" 1379dd7a6159SGerrit Uitslag 1380c4766956SAndreas Gohr $path = tpl_incdir() . 'lang/'; 138117566ac6SAdrian Lang 138217566ac6SAdrian Lang $lang = array(); 138317566ac6SAdrian Lang 138417566ac6SAdrian Lang // don't include once 138517566ac6SAdrian Lang @include($path . 'en/lang.php'); 1386dd7a6159SGerrit Uitslag foreach($config_cascade['lang']['template'] as $config_file) { 138779e79377SAndreas Gohr if(file_exists($config_file . $conf['template'] . '/en/lang.php')) { 1388dd7a6159SGerrit Uitslag include($config_file . $conf['template'] . '/en/lang.php'); 1389dd7a6159SGerrit Uitslag } 139017566ac6SAdrian Lang } 139117566ac6SAdrian Lang 1392dd7a6159SGerrit Uitslag if($conf['lang'] != 'en') { 1393dd7a6159SGerrit Uitslag @include($path . $conf['lang'] . '/lang.php'); 1394dd7a6159SGerrit Uitslag foreach($config_cascade['lang']['template'] as $config_file) { 139579e79377SAndreas Gohr if(file_exists($config_file . $conf['template'] . '/' . $conf['lang'] . '/lang.php')) { 1396dd7a6159SGerrit Uitslag include($config_file . $conf['template'] . '/' . $conf['lang'] . '/lang.php'); 1397dd7a6159SGerrit Uitslag } 1398dd7a6159SGerrit Uitslag } 1399dd7a6159SGerrit Uitslag } 140017566ac6SAdrian Lang } 140117566ac6SAdrian Lang return $lang[$id]; 140217566ac6SAdrian Lang} 140317566ac6SAdrian Lang 14043df72098SAndreas Gohr/** 1405c5c17fdaSKlap-in * Retrieve a language dependent file and pass to xhtml renderer for display 1406e8ec13b9SKlap-in * template equivalent of p_locale_xhtml() 1407e8ec13b9SKlap-in * 1408e8ec13b9SKlap-in * @param string $id id of language dependent wiki page 1409e8ec13b9SKlap-in * @return string parsed contents of the wiki page in xhtml format 1410e8ec13b9SKlap-in */ 1411e8ec13b9SKlap-infunction tpl_locale_xhtml($id) { 1412c5c17fdaSKlap-in return p_cached_output(tpl_localeFN($id)); 1413e8ec13b9SKlap-in} 1414e8ec13b9SKlap-in 1415e8ec13b9SKlap-in/** 1416c5c17fdaSKlap-in * Prepends appropriate path for a language dependent filename 141742ea7f44SGerrit Uitslag * 141842ea7f44SGerrit Uitslag * @param string $id id of localized text 141942ea7f44SGerrit Uitslag * @return string wiki text 1420e8ec13b9SKlap-in */ 1421c5c17fdaSKlap-infunction tpl_localeFN($id) { 1422e8ec13b9SKlap-in $path = tpl_incdir().'lang/'; 1423e8ec13b9SKlap-in global $conf; 142438fb1fc7SGerrit Uitslag $file = DOKU_CONF.'template_lang/'.$conf['template'].'/'.$conf['lang'].'/'.$id.'.txt'; 142579e79377SAndreas Gohr if (!file_exists($file)){ 1426e8ec13b9SKlap-in $file = $path.$conf['lang'].'/'.$id.'.txt'; 142779e79377SAndreas Gohr if(!file_exists($file)){ 1428e8ec13b9SKlap-in //fall back to english 1429e8ec13b9SKlap-in $file = $path.'en/'.$id.'.txt'; 1430e8ec13b9SKlap-in } 1431e8ec13b9SKlap-in } 1432e8ec13b9SKlap-in return $file; 1433e8ec13b9SKlap-in} 1434e8ec13b9SKlap-in 1435e8ec13b9SKlap-in/** 14363df72098SAndreas Gohr * prints the "main content" in the mediamanger popup 14373df72098SAndreas Gohr * 14383df72098SAndreas Gohr * Depending on the user's actions this may be a list of 14393df72098SAndreas Gohr * files in a namespace, the meta editing dialog or 14403df72098SAndreas Gohr * a message of referencing pages 14413df72098SAndreas Gohr * 14423df72098SAndreas Gohr * Only allowed in mediamanager.php 14433df72098SAndreas Gohr * 1444c182313eSAndreas Gohr * @triggers MEDIAMANAGER_CONTENT_OUTPUT 1445c182313eSAndreas Gohr * @param bool $fromajax - set true when calling this function via ajax 144642ea7f44SGerrit Uitslag * @param string $sort 14478702de7fSGerrit Uitslag * 14483df72098SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 14493df72098SAndreas Gohr */ 145000e3e394SChristopher Smithfunction tpl_mediaContent($fromajax = false, $sort='natural') { 14513df72098SAndreas Gohr global $IMG; 14523df72098SAndreas Gohr global $AUTH; 14533df72098SAndreas Gohr global $INUSE; 14543df72098SAndreas Gohr global $NS; 14553df72098SAndreas Gohr global $JUMPTO; 1456585bf44eSChristopher Smith /** @var Input $INPUT */ 1457ac7a515fSAndreas Gohr global $INPUT; 14583df72098SAndreas Gohr 1459ac7a515fSAndreas Gohr $do = $INPUT->extract('do')->str('do'); 1460c182313eSAndreas Gohr if(in_array($do, array('save', 'cancel'))) $do = ''; 1461c182313eSAndreas Gohr 1462c182313eSAndreas Gohr if(!$do) { 1463ac7a515fSAndreas Gohr if($INPUT->bool('edit')) { 1464c182313eSAndreas Gohr $do = 'metaform'; 1465c182313eSAndreas Gohr } elseif(is_array($INUSE)) { 1466c182313eSAndreas Gohr $do = 'filesinuse'; 1467c182313eSAndreas Gohr } else { 1468c182313eSAndreas Gohr $do = 'filelist'; 1469c182313eSAndreas Gohr } 1470c182313eSAndreas Gohr } 1471c182313eSAndreas Gohr 1472c182313eSAndreas Gohr // output the content pane, wrapped in an event. 1473c182313eSAndreas Gohr if(!$fromajax) ptln('<div id="media__content">'); 1474c182313eSAndreas Gohr $data = array('do' => $do); 1475c182313eSAndreas Gohr $evt = new Doku_Event('MEDIAMANAGER_CONTENT_OUTPUT', $data); 1476c182313eSAndreas Gohr if($evt->advise_before()) { 1477c182313eSAndreas Gohr $do = $data['do']; 147830fd72fbSKate Arzamastseva if($do == 'filesinuse') { 1479c182313eSAndreas Gohr media_filesinuse($INUSE, $IMG); 1480c182313eSAndreas Gohr } elseif($do == 'filelist') { 148100e3e394SChristopher Smith media_filelist($NS, $AUTH, $JUMPTO,false,$sort); 1482c9f56829SAndreas Gohr } elseif($do == 'searchlist') { 1483ac7a515fSAndreas Gohr media_searchlist($INPUT->str('q'), $NS, $AUTH); 1484c182313eSAndreas Gohr } else { 1485c182313eSAndreas Gohr msg('Unknown action '.hsc($do), -1); 1486c182313eSAndreas Gohr } 1487c182313eSAndreas Gohr } 1488c182313eSAndreas Gohr $evt->advise_after(); 1489c182313eSAndreas Gohr unset($evt); 1490c182313eSAndreas Gohr if(!$fromajax) ptln('</div>'); 1491c182313eSAndreas Gohr 14923df72098SAndreas Gohr} 14933df72098SAndreas Gohr 14943df72098SAndreas Gohr/** 1495d9162c6cSKate Arzamastseva * Prints the central column in full-screen media manager 1496d9162c6cSKate Arzamastseva * Depending on the opened tab this may be a list of 1497d9162c6cSKate Arzamastseva * files in a namespace, upload form or search form 1498d9162c6cSKate Arzamastseva * 1499d9162c6cSKate Arzamastseva * @author Kate Arzamastseva <pshns@ukr.net> 1500d9162c6cSKate Arzamastseva */ 1501035e07f1SKate Arzamastsevafunction tpl_mediaFileList() { 1502d9162c6cSKate Arzamastseva global $AUTH; 1503d9162c6cSKate Arzamastseva global $NS; 1504d9162c6cSKate Arzamastseva global $JUMPTO; 150595b451bcSAdrian Lang global $lang; 1506585bf44eSChristopher Smith /** @var Input $INPUT */ 1507ac7a515fSAndreas Gohr global $INPUT; 1508d9162c6cSKate Arzamastseva 1509ac7a515fSAndreas Gohr $opened_tab = $INPUT->str('tab_files'); 1510e5d185e1SKate Arzamastseva if(!$opened_tab || !in_array($opened_tab, array('files', 'upload', 'search'))) $opened_tab = 'files'; 1511ac7a515fSAndreas Gohr if($INPUT->str('mediado') == 'update') $opened_tab = 'upload'; 1512d9162c6cSKate Arzamastseva 151394add303SAnika Henke echo '<h2 class="a11y">'.$lang['mediaselect'].'</h2>'.NL; 151495b451bcSAdrian Lang 1515ed69a2aeSKate Arzamastseva media_tabs_files($opened_tab); 151623846a98SKate Arzamastseva 151794add303SAnika Henke echo '<div class="panelHeader">'.NL; 151895b451bcSAdrian Lang echo '<h3>'; 1519026d14a9SAnika Henke $tabTitle = ($NS) ? $NS : '['.$lang['mediaroot'].']'; 1520c98f205eSAdrian Lang printf($lang['media_'.$opened_tab], '<strong>'.hsc($tabTitle).'</strong>'); 152194add303SAnika Henke echo '</h3>'.NL; 152295b451bcSAdrian Lang if($opened_tab === 'search' || $opened_tab === 'files') { 152395b451bcSAdrian Lang media_tab_files_options(); 152423846a98SKate Arzamastseva } 152594add303SAnika Henke echo '</div>'.NL; 1526d9162c6cSKate Arzamastseva 152794add303SAnika Henke echo '<div class="panelContent">'.NL; 152895b451bcSAdrian Lang if($opened_tab == 'files') { 152995b451bcSAdrian Lang media_tab_files($NS, $AUTH, $JUMPTO); 153095b451bcSAdrian Lang } elseif($opened_tab == 'upload') { 153195b451bcSAdrian Lang media_tab_upload($NS, $AUTH, $JUMPTO); 153295b451bcSAdrian Lang } elseif($opened_tab == 'search') { 153395b451bcSAdrian Lang media_tab_search($NS, $AUTH); 153495b451bcSAdrian Lang } 153594add303SAnika Henke echo '</div>'.NL; 1536d9162c6cSKate Arzamastseva} 1537d9162c6cSKate Arzamastseva 1538d9162c6cSKate Arzamastseva/** 1539d9162c6cSKate Arzamastseva * Prints the third column in full-screen media manager 1540d9162c6cSKate Arzamastseva * Depending on the opened tab this may be details of the 1541d9162c6cSKate Arzamastseva * selected file, the meta editing dialog or 1542d9162c6cSKate Arzamastseva * list of file revisions 1543d9162c6cSKate Arzamastseva * 1544d9162c6cSKate Arzamastseva * @author Kate Arzamastseva <pshns@ukr.net> 1545d9162c6cSKate Arzamastseva */ 1546035e07f1SKate Arzamastsevafunction tpl_mediaFileDetails($image, $rev) { 1547e8a2a143SMichael Hamann global $conf, $DEL, $lang; 1548585bf44eSChristopher Smith /** @var Input $INPUT */ 1549585bf44eSChristopher Smith global $INPUT; 1550d9162c6cSKate Arzamastseva 155192cac9a9SKate Arzamastseva $removed = (!file_exists(mediaFN($image)) && file_exists(mediaMetaFN($image, '.changes')) && $conf['mediarevisions']); 1552ac7a515fSAndreas Gohr if(!$image || (!file_exists(mediaFN($image)) && !$removed) || $DEL) return; 15536dd095f5SKate Arzamastseva if($rev && !file_exists(mediaFN($image, $rev))) $rev = false; 1554e8a2a143SMichael Hamann $ns = getNS($image); 1555ac7a515fSAndreas Gohr $do = $INPUT->str('mediado'); 15561eeeced2SKate Arzamastseva 1557ac7a515fSAndreas Gohr $opened_tab = $INPUT->str('tab_details'); 1558e5d185e1SKate Arzamastseva 1559e5d185e1SKate Arzamastseva $tab_array = array('view'); 1560ac7a515fSAndreas Gohr list(, $mime) = mimetype($image); 1561e5d185e1SKate Arzamastseva if($mime == 'image/jpeg') { 1562e5d185e1SKate Arzamastseva $tab_array[] = 'edit'; 1563e5d185e1SKate Arzamastseva } 1564e5d185e1SKate Arzamastseva if($conf['mediarevisions']) { 1565e5d185e1SKate Arzamastseva $tab_array[] = 'history'; 1566e5d185e1SKate Arzamastseva } 1567e5d185e1SKate Arzamastseva 1568e5d185e1SKate Arzamastseva if(!$opened_tab || !in_array($opened_tab, $tab_array)) $opened_tab = 'view'; 1569ac7a515fSAndreas Gohr if($INPUT->bool('edit')) $opened_tab = 'edit'; 157023846a98SKate Arzamastseva if($do == 'restore') $opened_tab = 'view'; 1571d9162c6cSKate Arzamastseva 1572ed69a2aeSKate Arzamastseva media_tabs_details($image, $opened_tab); 157323846a98SKate Arzamastseva 157459f3611bSAnika Henke echo '<div class="panelHeader"><h3>'; 1575ac7a515fSAndreas Gohr list($ext) = mimetype($image, false); 157695b451bcSAdrian Lang $class = preg_replace('/[^_\-a-z0-9]+/i', '_', $ext); 157795b451bcSAdrian Lang $class = 'select mediafile mf_'.$class; 157800c2d4a9SAnika Henke $tabTitle = '<strong><a href="'.ml($image).'" class="'.$class.'" title="'.$lang['mediaview'].'">'.$image.'</a>'.'</strong>'; 157908317413SAdrian Lang if($opened_tab === 'view' && $rev) { 158008317413SAdrian Lang printf($lang['media_viewold'], $tabTitle, dformat($rev)); 158108317413SAdrian Lang } else { 1582026d14a9SAnika Henke printf($lang['media_'.$opened_tab], $tabTitle); 158308317413SAdrian Lang } 1584b8a84c03SAndreas Gohr 158594add303SAnika Henke echo '</h3></div>'.NL; 158695b451bcSAdrian Lang 158794add303SAnika Henke echo '<div class="panelContent">'.NL; 158895b451bcSAdrian Lang 158923846a98SKate Arzamastseva if($opened_tab == 'view') { 1590e8a2a143SMichael Hamann media_tab_view($image, $ns, null, $rev); 159123846a98SKate Arzamastseva 159292cac9a9SKate Arzamastseva } elseif($opened_tab == 'edit' && !$removed) { 1593e8a2a143SMichael Hamann media_tab_edit($image, $ns); 159423846a98SKate Arzamastseva 1595e5d185e1SKate Arzamastseva } elseif($opened_tab == 'history' && $conf['mediarevisions']) { 1596e8a2a143SMichael Hamann media_tab_history($image, $ns); 159723846a98SKate Arzamastseva } 159895b451bcSAdrian Lang 159994add303SAnika Henke echo '</div>'.NL; 1600d9162c6cSKate Arzamastseva} 1601d9162c6cSKate Arzamastseva 1602d9162c6cSKate Arzamastseva/** 16033df72098SAndreas Gohr * prints the namespace tree in the mediamanger popup 16043df72098SAndreas Gohr * 16053df72098SAndreas Gohr * Only allowed in mediamanager.php 16063df72098SAndreas Gohr * 16073df72098SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 16083df72098SAndreas Gohr */ 1609fa8e5c77SKate Arzamastsevafunction tpl_mediaTree() { 16103df72098SAndreas Gohr global $NS; 161123846a98SKate Arzamastseva ptln('<div id="media__tree">'); 16123df72098SAndreas Gohr media_nstree($NS); 16133df72098SAndreas Gohr ptln('</div>'); 16143df72098SAndreas Gohr} 16153df72098SAndreas Gohr 1616a00de5b5SAndreas Gohr/** 1617a00de5b5SAndreas Gohr * Print a dropdown menu with all DokuWiki actions 1618a00de5b5SAndreas Gohr * 1619a00de5b5SAndreas Gohr * Note: this will not use any pretty URLs 1620a00de5b5SAndreas Gohr * 1621a00de5b5SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 162242ea7f44SGerrit Uitslag * 162342ea7f44SGerrit Uitslag * @param string $empty empty option label 162442ea7f44SGerrit Uitslag * @param string $button submit button label 1625a00de5b5SAndreas Gohr */ 1626a00de5b5SAndreas Gohrfunction tpl_actiondropdown($empty = '', $button = '>') { 1627a00de5b5SAndreas Gohr global $ID; 1628a00de5b5SAndreas Gohr global $REV; 1629a00de5b5SAndreas Gohr global $lang; 1630585bf44eSChristopher Smith /** @var Input $INPUT */ 1631585bf44eSChristopher Smith global $INPUT; 1632a00de5b5SAndreas Gohr 1633768d1852SAnika Henke $action_structure = array( 1634768d1852SAnika Henke 'page_tools' => array('edit', 'revert', 'revisions', 'backlink', 'subscribe'), 1635768d1852SAnika Henke 'site_tools' => array('recent', 'media', 'index'), 1636768d1852SAnika Henke 'user_tools' => array('login', 'register', 'profile', 'admin'), 1637768d1852SAnika Henke ); 1638768d1852SAnika Henke 1639e63eccffSAndreas Gohr echo '<form action="'.script().'" method="get" accept-charset="utf-8">'; 16403b9a3b55SAnika Henke echo '<div class="no">'; 1641a00de5b5SAndreas Gohr echo '<input type="hidden" name="id" value="'.$ID.'" />'; 1642a00de5b5SAndreas Gohr if($REV) echo '<input type="hidden" name="rev" value="'.$REV.'" />'; 1643585bf44eSChristopher Smith if ($INPUT->server->str('REMOTE_USER')) { 1644a00de5b5SAndreas Gohr echo '<input type="hidden" name="sectok" value="'.getSecurityToken().'" />'; 164561efcda1SChristopher Smith } 1646a00de5b5SAndreas Gohr 16475f17c394SAnika Henke echo '<select name="do" class="edit quickselect" title="'.$lang['tools'].'">'; 1648a00de5b5SAndreas Gohr echo '<option value="">'.$empty.'</option>'; 1649a00de5b5SAndreas Gohr 1650768d1852SAnika Henke foreach($action_structure as $tools => $actions) { 1651768d1852SAnika Henke echo '<optgroup label="'.$lang[$tools].'">'; 1652768d1852SAnika Henke foreach($actions as $action) { 1653768d1852SAnika Henke $act = tpl_get_action($action); 1654396c218fSAndreas Gohr if($act) echo '<option value="'.$act['params']['do'].'">'.$lang['btn_'.$act['type']].'</option>'; 1655768d1852SAnika Henke } 1656a00de5b5SAndreas Gohr echo '</optgroup>'; 1657768d1852SAnika Henke } 1658a00de5b5SAndreas Gohr 1659a00de5b5SAndreas Gohr echo '</select>'; 1660ae614416SAnika Henke echo '<button type="submit">'.$button.'</button>'; 16613b9a3b55SAnika Henke echo '</div>'; 1662a00de5b5SAndreas Gohr echo '</form>'; 1663a00de5b5SAndreas Gohr} 1664a00de5b5SAndreas Gohr 1665066fee30SAndreas Gohr/** 1666066fee30SAndreas Gohr * Print a informational line about the used license 1667066fee30SAndreas Gohr * 1668066fee30SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 1669ac7a515fSAndreas Gohr * @param string $img print image? (|button|badge) 1670ac7a515fSAndreas Gohr * @param bool $imgonly skip the textual description? 1671ac7a515fSAndreas Gohr * @param bool $return when true don't print, but return HTML 1672ac7a515fSAndreas Gohr * @param bool $wrap wrap in div with class="license"? 1673ac7a515fSAndreas Gohr * @return string 1674066fee30SAndreas Gohr */ 167580083a41SAndreas Gohrfunction tpl_license($img = 'badge', $imgonly = false, $return = false, $wrap = true) { 1676066fee30SAndreas Gohr global $license; 1677066fee30SAndreas Gohr global $conf; 1678066fee30SAndreas Gohr global $lang; 1679066fee30SAndreas Gohr if(!$conf['license']) return ''; 1680066fee30SAndreas Gohr if(!is_array($license[$conf['license']])) return ''; 1681066fee30SAndreas Gohr $lic = $license[$conf['license']]; 168253e15c8bSAnika Henke $target = ($conf['target']['extern']) ? ' target="'.$conf['target']['extern'].'"' : ''; 1683066fee30SAndreas Gohr 168480083a41SAndreas Gohr $out = ''; 168580083a41SAndreas Gohr if($wrap) $out .= '<div class="license">'; 1686066fee30SAndreas Gohr if($img) { 1687066fee30SAndreas Gohr $src = license_img($img); 1688066fee30SAndreas Gohr if($src) { 168953e15c8bSAnika Henke $out .= '<a href="'.$lic['url'].'" rel="license"'.$target; 169053e15c8bSAnika Henke $out .= '><img src="'.DOKU_BASE.$src.'" alt="'.$lic['name'].'" /></a>'; 169153e15c8bSAnika Henke if(!$imgonly) $out .= ' '; 1692066fee30SAndreas Gohr } 1693066fee30SAndreas Gohr } 16944cefd216SMichael Klier if(!$imgonly) { 169553e15c8bSAnika Henke $out .= $lang['license'].' '; 1696d317fb5dSAnika Henke $out .= '<bdi><a href="'.$lic['url'].'" rel="license" class="urlextern"'.$target; 1697d317fb5dSAnika Henke $out .= '>'.$lic['name'].'</a></bdi>'; 16984cefd216SMichael Klier } 169980083a41SAndreas Gohr if($wrap) $out .= '</div>'; 1700066fee30SAndreas Gohr 1701066fee30SAndreas Gohr if($return) return $out; 1702066fee30SAndreas Gohr echo $out; 1703ac7a515fSAndreas Gohr return ''; 1704066fee30SAndreas Gohr} 1705066fee30SAndreas Gohr 1706a81910eeSAndreas Gohr/** 1707835dfcaeSAnika Henke * Includes the rendered HTML of a given page 1708a81910eeSAndreas Gohr * 1709a81910eeSAndreas Gohr * This function is useful to populate sidebars or similar features in a 1710a81910eeSAndreas Gohr * template 1711e0c26282SGerrit Uitslag * 17127a112df5SAndreas Gohr * @param string $pageid The page name you want to include 17137a112df5SAndreas Gohr * @param bool $print Should the content be printed or returned only 17147a112df5SAndreas Gohr * @param bool $propagate Search higher namespaces, too? 17157c3e4a67SAndreas Gohr * @param bool $useacl Include the page only if the ACLs check out? 1716e0c26282SGerrit Uitslag * @return bool|null|string 1717a81910eeSAndreas Gohr */ 17187c3e4a67SAndreas Gohrfunction tpl_include_page($pageid, $print = true, $propagate = false, $useacl = true) { 17197a112df5SAndreas Gohr if($propagate) { 17207c3e4a67SAndreas Gohr $pageid = page_findnearest($pageid, $useacl); 17217c3e4a67SAndreas Gohr } elseif($useacl && auth_quickaclcheck($pageid) == AUTH_NONE) { 17227a112df5SAndreas Gohr return false; 17237a112df5SAndreas Gohr } 1724*a2e03c82SAndreas Gohr if(!$pageid) return false; 1725835dfcaeSAnika Henke 1726c786a1b6SAnika Henke global $TOC; 17279a2e250aSAndreas Gohr $oldtoc = $TOC; 1728a81910eeSAndreas Gohr $html = p_wiki_xhtml($pageid, '', false); 17299a2e250aSAndreas Gohr $TOC = $oldtoc; 1730a81910eeSAndreas Gohr 1731*a2e03c82SAndreas Gohr if($print) echo $html; 1732e66d3e6dSAndreas Gohr return $html; 1733e66d3e6dSAndreas Gohr} 1734e66d3e6dSAndreas Gohr 1735e66d3e6dSAndreas Gohr/** 17365b75cd1fSAdrian Lang * Display the subscribe form 17375b75cd1fSAdrian Lang * 17385b75cd1fSAdrian Lang * @author Adrian Lang <lang@cosmocode.de> 17395b75cd1fSAdrian Lang */ 17405b75cd1fSAdrian Langfunction tpl_subscribe() { 17415b75cd1fSAdrian Lang global $INFO; 17425b75cd1fSAdrian Lang global $ID; 17435b75cd1fSAdrian Lang global $lang; 17446b8f02cfSAdrian Lang global $conf; 174540c347dbSAdrian Lang $stime_days = $conf['subscribe_time'] / 60 / 60 / 24; 17465b75cd1fSAdrian Lang 17475b75cd1fSAdrian Lang echo p_locale_xhtml('subscr_form'); 17485b75cd1fSAdrian Lang echo '<h2>'.$lang['subscr_m_current_header'].'</h2>'; 174915741132SAndreas Gohr echo '<div class="level2">'; 17505b75cd1fSAdrian Lang if($INFO['subscribed'] === false) { 17515b75cd1fSAdrian Lang echo '<p>'.$lang['subscr_m_not_subscribed'].'</p>'; 17525b75cd1fSAdrian Lang } else { 17535b75cd1fSAdrian Lang echo '<ul>'; 17545b75cd1fSAdrian Lang foreach($INFO['subscribed'] as $sub) { 1755056c2049SAndreas Gohr echo '<li><div class="li">'; 17565b75cd1fSAdrian Lang if($sub['target'] !== $ID) { 1757056c2049SAndreas Gohr echo '<code class="ns">'.hsc(prettyprint_id($sub['target'])).'</code>'; 17585b75cd1fSAdrian Lang } else { 1759056c2049SAndreas Gohr echo '<code class="page">'.hsc(prettyprint_id($sub['target'])).'</code>'; 17605b75cd1fSAdrian Lang } 176140c347dbSAdrian Lang $sstl = sprintf($lang['subscr_style_'.$sub['style']], $stime_days); 176215741132SAndreas Gohr if(!$sstl) $sstl = hsc($sub['style']); 1763056c2049SAndreas Gohr echo ' ('.$sstl.') '; 176415741132SAndreas Gohr 1765ac7a515fSAndreas Gohr echo '<a href="'.wl( 1766ac7a515fSAndreas Gohr $ID, 1767ac7a515fSAndreas Gohr array( 1768ac7a515fSAndreas Gohr 'do' => 'subscribe', 176966d2bed9SAdrian Lang 'sub_target'=> $sub['target'], 177066d2bed9SAdrian Lang 'sub_style' => $sub['style'], 177166d2bed9SAdrian Lang 'sub_action'=> 'unsubscribe', 1772ac7a515fSAndreas Gohr 'sectok' => getSecurityToken() 1773ac7a515fSAndreas Gohr ) 1774ac7a515fSAndreas Gohr ). 177566d2bed9SAdrian Lang '" class="unsubscribe">'.$lang['subscr_m_unsubscribe']. 177666d2bed9SAdrian Lang '</a></div></li>'; 17775b75cd1fSAdrian Lang } 17785b75cd1fSAdrian Lang echo '</ul>'; 17795b75cd1fSAdrian Lang } 178015741132SAndreas Gohr echo '</div>'; 17815b75cd1fSAdrian Lang 178215741132SAndreas Gohr // Add new subscription form 17835b75cd1fSAdrian Lang echo '<h2>'.$lang['subscr_m_new_header'].'</h2>'; 178415741132SAndreas Gohr echo '<div class="level2">'; 17855b75cd1fSAdrian Lang $ns = getNS($ID).':'; 178615741132SAndreas Gohr $targets = array( 178715741132SAndreas Gohr $ID => '<code class="page">'.prettyprint_id($ID).'</code>', 178815741132SAndreas Gohr $ns => '<code class="ns">'.prettyprint_id($ns).'</code>', 178915741132SAndreas Gohr ); 179015741132SAndreas Gohr $styles = array( 179115741132SAndreas Gohr 'every' => $lang['subscr_style_every'], 17926b8f02cfSAdrian Lang 'digest' => sprintf($lang['subscr_style_digest'], $stime_days), 17936b8f02cfSAdrian Lang 'list' => sprintf($lang['subscr_style_list'], $stime_days), 179415741132SAndreas Gohr ); 179515741132SAndreas Gohr 1796056c2049SAndreas Gohr $form = new Doku_Form(array('id' => 'subscribe__form')); 1797056c2049SAndreas Gohr $form->startFieldset($lang['subscr_m_subscribe']); 1798056c2049SAndreas Gohr $form->addRadioSet('sub_target', $targets); 1799056c2049SAndreas Gohr $form->startFieldset($lang['subscr_m_receive']); 1800056c2049SAndreas Gohr $form->addRadioSet('sub_style', $styles); 1801056c2049SAndreas Gohr $form->addHidden('sub_action', 'subscribe'); 1802056c2049SAndreas Gohr $form->addHidden('do', 'subscribe'); 1803056c2049SAndreas Gohr $form->addHidden('id', $ID); 1804056c2049SAndreas Gohr $form->endFieldset(); 18055b75cd1fSAdrian Lang $form->addElement(form_makeButton('submit', 'subscribe', $lang['subscr_m_subscribe'])); 18065b75cd1fSAdrian Lang html_form('SUBSCRIBE', $form); 180715741132SAndreas Gohr echo '</div>'; 18085b75cd1fSAdrian Lang} 18095b75cd1fSAdrian Lang 1810d059ba9bSAndreas Gohr/** 1811d059ba9bSAndreas Gohr * Tries to send already created content right to the browser 1812d059ba9bSAndreas Gohr * 1813d059ba9bSAndreas Gohr * Wraps around ob_flush() and flush() 1814d059ba9bSAndreas Gohr * 1815d059ba9bSAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 1816d059ba9bSAndreas Gohr */ 1817d059ba9bSAndreas Gohrfunction tpl_flush() { 1818d059ba9bSAndreas Gohr ob_flush(); 1819d059ba9bSAndreas Gohr flush(); 1820d059ba9bSAndreas Gohr} 1821d059ba9bSAndreas Gohr 1822afca7e7eSAnika Henke/** 1823378325f9SAndreas Gohr * Tries to find a ressource file in the given locations. 1824afca7e7eSAnika Henke * 1825378325f9SAndreas Gohr * If a given location starts with a colon it is assumed to be a media 1826378325f9SAndreas Gohr * file, otherwise it is assumed to be relative to the current template 1827378325f9SAndreas Gohr * 182842ea7f44SGerrit Uitslag * @param string[] $search locations to look at 1829378325f9SAndreas Gohr * @param bool $abs if to use absolute URL 1830ac7a515fSAndreas Gohr * @param array &$imginfo filled with getimagesize() 1831ac7a515fSAndreas Gohr * @return string 183242ea7f44SGerrit Uitslag * 1833378325f9SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 1834afca7e7eSAnika Henke */ 1835378325f9SAndreas Gohrfunction tpl_getMediaFile($search, $abs = false, &$imginfo = null) { 1836ac7a515fSAndreas Gohr $img = ''; 1837ac7a515fSAndreas Gohr $file = ''; 1838ac7a515fSAndreas Gohr $ismedia = false; 1839378325f9SAndreas Gohr // loop through candidates until a match was found: 1840378325f9SAndreas Gohr foreach($search as $img) { 1841378325f9SAndreas Gohr if(substr($img, 0, 1) == ':') { 1842378325f9SAndreas Gohr $file = mediaFN($img); 1843378325f9SAndreas Gohr $ismedia = true; 1844378325f9SAndreas Gohr } else { 1845c4766956SAndreas Gohr $file = tpl_incdir().$img; 1846378325f9SAndreas Gohr $ismedia = false; 18471f13e33dSAnika Henke } 18480f747863Slupo49 1849378325f9SAndreas Gohr if(file_exists($file)) break; 1850872a6d29SAnika Henke } 1851378325f9SAndreas Gohr 1852378325f9SAndreas Gohr // fetch image data if requested 1853378325f9SAndreas Gohr if(!is_null($imginfo)) { 1854378325f9SAndreas Gohr $imginfo = getimagesize($file); 1855378325f9SAndreas Gohr } 1856378325f9SAndreas Gohr 1857378325f9SAndreas Gohr // build URL 1858378325f9SAndreas Gohr if($ismedia) { 1859378325f9SAndreas Gohr $url = ml($img, '', true, '', $abs); 1860378325f9SAndreas Gohr } else { 1861c4766956SAndreas Gohr $url = tpl_basedir().$img; 1862378325f9SAndreas Gohr if($abs) $url = DOKU_URL.substr($url, strlen(DOKU_REL)); 1863378325f9SAndreas Gohr } 1864378325f9SAndreas Gohr 1865378325f9SAndreas Gohr return $url; 1866a7e5f74cSlupo49} 18671f13e33dSAnika Henke 1868872a6d29SAnika Henke/** 1869e5d4768dSAndreas Gohr * PHP include a file 1870e5d4768dSAndreas Gohr * 1871e5d4768dSAndreas Gohr * either from the conf directory if it exists, otherwise use 1872e5d4768dSAndreas Gohr * file in the template's root directory. 1873e5d4768dSAndreas Gohr * 1874e5d4768dSAndreas Gohr * The function honours config cascade settings and looks for the given 1875e5d4768dSAndreas Gohr * file next to the ´main´ config files, in the order protected, local, 1876e5d4768dSAndreas Gohr * default. 1877e5d4768dSAndreas Gohr * 1878e5d4768dSAndreas Gohr * Note: no escaping or sanity checking is done here. Never pass user input 1879e5d4768dSAndreas Gohr * to this function! 1880e5d4768dSAndreas Gohr * 1881e5d4768dSAndreas Gohr * @author Anika Henke <anika@selfthinker.org> 1882e5d4768dSAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 188342ea7f44SGerrit Uitslag * 188442ea7f44SGerrit Uitslag * @param string $file 1885e5d4768dSAndreas Gohr */ 1886e5d4768dSAndreas Gohrfunction tpl_includeFile($file) { 1887e5d4768dSAndreas Gohr global $config_cascade; 1888e5d4768dSAndreas Gohr foreach(array('protected', 'local', 'default') as $config_group) { 1889e5d4768dSAndreas Gohr if(empty($config_cascade['main'][$config_group])) continue; 1890e5d4768dSAndreas Gohr foreach($config_cascade['main'][$config_group] as $conf_file) { 1891e5d4768dSAndreas Gohr $dir = dirname($conf_file); 1892e5d4768dSAndreas Gohr if(file_exists("$dir/$file")) { 1893f3a1225fSAnika Henke include("$dir/$file"); 1894e5d4768dSAndreas Gohr return; 1895e5d4768dSAndreas Gohr } 1896e5d4768dSAndreas Gohr } 1897e5d4768dSAndreas Gohr } 1898e5d4768dSAndreas Gohr 1899e5d4768dSAndreas Gohr // still here? try the template dir 1900e5d4768dSAndreas Gohr $file = tpl_incdir().$file; 1901e5d4768dSAndreas Gohr if(file_exists($file)) { 1902f3a1225fSAnika Henke include($file); 1903e5d4768dSAndreas Gohr } 1904e5d4768dSAndreas Gohr} 1905e5d4768dSAndreas Gohr 1906e5d4768dSAndreas Gohr/** 1907872a6d29SAnika Henke * Returns <link> tag for various icon types (favicon|mobile|generic) 1908872a6d29SAnika Henke * 1909872a6d29SAnika Henke * @author Anika Henke <anika@selfthinker.org> 191042ea7f44SGerrit Uitslag * 1911ac7a515fSAndreas Gohr * @param array $types - list of icon types to display (favicon|mobile|generic) 1912ac7a515fSAndreas Gohr * @return string 1913872a6d29SAnika Henke */ 1914872a6d29SAnika Henkefunction tpl_favicon($types = array('favicon')) { 1915872a6d29SAnika Henke 1916872a6d29SAnika Henke $return = ''; 1917872a6d29SAnika Henke 1918872a6d29SAnika Henke foreach($types as $type) { 1919872a6d29SAnika Henke switch($type) { 1920872a6d29SAnika Henke case 'favicon': 1921378325f9SAndreas Gohr $look = array(':wiki:favicon.ico', ':favicon.ico', 'images/favicon.ico'); 1922378325f9SAndreas Gohr $return .= '<link rel="shortcut icon" href="'.tpl_getMediaFile($look).'" />'.NL; 1923872a6d29SAnika Henke break; 1924872a6d29SAnika Henke case 'mobile': 1925cab75975SAnika Henke $look = array(':wiki:apple-touch-icon.png', ':apple-touch-icon.png', 'images/apple-touch-icon.png'); 1926378325f9SAndreas Gohr $return .= '<link rel="apple-touch-icon" href="'.tpl_getMediaFile($look).'" />'.NL; 1927872a6d29SAnika Henke break; 1928872a6d29SAnika Henke case 'generic': 1929872a6d29SAnika Henke // ideal world solution, which doesn't work in any browser yet 1930378325f9SAndreas Gohr $look = array(':wiki:favicon.svg', ':favicon.svg', 'images/favicon.svg'); 1931378325f9SAndreas Gohr $return .= '<link rel="icon" href="'.tpl_getMediaFile($look).'" type="image/svg+xml" />'.NL; 1932872a6d29SAnika Henke break; 1933872a6d29SAnika Henke } 1934872a6d29SAnika Henke } 1935872a6d29SAnika Henke 1936872a6d29SAnika Henke return $return; 1937afca7e7eSAnika Henke} 1938afca7e7eSAnika Henke 1939d9162c6cSKate Arzamastseva/** 1940d9162c6cSKate Arzamastseva * Prints full-screen media manager 1941d9162c6cSKate Arzamastseva * 1942d9162c6cSKate Arzamastseva * @author Kate Arzamastseva <pshns@ukr.net> 1943d9162c6cSKate Arzamastseva */ 1944d9162c6cSKate Arzamastsevafunction tpl_media() { 1945ac7a515fSAndreas Gohr global $NS, $IMG, $JUMPTO, $REV, $lang, $fullscreen, $INPUT; 194688a71175SKate Arzamastseva $fullscreen = true; 194795b451bcSAdrian Lang require_once DOKU_INC.'lib/exe/mediamanager.php'; 1948d9162c6cSKate Arzamastseva 1949ac7a515fSAndreas Gohr $rev = ''; 1950ac7a515fSAndreas Gohr $image = cleanID($INPUT->str('image')); 195198f03b57SKate Arzamastseva if(isset($IMG)) $image = $IMG; 195298f03b57SKate Arzamastseva if(isset($JUMPTO)) $image = $JUMPTO; 19539c1bd4bcSKate Arzamastseva if(isset($REV) && !$JUMPTO) $rev = $REV; 195498f03b57SKate Arzamastseva 195594add303SAnika Henke echo '<div id="mediamanager__page">'.NL; 1956bc314c58SAnika Henke echo '<h1>'.$lang['btn_media'].'</h1>'.NL; 1957d9162c6cSKate Arzamastseva html_msgarea(); 195894add303SAnika Henke 195994add303SAnika Henke echo '<div class="panel namespaces">'.NL; 196094add303SAnika Henke echo '<h2>'.$lang['namespaces'].'</h2>'.NL; 196195b451bcSAdrian Lang echo '<div class="panelHeader">'; 1962ba340a70SAnika Henke echo $lang['media_namespaces']; 196394add303SAnika Henke echo '</div>'.NL; 196495b451bcSAdrian Lang 196594add303SAnika Henke echo '<div class="panelContent" id="media__tree">'.NL; 196695b451bcSAdrian Lang media_nstree($NS); 196794add303SAnika Henke echo '</div>'.NL; 196894add303SAnika Henke echo '</div>'.NL; 1969fa8e5c77SKate Arzamastseva 197094add303SAnika Henke echo '<div class="panel filelist">'.NL; 1971035e07f1SKate Arzamastseva tpl_mediaFileList(); 197294add303SAnika Henke echo '</div>'.NL; 1973fa8e5c77SKate Arzamastseva 197494add303SAnika Henke echo '<div class="panel file">'.NL; 197594add303SAnika Henke echo '<h2 class="a11y">'.$lang['media_file'].'</h2>'.NL; 1976035e07f1SKate Arzamastseva tpl_mediaFileDetails($image, $rev); 197794add303SAnika Henke echo '</div>'.NL; 1978ba340a70SAnika Henke 197994add303SAnika Henke echo '</div>'.NL; 1980d9162c6cSKate Arzamastseva} 1981afca7e7eSAnika Henke 1982c71db656SAnika Henke/** 1983c71db656SAnika Henke * Return useful layout classes 1984c71db656SAnika Henke * 1985c71db656SAnika Henke * @author Anika Henke <anika@selfthinker.org> 198642ea7f44SGerrit Uitslag * 198742ea7f44SGerrit Uitslag * @return string 1988c71db656SAnika Henke */ 1989c71db656SAnika Henkefunction tpl_classes() { 1990c71db656SAnika Henke global $ACT, $conf, $ID, $INFO; 1991585bf44eSChristopher Smith /** @var Input $INPUT */ 1992585bf44eSChristopher Smith global $INPUT; 1993585bf44eSChristopher Smith 1994c71db656SAnika Henke $classes = array( 1995c71db656SAnika Henke 'dokuwiki', 1996c71db656SAnika Henke 'mode_'.$ACT, 1997c71db656SAnika Henke 'tpl_'.$conf['template'], 1998585bf44eSChristopher Smith $INPUT->server->bool('REMOTE_USER') ? 'loggedIn' : '', 199939f00629SAnika Henke $INFO['exists'] ? '' : 'notFound', 2000c71db656SAnika Henke ($ID == $conf['start']) ? 'home' : '', 2001c71db656SAnika Henke ); 2002c71db656SAnika Henke return join(' ', $classes); 2003c71db656SAnika Henke} 2004c71db656SAnika Henke 200584dd2b1aSGerrit Uitslag/** 200684dd2b1aSGerrit Uitslag * Create event for tools menues 200784dd2b1aSGerrit Uitslag * 200884dd2b1aSGerrit Uitslag * @author Anika Henke <anika@selfthinker.org> 200984dd2b1aSGerrit Uitslag * @param string $toolsname name of menu 201084dd2b1aSGerrit Uitslag * @param array $items 201184dd2b1aSGerrit Uitslag * @param string $view e.g. 'main', 'detail', ... 201284dd2b1aSGerrit Uitslag */ 201384dd2b1aSGerrit Uitslagfunction tpl_toolsevent($toolsname, $items, $view = 'main') { 201484dd2b1aSGerrit Uitslag $data = array( 201584dd2b1aSGerrit Uitslag 'view' => $view, 201684dd2b1aSGerrit Uitslag 'items' => $items 201784dd2b1aSGerrit Uitslag ); 201884dd2b1aSGerrit Uitslag 201984dd2b1aSGerrit Uitslag $hook = 'TEMPLATE_' . strtoupper($toolsname) . '_DISPLAY'; 202084dd2b1aSGerrit Uitslag $evt = new Doku_Event($hook, $data); 202184dd2b1aSGerrit Uitslag if($evt->advise_before()) { 202284dd2b1aSGerrit Uitslag foreach($evt->data['items'] as $k => $html) echo $html; 202384dd2b1aSGerrit Uitslag } 202484dd2b1aSGerrit Uitslag $evt->advise_after(); 202584dd2b1aSGerrit Uitslag} 202684dd2b1aSGerrit Uitslag 2027e3776c06SMichael Hamann//Setup VIM: ex: et ts=4 : 2028a00de5b5SAndreas Gohr 2029