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'); 30663cf4192Ssarehag if(actionOK('search')) { 307ac7a515fSAndreas Gohr $head['link'][] = array( 308ac7a515fSAndreas Gohr 'rel' => 'search', 'type'=> 'application/opensearchdescription+xml', 309ac7a515fSAndreas Gohr 'href'=> DOKU_BASE.'lib/exe/opensearch.php', 'title'=> $conf['title'] 310ac7a515fSAndreas Gohr ); 31163cf4192Ssarehag } 31263cf4192Ssarehag 313f4f47358SBen Coburn $head['link'][] = array('rel'=> 'start', 'href'=> DOKU_BASE); 3147aedde2eSGina Haeussge if(actionOK('index')) { 315ac7a515fSAndreas Gohr $head['link'][] = array( 316ac7a515fSAndreas Gohr 'rel' => 'contents', 'href'=> wl($ID, 'do=index', false, '&'), 317ac7a515fSAndreas Gohr 'title'=> $lang['btn_index'] 318ac7a515fSAndreas Gohr ); 3197aedde2eSGina Haeussge } 320f96fa415SAndreas Gohr 321f96fa415SAndreas Gohr if($alt) { 32254be1338SGerrit Uitslag if(actionOK('rss')) { 323ac7a515fSAndreas Gohr $head['link'][] = array( 324ac7a515fSAndreas Gohr 'rel' => 'alternate', 'type'=> 'application/rss+xml', 325a1288caeSGerrit Uitslag 'title'=> $lang['btn_recent'], 'href'=> DOKU_BASE.'feed.php' 326ac7a515fSAndreas Gohr ); 327ac7a515fSAndreas Gohr $head['link'][] = array( 328ac7a515fSAndreas Gohr 'rel' => 'alternate', 'type'=> 'application/rss+xml', 329a1288caeSGerrit Uitslag 'title'=> $lang['currentns'], 330ac7a515fSAndreas Gohr 'href' => DOKU_BASE.'feed.php?mode=list&ns='.$INFO['namespace'] 331ac7a515fSAndreas Gohr ); 33254be1338SGerrit Uitslag } 333c35f3875SAndreas Gohr if(($ACT == 'show' || $ACT == 'search') && $INFO['writable']) { 334ac7a515fSAndreas Gohr $head['link'][] = array( 335ac7a515fSAndreas Gohr 'rel' => 'edit', 336715bdf1fSAndreas Gohr 'title'=> $lang['btn_edit'], 337ac7a515fSAndreas Gohr 'href' => wl($ID, 'do=edit', false, '&') 338ac7a515fSAndreas Gohr ); 339c35f3875SAndreas Gohr } 340c35f3875SAndreas Gohr 34154be1338SGerrit Uitslag if(actionOK('rss') && $ACT == 'search') { 342ac7a515fSAndreas Gohr $head['link'][] = array( 343ac7a515fSAndreas Gohr 'rel' => 'alternate', 'type'=> 'application/rss+xml', 344a1288caeSGerrit Uitslag 'title'=> $lang['searchresult'], 345ac7a515fSAndreas Gohr 'href' => DOKU_BASE.'feed.php?mode=search&q='.$QUERY 346ac7a515fSAndreas Gohr ); 3474bb1b5aeSAndreas Gohr } 348bae36d94SAndreas Gohr 349bae36d94SAndreas Gohr if(actionOK('export_xhtml')) { 350ac7a515fSAndreas Gohr $head['link'][] = array( 351a1288caeSGerrit Uitslag 'rel' => 'alternate', 'type'=> 'text/html', 'title'=> $lang['plainhtml'], 352ac7a515fSAndreas Gohr 'href'=> exportlink($ID, 'xhtml', '', false, '&') 353ac7a515fSAndreas Gohr ); 354bae36d94SAndreas Gohr } 355bae36d94SAndreas Gohr 356bae36d94SAndreas Gohr if(actionOK('export_raw')) { 357ac7a515fSAndreas Gohr $head['link'][] = array( 358a1288caeSGerrit Uitslag 'rel' => 'alternate', 'type'=> 'text/plain', 'title'=> $lang['wikimarkup'], 359ac7a515fSAndreas Gohr 'href'=> exportlink($ID, 'raw', '', false, '&') 360ac7a515fSAndreas Gohr ); 361f96fa415SAndreas Gohr } 362bae36d94SAndreas Gohr } 3636b13307fSandi 3646b13307fSandi // setup robot tags apropriate for different modes 3654f2e0004STim Weber if(($ACT == 'show' || $ACT == 'export_xhtml') && !$REV) { 3666b13307fSandi if($INFO['exists']) { 3676b13307fSandi //delay indexing: 3686b13307fSandi if((time() - $INFO['lastmod']) >= $conf['indexdelay']) { 3697bff22c0SAndreas Gohr $head['meta'][] = array('name'=> 'robots', 'content'=> 'index,follow'); 3706b13307fSandi } else { 3717bff22c0SAndreas Gohr $head['meta'][] = array('name'=> 'robots', 'content'=> 'noindex,nofollow'); 3726b13307fSandi } 37301f9be51SAnika Henke $canonicalUrl = wl($ID, '', true, '&'); 37401f9be51SAnika Henke if ($ID == $conf['start']) { 37501f9be51SAnika Henke $canonicalUrl = DOKU_URL; 37601f9be51SAnika Henke } 37701f9be51SAnika Henke $head['link'][] = array('rel'=> 'canonical', 'href'=> $canonicalUrl); 3786b13307fSandi } else { 3797bff22c0SAndreas Gohr $head['meta'][] = array('name'=> 'robots', 'content'=> 'noindex,follow'); 3806b13307fSandi } 3817a24876fSAndreas Gohr } elseif(defined('DOKU_MEDIADETAIL')) { 3827bff22c0SAndreas Gohr $head['meta'][] = array('name'=> 'robots', 'content'=> 'index,follow'); 3836b13307fSandi } else { 3847bff22c0SAndreas Gohr $head['meta'][] = array('name'=> 'robots', 'content'=> 'noindex,nofollow'); 3856b13307fSandi } 3866b13307fSandi 387831800b8SAndreas Gohr // set metadata 388831800b8SAndreas Gohr if($ACT == 'show' || $ACT == 'export_xhtml') { 389831800b8SAndreas Gohr // keywords (explicit or implicit) 390bb4866bdSchris if(!empty($INFO['meta']['subject'])) { 3917bff22c0SAndreas Gohr $head['meta'][] = array('name'=> 'keywords', 'content'=> join(',', $INFO['meta']['subject'])); 392831800b8SAndreas Gohr } else { 3937bff22c0SAndreas Gohr $head['meta'][] = array('name'=> 'keywords', 'content'=> str_replace(':', ',', $ID)); 394831800b8SAndreas Gohr } 395831800b8SAndreas Gohr } 396831800b8SAndreas Gohr 39778a6aeb1SAndreas Gohr // load stylesheets 398ac7a515fSAndreas Gohr $head['link'][] = array( 399ac7a515fSAndreas Gohr 'rel' => 'stylesheet', 'type'=> 'text/css', 400e283bd6cSAnika Henke 'href'=> DOKU_BASE.'lib/exe/css.php?t='.rawurlencode($conf['template']).'&tseed='.$tseed 401ac7a515fSAndreas Gohr ); 402bad31ae9SAndreas Gohr 4038bbcb611SAndreas Gohr // make $INFO and other vars available to JavaScripts 404463d4a65SAndreas Gohr $json = new JSON(); 40572e0dc37SAndreas Gohr $script = "var NS='".$INFO['namespace']."';"; 406585bf44eSChristopher Smith if($conf['useacl'] && $INPUT->server->str('REMOTE_USER')) { 40772e0dc37SAndreas Gohr $script .= "var SIG='".toolbar_signature()."';"; 408c591aabeSAndreas Gohr } 40972e0dc37SAndreas Gohr $script .= 'var JSINFO = '.$json->encode($JSINFO).';'; 41085f81679SAdrian Lang $head['script'][] = array('type'=> 'text/javascript', '_data'=> $script); 4118bbcb611SAndreas Gohr 412*61537d47SAndreas Gohr // load jquery 413*61537d47SAndreas Gohr $jqver = getJqueryVersions(); 414*61537d47SAndreas Gohr if($conf['jquerycdn']) { 415*61537d47SAndreas Gohr $head['script'][] = array( 416*61537d47SAndreas Gohr 'type' => 'text/javascript', 'charset' => 'utf-8', '_data' => '', 417*61537d47SAndreas Gohr 'src' => sprintf('http://code.jquery.com/jquery-%s.min.js', $jqver['JQ_VERSION']) 418*61537d47SAndreas Gohr ); 419*61537d47SAndreas Gohr $head['script'][] = array( 420*61537d47SAndreas Gohr 'type' => 'text/javascript', 'charset' => 'utf-8', '_data' => '', 421*61537d47SAndreas Gohr 'src' => sprintf('http://code.jquery.com/jquery-migrate-%s.min.js', $jqver['JQM_VERSION']) 422*61537d47SAndreas Gohr ); 423*61537d47SAndreas Gohr $head['script'][] = array( 424*61537d47SAndreas Gohr 'type' => 'text/javascript', 'charset' => 'utf-8', '_data' => '', 425*61537d47SAndreas Gohr 'src' => sprintf('https://code.jquery.com/ui/%s/jquery-ui.min.js', $jqver['JQUI_VERSION']) 426*61537d47SAndreas Gohr ); 427*61537d47SAndreas Gohr } else { 428*61537d47SAndreas Gohr $jqmod = md5(join('-', $jqver)); 429*61537d47SAndreas Gohr $head['script'][] = array( 430*61537d47SAndreas Gohr 'type' => 'text/javascript', 'charset' => 'utf-8', '_data' => '', 431*61537d47SAndreas Gohr 'src' => DOKU_BASE . 'lib/exe/jquery.php' . '?tseed=' . $jqmod 432*61537d47SAndreas Gohr ); 433*61537d47SAndreas Gohr } 434*61537d47SAndreas Gohr 435*61537d47SAndreas Gohr // load our javascript dispatcher 436ac7a515fSAndreas Gohr $head['script'][] = array( 437ac7a515fSAndreas Gohr 'type'=> 'text/javascript', 'charset'=> 'utf-8', '_data'=> '', 438e283bd6cSAnika Henke 'src' => DOKU_BASE.'lib/exe/js.php'.'?t='.rawurlencode($conf['template']).'&tseed='.$tseed 439ac7a515fSAndreas Gohr ); 4407bff22c0SAndreas Gohr 4417bff22c0SAndreas Gohr // trigger event here 442016b6153SAndreas Gohr trigger_event('TPL_METAHEADER_OUTPUT', $head, '_tpl_metaheaders_action', true); 44354e95700STom N Harris return true; 4447bff22c0SAndreas Gohr} 4457bff22c0SAndreas Gohr 4467bff22c0SAndreas Gohr/** 4477bff22c0SAndreas Gohr * prints the array build by tpl_metaheaders 4487bff22c0SAndreas Gohr * 4497bff22c0SAndreas Gohr * $data is an array of different header tags. Each tag can have multiple 4507bff22c0SAndreas Gohr * instances. Attributes are given as key value pairs. Values will be HTML 4517bff22c0SAndreas Gohr * encoded automatically so they should be provided as is in the $data array. 4527bff22c0SAndreas Gohr * 45342ea7f44SGerrit Uitslag * For tags having a body attribute specify the body data in the special 4541304d1dbSAndreas Gohr * attribute '_data'. This field will NOT BE ESCAPED automatically. 4557bff22c0SAndreas Gohr * 4567bff22c0SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 45742ea7f44SGerrit Uitslag * 45842ea7f44SGerrit Uitslag * @param array $data 4597bff22c0SAndreas Gohr */ 4607bff22c0SAndreas Gohrfunction _tpl_metaheaders_action($data) { 4617bff22c0SAndreas Gohr foreach($data as $tag => $inst) { 4627bff22c0SAndreas Gohr foreach($inst as $attr) { 4637bff22c0SAndreas Gohr echo '<', $tag, ' ', buildAttributes($attr); 46426afa874SMikhail I. Izmestev if(isset($attr['_data']) || $tag == 'script') { 465e226efe1SAndreas Gohr if($tag == 'script' && $attr['_data']) 46609f791c4SDominik Eckelmann $attr['_data'] = "/*<![CDATA[*/". 467e226efe1SAndreas Gohr $attr['_data']. 46809f791c4SDominik Eckelmann "\n/*!]]>*/"; 469e226efe1SAndreas Gohr 4701304d1dbSAndreas Gohr echo '>', $attr['_data'], '</', $tag, '>'; 4717bff22c0SAndreas Gohr } else { 4727bff22c0SAndreas Gohr echo '/>'; 4737bff22c0SAndreas Gohr } 4747bff22c0SAndreas Gohr echo "\n"; 4757bff22c0SAndreas Gohr } 4767bff22c0SAndreas Gohr } 4776b13307fSandi} 4786b13307fSandi 4796b13307fSandi/** 4806b13307fSandi * Print a link 4816b13307fSandi * 4825e163278SAndreas Gohr * Just builds a link. 4836b13307fSandi * 4846b13307fSandi * @author Andreas Gohr <andi@splitbrain.org> 48542ea7f44SGerrit Uitslag * 48642ea7f44SGerrit Uitslag * @param string $url 48742ea7f44SGerrit Uitslag * @param string $name 48842ea7f44SGerrit Uitslag * @param string $more 48921d806cdSGerrit Uitslag * @param bool $return if true return the link html, otherwise print 49021d806cdSGerrit Uitslag * @return bool|string html of the link, or true if printed 4916b13307fSandi */ 4921af98a77SAnika Henkefunction tpl_link($url, $name, $more = '', $return = false) { 49301f17825SAnika Henke $out = '<a href="'.$url.'" '; 4941af98a77SAnika Henke if($more) $out .= ' '.$more; 4951af98a77SAnika Henke $out .= ">$name</a>"; 4961af98a77SAnika Henke if($return) return $out; 4971af98a77SAnika Henke print $out; 49854e95700STom N Harris return true; 4996b13307fSandi} 5006b13307fSandi 5016b13307fSandi/** 50255efc227SAndreas Gohr * Prints a link to a WikiPage 50355efc227SAndreas Gohr * 50455efc227SAndreas Gohr * Wrapper around html_wikilink 50555efc227SAndreas Gohr * 50655efc227SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 50742ea7f44SGerrit Uitslag * 50842ea7f44SGerrit Uitslag * @param string $id page id 50942ea7f44SGerrit Uitslag * @param string|null $name the name of the link 51021d806cdSGerrit Uitslag * @return bool true 51155efc227SAndreas Gohr */ 5120b17fdc6SAndreas Gohrfunction tpl_pagelink($id, $name = null) { 513d317fb5dSAnika Henke print '<bdi>'.html_wikilink($id, $name).'</bdi>'; 51454e95700STom N Harris return true; 51555efc227SAndreas Gohr} 51655efc227SAndreas Gohr 51755efc227SAndreas Gohr/** 518a3ec5f4aSmatthiasgrimm * get the parent page 519a3ec5f4aSmatthiasgrimm * 520a3ec5f4aSmatthiasgrimm * Tries to find out which page is parent. 521a3ec5f4aSmatthiasgrimm * returns false if none is available 522a3ec5f4aSmatthiasgrimm * 523377f9e97SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 52442ea7f44SGerrit Uitslag * 52542ea7f44SGerrit Uitslag * @param string $id page id 52642ea7f44SGerrit Uitslag * @return false|string 527a3ec5f4aSmatthiasgrimm */ 528377f9e97SAndreas Gohrfunction tpl_getparent($id) { 529377f9e97SAndreas Gohr $parent = getNS($id).':'; 530377f9e97SAndreas Gohr resolve_pageid('', $parent, $exists); 531a197105eSmatthiasgrimm if($parent == $id) { 532a197105eSmatthiasgrimm $pos = strrpos(getNS($id), ':'); 533a197105eSmatthiasgrimm $parent = substr($parent, 0, $pos).':'; 534a197105eSmatthiasgrimm resolve_pageid('', $parent, $exists); 535377f9e97SAndreas Gohr if($parent == $id) return false; 536a197105eSmatthiasgrimm } 537377f9e97SAndreas Gohr return $parent; 538a3ec5f4aSmatthiasgrimm} 539a3ec5f4aSmatthiasgrimm 540a3ec5f4aSmatthiasgrimm/** 5416b13307fSandi * Print one of the buttons 5426b13307fSandi * 543a453d131SAdrian Lang * @author Adrian Lang <mail@adrianlang.de> 544a453d131SAdrian Lang * @see tpl_get_action 545e0c26282SGerrit Uitslag * 546e0c26282SGerrit Uitslag * @param string $type 547e0c26282SGerrit Uitslag * @param bool $return 548e0c26282SGerrit Uitslag * @return bool|string html, or false if no data, true if printed 5496b13307fSandi */ 5501af98a77SAnika Henkefunction tpl_button($type, $return = false) { 551a453d131SAdrian Lang $data = tpl_get_action($type); 552a453d131SAdrian Lang if($data === false) { 553a453d131SAdrian Lang return false; 554a453d131SAdrian Lang } elseif(!is_array($data)) { 555a453d131SAdrian Lang $out = sprintf($data, 'button'); 556409d7af7SAndreas Gohr } else { 557ac7a515fSAndreas Gohr /** 558ac7a515fSAndreas Gohr * @var string $accesskey 559ac7a515fSAndreas Gohr * @var string $id 560ac7a515fSAndreas Gohr * @var string $method 561ac7a515fSAndreas Gohr * @var array $params 562ac7a515fSAndreas Gohr */ 563a453d131SAdrian Lang extract($data); 564a453d131SAdrian Lang if($id === '#dokuwiki__top') { 565a453d131SAdrian Lang $out = html_topbtn(); 566409d7af7SAndreas Gohr } else { 567a453d131SAdrian Lang $out = html_btn($type, $id, $accesskey, $params, $method); 568409d7af7SAndreas Gohr } 569409d7af7SAndreas Gohr } 5701af98a77SAnika Henke if($return) return $out; 571a453d131SAdrian Lang echo $out; 572a453d131SAdrian Lang return true; 5736b13307fSandi} 5746b13307fSandi 5756b13307fSandi/** 576ed630903Sandi * Like the action buttons but links 577ed630903Sandi * 578a453d131SAdrian Lang * @author Adrian Lang <mail@adrianlang.de> 579a453d131SAdrian Lang * @see tpl_get_action 580e0c26282SGerrit Uitslag * 58142ea7f44SGerrit Uitslag * @param string $type action command 582e0c26282SGerrit Uitslag * @param string $pre prefix of link 583e0c26282SGerrit Uitslag * @param string $suf suffix of link 584e0c26282SGerrit Uitslag * @param string $inner innerHML of link 58521d806cdSGerrit Uitslag * @param bool $return if true it returns html, otherwise prints 586e0c26282SGerrit Uitslag * @return bool|string html or false if no data, true if printed 587a453d131SAdrian Lang */ 588a453d131SAdrian Langfunction tpl_actionlink($type, $pre = '', $suf = '', $inner = '', $return = false) { 589a453d131SAdrian Lang global $lang; 590a453d131SAdrian Lang $data = tpl_get_action($type); 591a453d131SAdrian Lang if($data === false) { 592a453d131SAdrian Lang return false; 593a453d131SAdrian Lang } elseif(!is_array($data)) { 594a453d131SAdrian Lang $out = sprintf($data, 'link'); 595a453d131SAdrian Lang } else { 596ac7a515fSAndreas Gohr /** 597ac7a515fSAndreas Gohr * @var string $accesskey 598ac7a515fSAndreas Gohr * @var string $id 599ac7a515fSAndreas Gohr * @var string $method 600b1af9014SChristopher Smith * @var bool $nofollow 601ac7a515fSAndreas Gohr * @var array $params 602becfa414SGerrit Uitslag * @var string $replacement 603ac7a515fSAndreas Gohr */ 604a453d131SAdrian Lang extract($data); 605a453d131SAdrian Lang if(strpos($id, '#') === 0) { 606a453d131SAdrian Lang $linktarget = $id; 607a453d131SAdrian Lang } else { 608a453d131SAdrian Lang $linktarget = wl($id, $params); 609a453d131SAdrian Lang } 610a453d131SAdrian Lang $caption = $lang['btn_'.$type]; 611becfa414SGerrit Uitslag if(strpos($caption, '%s')){ 612becfa414SGerrit Uitslag $caption = sprintf($caption, $replacement); 613becfa414SGerrit Uitslag } 614c7e90e3fSAnika Henke $akey = $addTitle = ''; 615c7e90e3fSAnika Henke if($accesskey) { 616c7e90e3fSAnika Henke $akey = 'accesskey="'.$accesskey.'" '; 617c7e90e3fSAnika Henke $addTitle = ' ['.strtoupper($accesskey).']'; 618c7e90e3fSAnika Henke } 619b1af9014SChristopher Smith $rel = $nofollow ? 'rel="nofollow" ' : ''; 620ac7a515fSAndreas Gohr $out = tpl_link( 621ac7a515fSAndreas Gohr $linktarget, $pre.(($inner) ? $inner : $caption).$suf, 622a453d131SAdrian Lang 'class="action '.$type.'" '. 623b1af9014SChristopher Smith $akey.$rel. 624e0c26282SGerrit Uitslag 'title="'.hsc($caption).$addTitle.'"', true 625ac7a515fSAndreas Gohr ); 626a453d131SAdrian Lang } 627a453d131SAdrian Lang if($return) return $out; 628a453d131SAdrian Lang echo $out; 629a453d131SAdrian Lang return true; 630a453d131SAdrian Lang} 631a453d131SAdrian Lang 632a453d131SAdrian Lang/** 633a453d131SAdrian Lang * Check the actions and get data for buttons and links 634ed630903Sandi * 635a453d131SAdrian Lang * Available actions are 636a453d131SAdrian Lang * 637a453d131SAdrian Lang * edit - edit/create/show/draft 638ed630903Sandi * history - old revisions 639ed630903Sandi * recent - recent changes 640a453d131SAdrian Lang * login - login/logout - if ACL enabled 641a453d131SAdrian Lang * profile - user profile (if logged in) 642ed630903Sandi * index - The index 643ed630903Sandi * admin - admin page - if enough rights 644a453d131SAdrian Lang * top - back to top 645a453d131SAdrian Lang * back - back to parent - if available 646bbd37938SAndreas Gohr * backlink - links to the list of backlinks 647a453d131SAdrian Lang * subscribe/subscription- subscribe/unsubscribe 648ed630903Sandi * 649ed630903Sandi * @author Andreas Gohr <andi@splitbrain.org> 650a3ec5f4aSmatthiasgrimm * @author Matthias Grimm <matthiasgrimm@users.sourceforge.net> 651a453d131SAdrian Lang * @author Adrian Lang <mail@adrianlang.de> 652e0c26282SGerrit Uitslag * 653ac7a515fSAndreas Gohr * @param string $type 654ac7a515fSAndreas Gohr * @return array|bool|string 655ed630903Sandi */ 656a453d131SAdrian Langfunction tpl_get_action($type) { 657ed630903Sandi global $ID; 658ed630903Sandi global $INFO; 659ed630903Sandi global $REV; 660ed630903Sandi global $ACT; 661b1af9014SChristopher Smith global $conf; 662585bf44eSChristopher Smith /** @var Input $INPUT */ 663585bf44eSChristopher Smith global $INPUT; 664ed630903Sandi 66575e487e9SAndreas Gohr // check disabled actions and fix the badly named ones 666a453d131SAdrian Lang if($type == 'history') $type = 'revisions'; 6674c4b65c8SMichael Hamann if ($type == 'subscription') $type = 'subscribe'; 668a453d131SAdrian Lang if(!actionOK($type)) return false; 669409d7af7SAndreas Gohr 670a453d131SAdrian Lang $accesskey = null; 6716709e843SAdrian Lang $id = $ID; 672a453d131SAdrian Lang $method = 'get'; 673a453d131SAdrian Lang $params = array('do' => $type); 674b1af9014SChristopher Smith $nofollow = true; 675becfa414SGerrit Uitslag $replacement = ''; 6767b4365a7SGerrit Uitslag 6777b4365a7SGerrit Uitslag $unknown = false; 678ed630903Sandi switch($type) { 679ed630903Sandi case 'edit': 6800b17fdc6SAndreas Gohr // most complicated type - we need to decide on current action 681ed630903Sandi if($ACT == 'show' || $ACT == 'search') { 682a453d131SAdrian Lang $method = 'post'; 683ed630903Sandi if($INFO['writable']) { 684a453d131SAdrian Lang $accesskey = 'e'; 685b8a111f5SMichael Klier if(!empty($INFO['draft'])) { 6866709e843SAdrian Lang $type = 'draft'; 687a453d131SAdrian Lang $params['do'] = 'draft'; 688b8a111f5SMichael Klier } else { 689a453d131SAdrian Lang $params['rev'] = $REV; 690a453d131SAdrian Lang if(!$INFO['exists']) { 6916709e843SAdrian Lang $type = 'create'; 692ed630903Sandi } 693b8a111f5SMichael Klier } 694ed630903Sandi } else { 695a453d131SAdrian Lang if(!actionOK('source')) return false; //pseudo action 696a453d131SAdrian Lang $params['rev'] = $REV; 6976709e843SAdrian Lang $type = 'source'; 698a453d131SAdrian Lang $accesskey = 'v'; 699ed630903Sandi } 700ed630903Sandi } else { 701d30d4913SChristopher Smith $params = array('do' => ''); 7026709e843SAdrian Lang $type = 'show'; 703a453d131SAdrian Lang $accesskey = 'v'; 704ed630903Sandi } 7051af98a77SAnika Henke break; 706a453d131SAdrian Lang case 'revisions': 7076709e843SAdrian Lang $type = 'revs'; 708a453d131SAdrian Lang $accesskey = 'o'; 7091af98a77SAnika Henke break; 710ed630903Sandi case 'recent': 711a453d131SAdrian Lang $accesskey = 'r'; 7121af98a77SAnika Henke break; 713ed630903Sandi case 'index': 714a453d131SAdrian Lang $accesskey = 'x'; 715b1af9014SChristopher Smith // allow searchbots to get to the sitemap from the homepage (when dokuwiki isn't providing a sitemap.xml) 716b1af9014SChristopher Smith if ($conf['start'] == $ID && !$conf['sitemap']) { 717b1af9014SChristopher Smith $nofollow = false; 718b1af9014SChristopher Smith } 7191af98a77SAnika Henke break; 720ed630903Sandi case 'top': 721076f0d72SAnika Henke $accesskey = 't'; 722d30d4913SChristopher Smith $params = array('do' => ''); 723a453d131SAdrian Lang $id = '#dokuwiki__top'; 7241af98a77SAnika Henke break; 725a3ec5f4aSmatthiasgrimm case 'back': 726a453d131SAdrian Lang $parent = tpl_getparent($ID); 727a453d131SAdrian Lang if(!$parent) { 728a453d131SAdrian Lang return false; 729a3ec5f4aSmatthiasgrimm } 730a453d131SAdrian Lang $id = $parent; 731d30d4913SChristopher Smith $params = array('do' => ''); 732a453d131SAdrian Lang $accesskey = 'b'; 7331af98a77SAnika Henke break; 734becfa414SGerrit Uitslag case 'img_backto': 735becfa414SGerrit Uitslag $params = array(); 736becfa414SGerrit Uitslag $accesskey = 'b'; 737becfa414SGerrit Uitslag $replacement = $ID; 738becfa414SGerrit Uitslag break; 739ed630903Sandi case 'login': 740a453d131SAdrian Lang $params['sectok'] = getSecurityToken(); 741585bf44eSChristopher Smith if($INPUT->server->has('REMOTE_USER')) { 7423a48618aSAnika Henke if(!actionOK('logout')) { 7432380e8a8SAdrian Lang return false; 7442380e8a8SAdrian Lang } 745a453d131SAdrian Lang $params['do'] = 'logout'; 746a453d131SAdrian Lang $type = 'logout'; 747bf413a4eSAnika Henke } 748bf413a4eSAnika Henke break; 749bf413a4eSAnika Henke case 'register': 750585bf44eSChristopher Smith if($INPUT->server->str('REMOTE_USER')) { 751bf413a4eSAnika Henke return false; 752bf413a4eSAnika Henke } 753bf413a4eSAnika Henke break; 754bf413a4eSAnika Henke case 'resendpwd': 755585bf44eSChristopher Smith if($INPUT->server->str('REMOTE_USER')) { 756bf413a4eSAnika Henke return false; 757ed630903Sandi } 7581af98a77SAnika Henke break; 759ed630903Sandi case 'admin': 760a453d131SAdrian Lang if(!$INFO['ismanager']) { 761a453d131SAdrian Lang return false; 762c059e1a6SAndreas Gohr } 7631af98a77SAnika Henke break; 7641246e016SAndreas Gohr case 'revert': 765a453d131SAdrian Lang if(!$INFO['ismanager'] || !$REV || !$INFO['writable']) { 766a453d131SAdrian Lang return false; 7671246e016SAndreas Gohr } 768a453d131SAdrian Lang $params['rev'] = $REV; 769a453d131SAdrian Lang $params['sectok'] = getSecurityToken(); 7701246e016SAndreas Gohr break; 7716709e843SAdrian Lang case 'subscribe': 772585bf44eSChristopher Smith if(!$INPUT->server->str('REMOTE_USER')) { 773a453d131SAdrian Lang return false; 774b158d625SSteven Danz } 7751af98a77SAnika Henke break; 776f00151b4Schris case 'backlink': 7771af98a77SAnika Henke break; 7788b06d178Schris case 'profile': 779585bf44eSChristopher Smith if(!$INPUT->server->has('REMOTE_USER')) { 780a453d131SAdrian Lang return false; 7818b06d178Schris } 7821af98a77SAnika Henke break; 783b9eb2e61SKate Arzamastseva case 'media': 784d08527abSAnika Henke $params['ns'] = getNS($ID); 785b9eb2e61SKate Arzamastseva break; 786becfa414SGerrit Uitslag case 'mediaManager': 787becfa414SGerrit Uitslag // View image in media manager 788becfa414SGerrit Uitslag global $IMG; 789becfa414SGerrit Uitslag $imgNS = getNS($IMG); 790becfa414SGerrit Uitslag $authNS = auth_quickaclcheck("$imgNS:*"); 791becfa414SGerrit Uitslag if ($authNS < AUTH_UPLOAD) { 792becfa414SGerrit Uitslag return false; 793becfa414SGerrit Uitslag } 794becfa414SGerrit Uitslag $params = array( 795becfa414SGerrit Uitslag 'ns' => $imgNS, 796becfa414SGerrit Uitslag 'image' => $IMG, 797becfa414SGerrit Uitslag 'do' => 'media' 798becfa414SGerrit Uitslag ); 799becfa414SGerrit Uitslag //$type = 'media'; 800becfa414SGerrit Uitslag break; 801ed630903Sandi default: 8027b4365a7SGerrit Uitslag //unknown type 8037b4365a7SGerrit Uitslag $unknown = true; 804ed630903Sandi } 8057b4365a7SGerrit Uitslag 8067b4365a7SGerrit Uitslag $data = compact('accesskey', 'type', 'id', 'method', 'params', 'nofollow', 'replacement'); 8077b4365a7SGerrit Uitslag 8083131073dSGerrit Uitslag $evt = new Doku_Event('TPL_ACTION_GET', $data); 8097b4365a7SGerrit Uitslag if($evt->advise_before()) { 8107b4365a7SGerrit Uitslag //handle unknown types 8117b4365a7SGerrit Uitslag if($unknown) { 81238d2ca46SGerrit Uitslag $data = '[unknown %s type]'; 8137b4365a7SGerrit Uitslag } 8147b4365a7SGerrit Uitslag } 8157b4365a7SGerrit Uitslag $evt->advise_after(); 8167b4365a7SGerrit Uitslag unset($evt); 8177b4365a7SGerrit Uitslag 8187b4365a7SGerrit Uitslag return $data; 819ed630903Sandi} 820ed630903Sandi 821ed630903Sandi/** 82201f17825SAnika Henke * Wrapper around tpl_button() and tpl_actionlink() 82301f17825SAnika Henke * 82401f17825SAnika Henke * @author Anika Henke <anika@selfthinker.org> 82542ea7f44SGerrit Uitslag * 82642ea7f44SGerrit Uitslag * @param string $type action command 827ac7a515fSAndreas Gohr * @param bool $link link or form button? 828e0c26282SGerrit Uitslag * @param string|bool $wrapper HTML element wrapper 829ac7a515fSAndreas Gohr * @param bool $return return or print 830ac7a515fSAndreas Gohr * @param string $pre prefix for links 831ac7a515fSAndreas Gohr * @param string $suf suffix for links 832ac7a515fSAndreas Gohr * @param string $inner inner HTML for links 833ac7a515fSAndreas Gohr * @return bool|string 83401f17825SAnika Henke */ 835ac7a515fSAndreas Gohrfunction tpl_action($type, $link = false, $wrapper = false, $return = false, $pre = '', $suf = '', $inner = '') { 83601f17825SAnika Henke $out = ''; 837ac7a515fSAndreas Gohr if($link) { 838e0c26282SGerrit Uitslag $out .= tpl_actionlink($type, $pre, $suf, $inner, true); 839ac7a515fSAndreas Gohr } else { 840e0c26282SGerrit Uitslag $out .= tpl_button($type, true); 841ac7a515fSAndreas Gohr } 84201f17825SAnika Henke if($out && $wrapper) $out = "<$wrapper>$out</$wrapper>"; 84301f17825SAnika Henke 84401f17825SAnika Henke if($return) return $out; 84501f17825SAnika Henke print $out; 84601f17825SAnika Henke return $out ? true : false; 84701f17825SAnika Henke} 84801f17825SAnika Henke 84901f17825SAnika Henke/** 8506b13307fSandi * Print the search form 8516b13307fSandi * 85272645b75SAndreas Gohr * If the first parameter is given a div with the ID 'qsearch_out' will 85372645b75SAndreas Gohr * be added which instructs the ajax pagequicksearch to kick in and place 85472645b75SAndreas Gohr * its output into this div. The second parameter controls the propritary 85572645b75SAndreas Gohr * attribute autocomplete. If set to false this attribute will be set with an 85672645b75SAndreas Gohr * value of "off" to instruct the browser to disable it's own built in 85772645b75SAndreas Gohr * autocompletion feature (MSIE and Firefox) 85872645b75SAndreas Gohr * 8596b13307fSandi * @author Andreas Gohr <andi@splitbrain.org> 86042ea7f44SGerrit Uitslag * 861ac7a515fSAndreas Gohr * @param bool $ajax 862ac7a515fSAndreas Gohr * @param bool $autocomplete 863ac7a515fSAndreas Gohr * @return bool 8646b13307fSandi */ 86572645b75SAndreas Gohrfunction tpl_searchform($ajax = true, $autocomplete = true) { 8666b13307fSandi global $lang; 867c1e3b7d9Smatthiasgrimm global $ACT; 868ad4aaef7SAndreas Gohr global $QUERY; 869c1e3b7d9Smatthiasgrimm 870670ff54eSchris // don't print the search form if search action has been disabled 87164276bbcSarbrk1 if(!actionOK('search')) return false; 872670ff54eSchris 8739805efa0SAnika Henke print '<form action="'.wl().'" accept-charset="utf-8" class="search" id="dw__search" method="get" role="search"><div class="no">'; 8746b13307fSandi print '<input type="hidden" name="do" value="search" />'; 875c1e3b7d9Smatthiasgrimm print '<input type="text" '; 876ad4aaef7SAndreas Gohr if($ACT == 'search') print 'value="'.htmlspecialchars($QUERY).'" '; 877001ea14eSRainbow Spike print 'placeholder="'.$lang['btn_search'].'" '; 87872645b75SAndreas Gohr if(!$autocomplete) print 'autocomplete="off" '; 87907493d05SAnika Henke print 'id="qsearch__in" accesskey="f" name="id" class="edit" title="[F]" />'; 880ae614416SAnika Henke print '<button type="submit" title="'.$lang['btn_search'].'">'.$lang['btn_search'].'</button>'; 88124a33b42SAndreas Gohr if($ajax) print '<div id="qsearch__out" class="ajax_qsearch JSpopup"></div>'; 8824beabca9SAnika Henke print '</div></form>'; 88354e95700STom N Harris return true; 8846b13307fSandi} 8856b13307fSandi 8866b13307fSandi/** 8876b13307fSandi * Print the breadcrumbs trace 8886b13307fSandi * 8896b13307fSandi * @author Andreas Gohr <andi@splitbrain.org> 89042ea7f44SGerrit Uitslag * 891ac7a515fSAndreas Gohr * @param string $sep Separator between entries 892ac7a515fSAndreas Gohr * @return bool 8936b13307fSandi */ 894e260f93bSAnika Henkefunction tpl_breadcrumbs($sep = '•') { 8956b13307fSandi global $lang; 8966b13307fSandi global $conf; 8976b13307fSandi 8986b13307fSandi //check if enabled 899359fab8bSMichael Hamann if(!$conf['breadcrumbs']) return false; 9006b13307fSandi 9016b13307fSandi $crumbs = breadcrumbs(); //setup crumb trace 902265e3787Sandi 9032979a10bSKatriel Traum $crumbs_sep = ' <span class="bcsep">'.$sep.'</span> '; 904265e3787Sandi 90540eb54bbSjan //render crumbs, highlight the last one 906fde860beSGerrit Uitslag print '<span class="bchead">'.$lang['breadcrumb'].'</span>'; 90740eb54bbSjan $last = count($crumbs); 90840eb54bbSjan $i = 0; 909a77f5846Sjan foreach($crumbs as $id => $name) { 91040eb54bbSjan $i++; 9112979a10bSKatriel Traum echo $crumbs_sep; 91292795d04Sandi if($i == $last) print '<span class="curid">'; 913d317fb5dSAnika Henke print '<bdi>'; 914e26fd1eeSAndreas Gohr tpl_link(wl($id), hsc($name), 'class="breadcrumbs" title="'.$id.'"'); 915d317fb5dSAnika Henke print '</bdi>'; 91692795d04Sandi if($i == $last) print '</span>'; 9176b13307fSandi } 91854e95700STom N Harris return true; 9196b13307fSandi} 9206b13307fSandi 9216b13307fSandi/** 9221734437eSandi * Hierarchical breadcrumbs 9231734437eSandi * 92431e187f8SSean Coates * This code was suggested as replacement for the usual breadcrumbs. 9251734437eSandi * It only makes sense with a deep site structure. 9261734437eSandi * 9271734437eSandi * @author Andreas Gohr <andi@splitbrain.org> 9286bd812dfSNigel McNie * @author Nigel McNie <oracle.shinoda@gmail.com> 92931e187f8SSean Coates * @author Sean Coates <sean@caedmon.net> 930f46c9e83SAnika Henke * @author <fredrik@averpil.com> 93108d7a575SAndreas Gohr * @todo May behave strangely in RTL languages 93242ea7f44SGerrit Uitslag * 933ac7a515fSAndreas Gohr * @param string $sep Separator between entries 934ac7a515fSAndreas Gohr * @return bool 9351734437eSandi */ 93608d7a575SAndreas Gohrfunction tpl_youarehere($sep = ' » ') { 9371734437eSandi global $conf; 9381734437eSandi global $ID; 9391734437eSandi global $lang; 9401734437eSandi 94131e187f8SSean Coates // check if enabled 94254e95700STom N Harris if(!$conf['youarehere']) return false; 9431734437eSandi 9441734437eSandi $parts = explode(':', $ID); 945796bafb3SAndreas Gohr $count = count($parts); 9461734437eSandi 94708d7a575SAndreas Gohr echo '<span class="bchead">'.$lang['youarehere'].' </span>'; 9483940c519SMark 94908d7a575SAndreas Gohr // always print the startpage 95008d7a575SAndreas Gohr echo '<span class="home">'; 95108d7a575SAndreas Gohr tpl_pagelink(':'.$conf['start']); 95208d7a575SAndreas Gohr echo '</span>'; 953796bafb3SAndreas Gohr 954796bafb3SAndreas Gohr // print intermediate namespace links 955796bafb3SAndreas Gohr $part = ''; 956796bafb3SAndreas Gohr for($i = 0; $i < $count - 1; $i++) { 957796bafb3SAndreas Gohr $part .= $parts[$i].':'; 958796bafb3SAndreas Gohr $page = $part; 959796bafb3SAndreas Gohr if($page == $conf['start']) continue; // Skip startpage 960796bafb3SAndreas Gohr 96108d7a575SAndreas Gohr // output 96208d7a575SAndreas Gohr echo $sep; 96308d7a575SAndreas Gohr tpl_pagelink($page); 96431e187f8SSean Coates } 9651734437eSandi 966796bafb3SAndreas Gohr // print current page, skipping start page, skipping for namespace index 967e013f48dSAnika Henke resolve_pageid('', $page, $exists); 96808d7a575SAndreas Gohr if(isset($page) && $page == $part.$parts[$i]) return true; 969796bafb3SAndreas Gohr $page = $part.$parts[$i]; 97008d7a575SAndreas Gohr if($page == $conf['start']) return true; 97108d7a575SAndreas Gohr echo $sep; 97208d7a575SAndreas Gohr tpl_pagelink($page); 97354e95700STom N Harris return true; 9741734437eSandi} 9751734437eSandi 9761734437eSandi/** 9776b13307fSandi * Print info if the user is logged in 978a2488c3cSMatthias Grimm * and show full name in that case 9796b13307fSandi * 9806b13307fSandi * Could be enhanced with a profile link in future? 9816b13307fSandi * 9826b13307fSandi * @author Andreas Gohr <andi@splitbrain.org> 98342ea7f44SGerrit Uitslag * 984ac7a515fSAndreas Gohr * @return bool 9856b13307fSandi */ 9866b13307fSandifunction tpl_userinfo() { 9876b13307fSandi global $lang; 988585bf44eSChristopher Smith /** @var Input $INPUT */ 989585bf44eSChristopher Smith global $INPUT; 990585bf44eSChristopher Smith 991585bf44eSChristopher Smith if($INPUT->server->str('REMOTE_USER')) { 992fde860beSGerrit Uitslag print $lang['loggedinas'].' '.userlink(); 99354e95700STom N Harris return true; 99454e95700STom N Harris } 99554e95700STom N Harris return false; 9966b13307fSandi} 9976b13307fSandi 9986b13307fSandi/** 9996b13307fSandi * Print some info about the current page 10006b13307fSandi * 10016b13307fSandi * @author Andreas Gohr <andi@splitbrain.org> 100242ea7f44SGerrit Uitslag * 1003ac7a515fSAndreas Gohr * @param bool $ret return content instead of printing it 1004ac7a515fSAndreas Gohr * @return bool|string 10056b13307fSandi */ 10064b0d3916SAndreas Gohrfunction tpl_pageinfo($ret = false) { 10076b13307fSandi global $conf; 10086b13307fSandi global $lang; 10096b13307fSandi global $INFO; 1010c6e92a3cSDavid Lorentsen global $ID; 1011c6e92a3cSDavid Lorentsen 1012c6e92a3cSDavid Lorentsen // return if we are not allowed to view the page 1013ac7a515fSAndreas Gohr if(!auth_quickaclcheck($ID)) { 1014ac7a515fSAndreas Gohr return false; 1015ac7a515fSAndreas Gohr } 10166b13307fSandi 10176b13307fSandi // prepare date and path 10186b13307fSandi $fn = $INFO['filepath']; 10196b13307fSandi if(!$conf['fullpath']) { 1020613bca54SAndreas Gohr if($INFO['rev']) { 102150fbebceSGina Haeussge $fn = str_replace(fullpath($conf['olddir']).'/', '', $fn); 10226b13307fSandi } else { 102350fbebceSGina Haeussge $fn = str_replace(fullpath($conf['datadir']).'/', '', $fn); 10246b13307fSandi } 10256b13307fSandi } 1026bee6dc82Sandi $fn = utf8_decodeFN($fn); 1027f2263577SAndreas Gohr $date = dformat($INFO['lastmod']); 10286b13307fSandi 1029faecdfdfSAndreas Gohr // print it 1030faecdfdfSAndreas Gohr if($INFO['exists']) { 10314b0d3916SAndreas Gohr $out = ''; 1032d317fb5dSAnika Henke $out .= '<bdi>'.$fn.'</bdi>'; 1033e260f93bSAnika Henke $out .= ' · '; 10344b0d3916SAndreas Gohr $out .= $lang['lastmod']; 1035fde860beSGerrit Uitslag $out .= ' '; 10364b0d3916SAndreas Gohr $out .= $date; 10376b13307fSandi if($INFO['editor']) { 10384b0d3916SAndreas Gohr $out .= ' '.$lang['by'].' '; 1039d317fb5dSAnika Henke $out .= '<bdi>'.editorinfo($INFO['editor']).'</bdi>'; 10405aa52fafSBen Coburn } else { 10414b0d3916SAndreas Gohr $out .= ' ('.$lang['external_edit'].')'; 10426b13307fSandi } 10436b13307fSandi if($INFO['locked']) { 1044e260f93bSAnika Henke $out .= ' · '; 10454b0d3916SAndreas Gohr $out .= $lang['lockedby']; 1046fde860beSGerrit Uitslag $out .= ' '; 1047d317fb5dSAnika Henke $out .= '<bdi>'.editorinfo($INFO['locked']).'</bdi>'; 10486b13307fSandi } 10494b0d3916SAndreas Gohr if($ret) { 10504b0d3916SAndreas Gohr return $out; 10514b0d3916SAndreas Gohr } else { 10524b0d3916SAndreas Gohr echo $out; 105354e95700STom N Harris return true; 10546b13307fSandi } 10554b0d3916SAndreas Gohr } 105654e95700STom N Harris return false; 10576b13307fSandi} 10586b13307fSandi 1059820fa24bSandi/** 1060a6598f23SBen Coburn * Prints or returns the name of the given page (current one if none given). 106187c434ceSAndreas Gohr * 106287c434ceSAndreas Gohr * If useheading is enabled this will use the first headline else 1063a6598f23SBen Coburn * the given ID is used. 106487c434ceSAndreas Gohr * 106587c434ceSAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 106642ea7f44SGerrit Uitslag * 1067ac7a515fSAndreas Gohr * @param string $id page id 1068ac7a515fSAndreas Gohr * @param bool $ret return content instead of printing 1069ac7a515fSAndreas Gohr * @return bool|string 107087c434ceSAndreas Gohr */ 1071a6598f23SBen Coburnfunction tpl_pagetitle($id = null, $ret = false) { 1072c248bda1SChristopher Smith global $ACT, $INPUT, $conf, $lang; 1073fffeeafeSChristopher Smith 107487c434ceSAndreas Gohr if(is_null($id)) { 107587c434ceSAndreas Gohr global $ID; 107687c434ceSAndreas Gohr $id = $ID; 107787c434ceSAndreas Gohr } 107887c434ceSAndreas Gohr 107987c434ceSAndreas Gohr $name = $id; 1080fe9ec250SChris Smith if(useHeading('navigation')) { 1081fffeeafeSChristopher Smith $first_heading = p_get_first_heading($id); 1082fffeeafeSChristopher Smith if($first_heading) $name = $first_heading; 1083fffeeafeSChristopher Smith } 1084fffeeafeSChristopher Smith 1085fffeeafeSChristopher Smith // default page title is the page name, modify with the current action 1086fffeeafeSChristopher Smith switch ($ACT) { 1087fffeeafeSChristopher Smith // admin functions 1088fffeeafeSChristopher Smith case 'admin' : 1089fffeeafeSChristopher Smith $page_title = $lang['btn_admin']; 1090fffeeafeSChristopher Smith // try to get the plugin name 1091a61966c5SChristopher Smith /** @var $plugin DokuWiki_Admin_Plugin */ 1092a61966c5SChristopher Smith if ($plugin = plugin_getRequestAdminPlugin()){ 1093c248bda1SChristopher Smith $plugin_title = $plugin->getMenuText($conf['lang']); 1094a61966c5SChristopher Smith $page_title = $plugin_title ? $plugin_title : $plugin->getPluginName(); 1095fffeeafeSChristopher Smith } 1096fffeeafeSChristopher Smith break; 1097fffeeafeSChristopher Smith 1098fffeeafeSChristopher Smith // user functions 1099fffeeafeSChristopher Smith case 'login' : 1100fffeeafeSChristopher Smith case 'profile' : 1101fffeeafeSChristopher Smith case 'register' : 1102fffeeafeSChristopher Smith case 'resendpwd' : 1103fffeeafeSChristopher Smith $page_title = $lang['btn_'.$ACT]; 1104fffeeafeSChristopher Smith break; 1105fffeeafeSChristopher Smith 1106fffeeafeSChristopher Smith // wiki functions 1107fffeeafeSChristopher Smith case 'search' : 1108fffeeafeSChristopher Smith case 'index' : 1109fffeeafeSChristopher Smith $page_title = $lang['btn_'.$ACT]; 1110fffeeafeSChristopher Smith break; 1111fffeeafeSChristopher Smith 1112fffeeafeSChristopher Smith // page functions 1113fffeeafeSChristopher Smith case 'edit' : 1114fffeeafeSChristopher Smith $page_title = "✎ ".$name; 1115fffeeafeSChristopher Smith break; 1116fffeeafeSChristopher Smith 1117fffeeafeSChristopher Smith case 'revisions' : 1118fffeeafeSChristopher Smith $page_title = $name . ' - ' . $lang['btn_revs']; 1119fffeeafeSChristopher Smith break; 1120fffeeafeSChristopher Smith 1121fffeeafeSChristopher Smith case 'backlink' : 1122fffeeafeSChristopher Smith case 'recent' : 1123fffeeafeSChristopher Smith case 'subscribe' : 1124fffeeafeSChristopher Smith $page_title = $name . ' - ' . $lang['btn_'.$ACT]; 1125fffeeafeSChristopher Smith break; 1126fffeeafeSChristopher Smith 1127fffeeafeSChristopher Smith default : // SHOW and anything else not included 1128fffeeafeSChristopher Smith $page_title = $name; 112987c434ceSAndreas Gohr } 1130a6598f23SBen Coburn 1131a6598f23SBen Coburn if($ret) { 1132fffeeafeSChristopher Smith return hsc($page_title); 1133a6598f23SBen Coburn } else { 1134fffeeafeSChristopher Smith print hsc($page_title); 113554e95700STom N Harris return true; 113687c434ceSAndreas Gohr } 1137a6598f23SBen Coburn} 1138340756e4Sandi 113955efc227SAndreas Gohr/** 114055efc227SAndreas Gohr * Returns the requested EXIF/IPTC tag from the current image 114155efc227SAndreas Gohr * 114255efc227SAndreas Gohr * If $tags is an array all given tags are tried until a 114355efc227SAndreas Gohr * value is found. If no value is found $alt is returned. 114455efc227SAndreas Gohr * 114555efc227SAndreas Gohr * Which texts are known is defined in the functions _exifTagNames 114655efc227SAndreas Gohr * and _iptcTagNames() in inc/jpeg.php (You need to prepend IPTC 114755efc227SAndreas Gohr * to the names of the latter one) 114855efc227SAndreas Gohr * 11493df72098SAndreas Gohr * Only allowed in: detail.php 115055efc227SAndreas Gohr * 115155efc227SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 115242ea7f44SGerrit Uitslag * 115321d806cdSGerrit Uitslag * @param array|string $tags tag or array of tags to try 1154ac7a515fSAndreas Gohr * @param string $alt alternative output if no data was found 1155e0c26282SGerrit Uitslag * @param null|string $src the image src, uses global $SRC if not given 1156ac7a515fSAndreas Gohr * @return string 115755efc227SAndreas Gohr */ 11583df72098SAndreas Gohrfunction tpl_img_getTag($tags, $alt = '', $src = null) { 115955efc227SAndreas Gohr // Init Exif Reader 116055efc227SAndreas Gohr global $SRC; 11613df72098SAndreas Gohr 11623df72098SAndreas Gohr if(is_null($src)) $src = $SRC; 11633df72098SAndreas Gohr 116455efc227SAndreas Gohr static $meta = null; 11653df72098SAndreas Gohr if(is_null($meta)) $meta = new JpegMeta($src); 116655efc227SAndreas Gohr if($meta === false) return $alt; 116788945224SChristopher Smith $info = cleanText($meta->getField($tags)); 116855efc227SAndreas Gohr if($info == false) return $alt; 116955efc227SAndreas Gohr return $info; 117055efc227SAndreas Gohr} 117155efc227SAndreas Gohr 117255efc227SAndreas Gohr/** 1173becfa414SGerrit Uitslag * Returns a description list of the metatags of the current image 1174becfa414SGerrit Uitslag * 1175becfa414SGerrit Uitslag * @return string html of description list 1176becfa414SGerrit Uitslag */ 1177becfa414SGerrit Uitslagfunction tpl_img_meta() { 1178becfa414SGerrit Uitslag global $lang; 1179becfa414SGerrit Uitslag 1180becfa414SGerrit Uitslag $tags = tpl_get_img_meta(); 1181becfa414SGerrit Uitslag 1182becfa414SGerrit Uitslag echo '<dl>'; 1183becfa414SGerrit Uitslag foreach($tags as $tag) { 1184becfa414SGerrit Uitslag $label = $lang[$tag['langkey']]; 1185fde860beSGerrit Uitslag if(!$label) $label = $tag['langkey'] . ':'; 1186becfa414SGerrit Uitslag 1187fde860beSGerrit Uitslag echo '<dt>'.$label.'</dt><dd>'; 1188becfa414SGerrit Uitslag if ($tag['type'] == 'date') { 1189becfa414SGerrit Uitslag echo dformat($tag['value']); 1190becfa414SGerrit Uitslag } else { 1191becfa414SGerrit Uitslag echo hsc($tag['value']); 1192becfa414SGerrit Uitslag } 1193becfa414SGerrit Uitslag echo '</dd>'; 1194becfa414SGerrit Uitslag } 1195becfa414SGerrit Uitslag echo '</dl>'; 1196becfa414SGerrit Uitslag} 1197becfa414SGerrit Uitslag 1198becfa414SGerrit Uitslag/** 1199becfa414SGerrit Uitslag * Returns metadata as configured in mediameta config file, ready for creating html 1200becfa414SGerrit Uitslag * 1201becfa414SGerrit Uitslag * @return array with arrays containing the entries: 1202becfa414SGerrit Uitslag * - string langkey key to lookup in the $lang var, if not found printed as is 1203becfa414SGerrit Uitslag * - string type type of value 1204becfa414SGerrit Uitslag * - string value tag value (unescaped) 1205becfa414SGerrit Uitslag */ 1206becfa414SGerrit Uitslagfunction tpl_get_img_meta() { 1207becfa414SGerrit Uitslag 1208becfa414SGerrit Uitslag $config_files = getConfigFiles('mediameta'); 1209becfa414SGerrit Uitslag foreach ($config_files as $config_file) { 121079e79377SAndreas Gohr if(file_exists($config_file)) { 1211becfa414SGerrit Uitslag include($config_file); 1212becfa414SGerrit Uitslag } 1213becfa414SGerrit Uitslag } 1214becfa414SGerrit Uitslag /** @var array $fields the included array with metadata */ 1215becfa414SGerrit Uitslag 1216becfa414SGerrit Uitslag $tags = array(); 1217becfa414SGerrit Uitslag foreach($fields as $tag){ 1218becfa414SGerrit Uitslag $t = array(); 1219becfa414SGerrit Uitslag if (!empty($tag[0])) { 1220becfa414SGerrit Uitslag $t = array($tag[0]); 1221becfa414SGerrit Uitslag } 1222becfa414SGerrit Uitslag if(is_array($tag[3])) { 1223becfa414SGerrit Uitslag $t = array_merge($t,$tag[3]); 1224becfa414SGerrit Uitslag } 1225becfa414SGerrit Uitslag $value = tpl_img_getTag($t); 1226becfa414SGerrit Uitslag if ($value) { 1227becfa414SGerrit Uitslag $tags[] = array('langkey' => $tag[1], 'type' => $tag[2], 'value' => $value); 1228becfa414SGerrit Uitslag } 1229becfa414SGerrit Uitslag } 1230becfa414SGerrit Uitslag return $tags; 1231becfa414SGerrit Uitslag} 1232becfa414SGerrit Uitslag 1233becfa414SGerrit Uitslag/** 123455efc227SAndreas Gohr * Prints the image with a link to the full sized version 123555efc227SAndreas Gohr * 123655efc227SAndreas Gohr * Only allowed in: detail.php 1237a02d2933SAndreas Gohr * 1238ac7a515fSAndreas Gohr * @triggers TPL_IMG_DISPLAY 1239a02d2933SAndreas Gohr * @param $maxwidth int - maximal width of the image 1240a02d2933SAndreas Gohr * @param $maxheight int - maximal height of the image 1241a02d2933SAndreas Gohr * @param $link bool - link to the orginal size? 1242a02d2933SAndreas Gohr * @param $params array - additional image attributes 124342ea7f44SGerrit Uitslag * @return bool Result of TPL_IMG_DISPLAY 124455efc227SAndreas Gohr */ 1245a02d2933SAndreas Gohrfunction tpl_img($maxwidth = 0, $maxheight = 0, $link = true, $params = null) { 124655efc227SAndreas Gohr global $IMG; 1247585bf44eSChristopher Smith /** @var Input $INPUT */ 1248ac7a515fSAndreas Gohr global $INPUT; 12495c2eed9aSlisps global $REV; 125065d3a5dbSAndreas Gohr $w = (int) tpl_img_getTag('File.Width'); 125165d3a5dbSAndreas Gohr $h = (int) tpl_img_getTag('File.Height'); 125255efc227SAndreas Gohr 125355efc227SAndreas Gohr //resize to given max values 125423a34783SAndreas Gohr $ratio = 1; 125523a34783SAndreas Gohr if($w >= $h) { 1256f8925855Sjoe.lapp if($maxwidth && $w >= $maxwidth) { 125755efc227SAndreas Gohr $ratio = $maxwidth / $w; 1258f8925855Sjoe.lapp } elseif($maxheight && $h > $maxheight) { 125955efc227SAndreas Gohr $ratio = $maxheight / $h; 126055efc227SAndreas Gohr } 126155efc227SAndreas Gohr } else { 1262f8925855Sjoe.lapp if($maxheight && $h >= $maxheight) { 126355efc227SAndreas Gohr $ratio = $maxheight / $h; 1264f8925855Sjoe.lapp } elseif($maxwidth && $w > $maxwidth) { 126555efc227SAndreas Gohr $ratio = $maxwidth / $w; 126655efc227SAndreas Gohr } 126755efc227SAndreas Gohr } 126855efc227SAndreas Gohr if($ratio) { 126955efc227SAndreas Gohr $w = floor($ratio * $w); 127055efc227SAndreas Gohr $h = floor($ratio * $h); 127155efc227SAndreas Gohr } 127255efc227SAndreas Gohr 12736de3759aSAndreas Gohr //prepare URLs 12745c2eed9aSlisps $url = ml($IMG, array('cache'=> $INPUT->str('cache'),'rev'=>$REV), true, '&'); 12755c2eed9aSlisps $src = ml($IMG, array('cache'=> $INPUT->str('cache'),'rev'=>$REV, 'w'=> $w, 'h'=> $h), true, '&'); 127655efc227SAndreas Gohr 12772684e50aSAndreas Gohr //prepare attributes 127855efc227SAndreas Gohr $alt = tpl_img_getTag('Simple.Title'); 1279a02d2933SAndreas Gohr if(is_null($params)) { 12802684e50aSAndreas Gohr $p = array(); 1281a02d2933SAndreas Gohr } else { 1282a02d2933SAndreas Gohr $p = $params; 1283a02d2933SAndreas Gohr } 12842684e50aSAndreas Gohr if($w) $p['width'] = $w; 12852684e50aSAndreas Gohr if($h) $p['height'] = $h; 12862684e50aSAndreas Gohr $p['class'] = 'img_detail'; 12872684e50aSAndreas Gohr if($alt) { 12882684e50aSAndreas Gohr $p['alt'] = $alt; 12892684e50aSAndreas Gohr $p['title'] = $alt; 12902684e50aSAndreas Gohr } else { 12912684e50aSAndreas Gohr $p['alt'] = ''; 12922684e50aSAndreas Gohr } 1293a02d2933SAndreas Gohr $p['src'] = $src; 129455efc227SAndreas Gohr 1295a02d2933SAndreas Gohr $data = array('url'=> ($link ? $url : null), 'params'=> $p); 1296a02d2933SAndreas Gohr return trigger_event('TPL_IMG_DISPLAY', $data, '_tpl_img_action', true); 1297a02d2933SAndreas Gohr} 1298a02d2933SAndreas Gohr 1299a02d2933SAndreas Gohr/** 1300a02d2933SAndreas Gohr * Default action for TPL_IMG_DISPLAY 1301ac7a515fSAndreas Gohr * 1302ac7a515fSAndreas Gohr * @param array $data 1303ac7a515fSAndreas Gohr * @return bool 1304a02d2933SAndreas Gohr */ 1305ac7a515fSAndreas Gohrfunction _tpl_img_action($data) { 130659f3611bSAnika Henke global $lang; 1307a02d2933SAndreas Gohr $p = buildAttributes($data['params']); 1308a02d2933SAndreas Gohr 130959f3611bSAnika Henke if($data['url']) print '<a href="'.hsc($data['url']).'" title="'.$lang['mediaview'].'">'; 1310a02d2933SAndreas Gohr print '<img '.$p.'/>'; 1311a02d2933SAndreas Gohr if($data['url']) print '</a>'; 131254e95700STom N Harris return true; 131355efc227SAndreas Gohr} 131455efc227SAndreas Gohr 13157367b368SAndreas Gohr/** 1316881f2ee2SAndreas Haerter * This function inserts a small gif which in reality is the indexer function. 13177367b368SAndreas Gohr * 13187367b368SAndreas Gohr * Should be called somewhere at the very end of the main.php 13197367b368SAndreas Gohr * template 1320ac7a515fSAndreas Gohr * 1321ac7a515fSAndreas Gohr * @return bool 13227367b368SAndreas Gohr */ 13237367b368SAndreas Gohrfunction tpl_indexerWebBug() { 13247367b368SAndreas Gohr global $ID; 13251dad36f5SAndreas Gohr 13267367b368SAndreas Gohr $p = array(); 1327b6c6979fSAndreas Gohr $p['src'] = DOKU_BASE.'lib/exe/indexer.php?id='.rawurlencode($ID). 1328e68c51baSAndreas Gohr '&'.time(); 1329881f2ee2SAndreas Haerter $p['width'] = 2; //no more 1x1 px image because we live in times of ad blockers... 13307367b368SAndreas Gohr $p['height'] = 1; 13317367b368SAndreas Gohr $p['alt'] = ''; 13327367b368SAndreas Gohr $att = buildAttributes($p); 13337367b368SAndreas Gohr print "<img $att />"; 133454e95700STom N Harris return true; 13357367b368SAndreas Gohr} 13367367b368SAndreas Gohr 133778d4e784SEsther Brunner/** 133878d4e784SEsther Brunner * tpl_getConf($id) 133978d4e784SEsther Brunner * 134078d4e784SEsther Brunner * use this function to access template configuration variables 1341ac7a515fSAndreas Gohr * 134217448fb8SChristopher Smith * @param string $id name of the value to access 134317448fb8SChristopher Smith * @param mixed $notset what to return if the setting is not available 134417448fb8SChristopher Smith * @return mixed 134578d4e784SEsther Brunner */ 134617448fb8SChristopher Smithfunction tpl_getConf($id, $notset=false) { 134778d4e784SEsther Brunner global $conf; 134817566ac6SAdrian Lang static $tpl_configloaded = false; 134978d4e784SEsther Brunner 135078d4e784SEsther Brunner $tpl = $conf['template']; 135178d4e784SEsther Brunner 135278d4e784SEsther Brunner if(!$tpl_configloaded) { 135378d4e784SEsther Brunner $tconf = tpl_loadConfig(); 135478d4e784SEsther Brunner if($tconf !== false) { 135578d4e784SEsther Brunner foreach($tconf as $key => $value) { 135678d4e784SEsther Brunner if(isset($conf['tpl'][$tpl][$key])) continue; 135778d4e784SEsther Brunner $conf['tpl'][$tpl][$key] = $value; 135878d4e784SEsther Brunner } 135978d4e784SEsther Brunner $tpl_configloaded = true; 136078d4e784SEsther Brunner } 136178d4e784SEsther Brunner } 136278d4e784SEsther Brunner 136317448fb8SChristopher Smith if(isset($conf['tpl'][$tpl][$id])){ 136478d4e784SEsther Brunner return $conf['tpl'][$tpl][$id]; 136578d4e784SEsther Brunner } 136678d4e784SEsther Brunner 136717448fb8SChristopher Smith return $notset; 136817448fb8SChristopher Smith} 136917448fb8SChristopher Smith 137078d4e784SEsther Brunner/** 137178d4e784SEsther Brunner * tpl_loadConfig() 1372ac7a515fSAndreas Gohr * 137378d4e784SEsther Brunner * reads all template configuration variables 137478d4e784SEsther Brunner * this function is automatically called by tpl_getConf() 1375ac7a515fSAndreas Gohr * 1376ac7a515fSAndreas Gohr * @return array 137778d4e784SEsther Brunner */ 137878d4e784SEsther Brunnerfunction tpl_loadConfig() { 137978d4e784SEsther Brunner 1380c4766956SAndreas Gohr $file = tpl_incdir().'/conf/default.php'; 138178d4e784SEsther Brunner $conf = array(); 138278d4e784SEsther Brunner 138379e79377SAndreas Gohr if(!file_exists($file)) return false; 138478d4e784SEsther Brunner 138578d4e784SEsther Brunner // load default config file 138678d4e784SEsther Brunner include($file); 138778d4e784SEsther Brunner 138878d4e784SEsther Brunner return $conf; 138978d4e784SEsther Brunner} 139078d4e784SEsther Brunner 139117566ac6SAdrian Lang// language methods 139217566ac6SAdrian Lang/** 139317566ac6SAdrian Lang * tpl_getLang($id) 139417566ac6SAdrian Lang * 139517566ac6SAdrian Lang * use this function to access template language variables 139642ea7f44SGerrit Uitslag * 139742ea7f44SGerrit Uitslag * @param string $id key of language string 139842ea7f44SGerrit Uitslag * @return string 139917566ac6SAdrian Lang */ 140017566ac6SAdrian Langfunction tpl_getLang($id) { 140117566ac6SAdrian Lang static $lang = array(); 140217566ac6SAdrian Lang 140317566ac6SAdrian Lang if(count($lang) === 0) { 1404dd7a6159SGerrit Uitslag global $conf, $config_cascade; // definitely don't invoke "global $lang" 1405dd7a6159SGerrit Uitslag 1406c4766956SAndreas Gohr $path = tpl_incdir() . 'lang/'; 140717566ac6SAdrian Lang 140817566ac6SAdrian Lang $lang = array(); 140917566ac6SAdrian Lang 141017566ac6SAdrian Lang // don't include once 141117566ac6SAdrian Lang @include($path . 'en/lang.php'); 1412dd7a6159SGerrit Uitslag foreach($config_cascade['lang']['template'] as $config_file) { 141379e79377SAndreas Gohr if(file_exists($config_file . $conf['template'] . '/en/lang.php')) { 1414dd7a6159SGerrit Uitslag include($config_file . $conf['template'] . '/en/lang.php'); 1415dd7a6159SGerrit Uitslag } 141617566ac6SAdrian Lang } 141717566ac6SAdrian Lang 1418dd7a6159SGerrit Uitslag if($conf['lang'] != 'en') { 1419dd7a6159SGerrit Uitslag @include($path . $conf['lang'] . '/lang.php'); 1420dd7a6159SGerrit Uitslag foreach($config_cascade['lang']['template'] as $config_file) { 142179e79377SAndreas Gohr if(file_exists($config_file . $conf['template'] . '/' . $conf['lang'] . '/lang.php')) { 1422dd7a6159SGerrit Uitslag include($config_file . $conf['template'] . '/' . $conf['lang'] . '/lang.php'); 1423dd7a6159SGerrit Uitslag } 1424dd7a6159SGerrit Uitslag } 1425dd7a6159SGerrit Uitslag } 142617566ac6SAdrian Lang } 142717566ac6SAdrian Lang return $lang[$id]; 142817566ac6SAdrian Lang} 142917566ac6SAdrian Lang 14303df72098SAndreas Gohr/** 1431c5c17fdaSKlap-in * Retrieve a language dependent file and pass to xhtml renderer for display 1432e8ec13b9SKlap-in * template equivalent of p_locale_xhtml() 1433e8ec13b9SKlap-in * 1434e8ec13b9SKlap-in * @param string $id id of language dependent wiki page 1435e8ec13b9SKlap-in * @return string parsed contents of the wiki page in xhtml format 1436e8ec13b9SKlap-in */ 1437e8ec13b9SKlap-infunction tpl_locale_xhtml($id) { 1438c5c17fdaSKlap-in return p_cached_output(tpl_localeFN($id)); 1439e8ec13b9SKlap-in} 1440e8ec13b9SKlap-in 1441e8ec13b9SKlap-in/** 1442c5c17fdaSKlap-in * Prepends appropriate path for a language dependent filename 144342ea7f44SGerrit Uitslag * 144442ea7f44SGerrit Uitslag * @param string $id id of localized text 144542ea7f44SGerrit Uitslag * @return string wiki text 1446e8ec13b9SKlap-in */ 1447c5c17fdaSKlap-infunction tpl_localeFN($id) { 1448e8ec13b9SKlap-in $path = tpl_incdir().'lang/'; 1449e8ec13b9SKlap-in global $conf; 145038fb1fc7SGerrit Uitslag $file = DOKU_CONF.'template_lang/'.$conf['template'].'/'.$conf['lang'].'/'.$id.'.txt'; 145179e79377SAndreas Gohr if (!file_exists($file)){ 1452e8ec13b9SKlap-in $file = $path.$conf['lang'].'/'.$id.'.txt'; 145379e79377SAndreas Gohr if(!file_exists($file)){ 1454e8ec13b9SKlap-in //fall back to english 1455e8ec13b9SKlap-in $file = $path.'en/'.$id.'.txt'; 1456e8ec13b9SKlap-in } 1457e8ec13b9SKlap-in } 1458e8ec13b9SKlap-in return $file; 1459e8ec13b9SKlap-in} 1460e8ec13b9SKlap-in 1461e8ec13b9SKlap-in/** 14627abc270fSGerrit Uitslag * prints the "main content" in the mediamanager popup 14633df72098SAndreas Gohr * 14643df72098SAndreas Gohr * Depending on the user's actions this may be a list of 14653df72098SAndreas Gohr * files in a namespace, the meta editing dialog or 14663df72098SAndreas Gohr * a message of referencing pages 14673df72098SAndreas Gohr * 14683df72098SAndreas Gohr * Only allowed in mediamanager.php 14693df72098SAndreas Gohr * 1470c182313eSAndreas Gohr * @triggers MEDIAMANAGER_CONTENT_OUTPUT 1471c182313eSAndreas Gohr * @param bool $fromajax - set true when calling this function via ajax 147242ea7f44SGerrit Uitslag * @param string $sort 14738702de7fSGerrit Uitslag * 14743df72098SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 14753df72098SAndreas Gohr */ 147600e3e394SChristopher Smithfunction tpl_mediaContent($fromajax = false, $sort='natural') { 14773df72098SAndreas Gohr global $IMG; 14783df72098SAndreas Gohr global $AUTH; 14793df72098SAndreas Gohr global $INUSE; 14803df72098SAndreas Gohr global $NS; 14813df72098SAndreas Gohr global $JUMPTO; 1482585bf44eSChristopher Smith /** @var Input $INPUT */ 1483ac7a515fSAndreas Gohr global $INPUT; 14843df72098SAndreas Gohr 1485ac7a515fSAndreas Gohr $do = $INPUT->extract('do')->str('do'); 1486c182313eSAndreas Gohr if(in_array($do, array('save', 'cancel'))) $do = ''; 1487c182313eSAndreas Gohr 1488c182313eSAndreas Gohr if(!$do) { 1489ac7a515fSAndreas Gohr if($INPUT->bool('edit')) { 1490c182313eSAndreas Gohr $do = 'metaform'; 1491c182313eSAndreas Gohr } elseif(is_array($INUSE)) { 1492c182313eSAndreas Gohr $do = 'filesinuse'; 1493c182313eSAndreas Gohr } else { 1494c182313eSAndreas Gohr $do = 'filelist'; 1495c182313eSAndreas Gohr } 1496c182313eSAndreas Gohr } 1497c182313eSAndreas Gohr 1498c182313eSAndreas Gohr // output the content pane, wrapped in an event. 1499c182313eSAndreas Gohr if(!$fromajax) ptln('<div id="media__content">'); 1500c182313eSAndreas Gohr $data = array('do' => $do); 1501c182313eSAndreas Gohr $evt = new Doku_Event('MEDIAMANAGER_CONTENT_OUTPUT', $data); 1502c182313eSAndreas Gohr if($evt->advise_before()) { 1503c182313eSAndreas Gohr $do = $data['do']; 150430fd72fbSKate Arzamastseva if($do == 'filesinuse') { 1505c182313eSAndreas Gohr media_filesinuse($INUSE, $IMG); 1506c182313eSAndreas Gohr } elseif($do == 'filelist') { 150700e3e394SChristopher Smith media_filelist($NS, $AUTH, $JUMPTO,false,$sort); 1508c9f56829SAndreas Gohr } elseif($do == 'searchlist') { 1509ac7a515fSAndreas Gohr media_searchlist($INPUT->str('q'), $NS, $AUTH); 1510c182313eSAndreas Gohr } else { 1511c182313eSAndreas Gohr msg('Unknown action '.hsc($do), -1); 1512c182313eSAndreas Gohr } 1513c182313eSAndreas Gohr } 1514c182313eSAndreas Gohr $evt->advise_after(); 1515c182313eSAndreas Gohr unset($evt); 1516c182313eSAndreas Gohr if(!$fromajax) ptln('</div>'); 1517c182313eSAndreas Gohr 15183df72098SAndreas Gohr} 15193df72098SAndreas Gohr 15203df72098SAndreas Gohr/** 1521d9162c6cSKate Arzamastseva * Prints the central column in full-screen media manager 1522d9162c6cSKate Arzamastseva * Depending on the opened tab this may be a list of 1523d9162c6cSKate Arzamastseva * files in a namespace, upload form or search form 1524d9162c6cSKate Arzamastseva * 1525d9162c6cSKate Arzamastseva * @author Kate Arzamastseva <pshns@ukr.net> 1526d9162c6cSKate Arzamastseva */ 1527035e07f1SKate Arzamastsevafunction tpl_mediaFileList() { 1528d9162c6cSKate Arzamastseva global $AUTH; 1529d9162c6cSKate Arzamastseva global $NS; 1530d9162c6cSKate Arzamastseva global $JUMPTO; 153195b451bcSAdrian Lang global $lang; 1532585bf44eSChristopher Smith /** @var Input $INPUT */ 1533ac7a515fSAndreas Gohr global $INPUT; 1534d9162c6cSKate Arzamastseva 1535ac7a515fSAndreas Gohr $opened_tab = $INPUT->str('tab_files'); 1536e5d185e1SKate Arzamastseva if(!$opened_tab || !in_array($opened_tab, array('files', 'upload', 'search'))) $opened_tab = 'files'; 1537ac7a515fSAndreas Gohr if($INPUT->str('mediado') == 'update') $opened_tab = 'upload'; 1538d9162c6cSKate Arzamastseva 153994add303SAnika Henke echo '<h2 class="a11y">'.$lang['mediaselect'].'</h2>'.NL; 154095b451bcSAdrian Lang 1541ed69a2aeSKate Arzamastseva media_tabs_files($opened_tab); 154223846a98SKate Arzamastseva 154394add303SAnika Henke echo '<div class="panelHeader">'.NL; 154495b451bcSAdrian Lang echo '<h3>'; 1545026d14a9SAnika Henke $tabTitle = ($NS) ? $NS : '['.$lang['mediaroot'].']'; 1546c98f205eSAdrian Lang printf($lang['media_'.$opened_tab], '<strong>'.hsc($tabTitle).'</strong>'); 154794add303SAnika Henke echo '</h3>'.NL; 154895b451bcSAdrian Lang if($opened_tab === 'search' || $opened_tab === 'files') { 154995b451bcSAdrian Lang media_tab_files_options(); 155023846a98SKate Arzamastseva } 155194add303SAnika Henke echo '</div>'.NL; 1552d9162c6cSKate Arzamastseva 155394add303SAnika Henke echo '<div class="panelContent">'.NL; 155495b451bcSAdrian Lang if($opened_tab == 'files') { 155595b451bcSAdrian Lang media_tab_files($NS, $AUTH, $JUMPTO); 155695b451bcSAdrian Lang } elseif($opened_tab == 'upload') { 155795b451bcSAdrian Lang media_tab_upload($NS, $AUTH, $JUMPTO); 155895b451bcSAdrian Lang } elseif($opened_tab == 'search') { 155995b451bcSAdrian Lang media_tab_search($NS, $AUTH); 156095b451bcSAdrian Lang } 156194add303SAnika Henke echo '</div>'.NL; 1562d9162c6cSKate Arzamastseva} 1563d9162c6cSKate Arzamastseva 1564d9162c6cSKate Arzamastseva/** 1565d9162c6cSKate Arzamastseva * Prints the third column in full-screen media manager 1566d9162c6cSKate Arzamastseva * Depending on the opened tab this may be details of the 1567d9162c6cSKate Arzamastseva * selected file, the meta editing dialog or 1568d9162c6cSKate Arzamastseva * list of file revisions 1569d9162c6cSKate Arzamastseva * 1570d9162c6cSKate Arzamastseva * @author Kate Arzamastseva <pshns@ukr.net> 1571d9162c6cSKate Arzamastseva */ 1572035e07f1SKate Arzamastsevafunction tpl_mediaFileDetails($image, $rev) { 1573e8a2a143SMichael Hamann global $conf, $DEL, $lang; 1574585bf44eSChristopher Smith /** @var Input $INPUT */ 1575585bf44eSChristopher Smith global $INPUT; 1576d9162c6cSKate Arzamastseva 157792cac9a9SKate Arzamastseva $removed = (!file_exists(mediaFN($image)) && file_exists(mediaMetaFN($image, '.changes')) && $conf['mediarevisions']); 1578ac7a515fSAndreas Gohr if(!$image || (!file_exists(mediaFN($image)) && !$removed) || $DEL) return; 15796dd095f5SKate Arzamastseva if($rev && !file_exists(mediaFN($image, $rev))) $rev = false; 1580e8a2a143SMichael Hamann $ns = getNS($image); 1581ac7a515fSAndreas Gohr $do = $INPUT->str('mediado'); 15821eeeced2SKate Arzamastseva 1583ac7a515fSAndreas Gohr $opened_tab = $INPUT->str('tab_details'); 1584e5d185e1SKate Arzamastseva 1585e5d185e1SKate Arzamastseva $tab_array = array('view'); 1586ac7a515fSAndreas Gohr list(, $mime) = mimetype($image); 1587e5d185e1SKate Arzamastseva if($mime == 'image/jpeg') { 1588e5d185e1SKate Arzamastseva $tab_array[] = 'edit'; 1589e5d185e1SKate Arzamastseva } 1590e5d185e1SKate Arzamastseva if($conf['mediarevisions']) { 1591e5d185e1SKate Arzamastseva $tab_array[] = 'history'; 1592e5d185e1SKate Arzamastseva } 1593e5d185e1SKate Arzamastseva 1594e5d185e1SKate Arzamastseva if(!$opened_tab || !in_array($opened_tab, $tab_array)) $opened_tab = 'view'; 1595ac7a515fSAndreas Gohr if($INPUT->bool('edit')) $opened_tab = 'edit'; 159623846a98SKate Arzamastseva if($do == 'restore') $opened_tab = 'view'; 1597d9162c6cSKate Arzamastseva 1598ed69a2aeSKate Arzamastseva media_tabs_details($image, $opened_tab); 159923846a98SKate Arzamastseva 160059f3611bSAnika Henke echo '<div class="panelHeader"><h3>'; 1601ac7a515fSAndreas Gohr list($ext) = mimetype($image, false); 160295b451bcSAdrian Lang $class = preg_replace('/[^_\-a-z0-9]+/i', '_', $ext); 160395b451bcSAdrian Lang $class = 'select mediafile mf_'.$class; 160400c2d4a9SAnika Henke $tabTitle = '<strong><a href="'.ml($image).'" class="'.$class.'" title="'.$lang['mediaview'].'">'.$image.'</a>'.'</strong>'; 160508317413SAdrian Lang if($opened_tab === 'view' && $rev) { 160608317413SAdrian Lang printf($lang['media_viewold'], $tabTitle, dformat($rev)); 160708317413SAdrian Lang } else { 1608026d14a9SAnika Henke printf($lang['media_'.$opened_tab], $tabTitle); 160908317413SAdrian Lang } 1610b8a84c03SAndreas Gohr 161194add303SAnika Henke echo '</h3></div>'.NL; 161295b451bcSAdrian Lang 161394add303SAnika Henke echo '<div class="panelContent">'.NL; 161495b451bcSAdrian Lang 161523846a98SKate Arzamastseva if($opened_tab == 'view') { 1616e8a2a143SMichael Hamann media_tab_view($image, $ns, null, $rev); 161723846a98SKate Arzamastseva 161892cac9a9SKate Arzamastseva } elseif($opened_tab == 'edit' && !$removed) { 1619e8a2a143SMichael Hamann media_tab_edit($image, $ns); 162023846a98SKate Arzamastseva 1621e5d185e1SKate Arzamastseva } elseif($opened_tab == 'history' && $conf['mediarevisions']) { 1622e8a2a143SMichael Hamann media_tab_history($image, $ns); 162323846a98SKate Arzamastseva } 162495b451bcSAdrian Lang 162594add303SAnika Henke echo '</div>'.NL; 1626d9162c6cSKate Arzamastseva} 1627d9162c6cSKate Arzamastseva 1628d9162c6cSKate Arzamastseva/** 16297abc270fSGerrit Uitslag * prints the namespace tree in the mediamanager popup 16303df72098SAndreas Gohr * 16313df72098SAndreas Gohr * Only allowed in mediamanager.php 16323df72098SAndreas Gohr * 16333df72098SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 16343df72098SAndreas Gohr */ 1635fa8e5c77SKate Arzamastsevafunction tpl_mediaTree() { 16363df72098SAndreas Gohr global $NS; 163723846a98SKate Arzamastseva ptln('<div id="media__tree">'); 16383df72098SAndreas Gohr media_nstree($NS); 16393df72098SAndreas Gohr ptln('</div>'); 16403df72098SAndreas Gohr} 16413df72098SAndreas Gohr 1642a00de5b5SAndreas Gohr/** 1643a00de5b5SAndreas Gohr * Print a dropdown menu with all DokuWiki actions 1644a00de5b5SAndreas Gohr * 1645a00de5b5SAndreas Gohr * Note: this will not use any pretty URLs 1646a00de5b5SAndreas Gohr * 1647a00de5b5SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 164842ea7f44SGerrit Uitslag * 164942ea7f44SGerrit Uitslag * @param string $empty empty option label 165042ea7f44SGerrit Uitslag * @param string $button submit button label 1651a00de5b5SAndreas Gohr */ 1652a00de5b5SAndreas Gohrfunction tpl_actiondropdown($empty = '', $button = '>') { 1653a00de5b5SAndreas Gohr global $ID; 1654a00de5b5SAndreas Gohr global $REV; 1655a00de5b5SAndreas Gohr global $lang; 1656585bf44eSChristopher Smith /** @var Input $INPUT */ 1657585bf44eSChristopher Smith global $INPUT; 1658a00de5b5SAndreas Gohr 1659768d1852SAnika Henke $action_structure = array( 1660768d1852SAnika Henke 'page_tools' => array('edit', 'revert', 'revisions', 'backlink', 'subscribe'), 1661768d1852SAnika Henke 'site_tools' => array('recent', 'media', 'index'), 1662768d1852SAnika Henke 'user_tools' => array('login', 'register', 'profile', 'admin'), 1663768d1852SAnika Henke ); 1664768d1852SAnika Henke 1665e63eccffSAndreas Gohr echo '<form action="'.script().'" method="get" accept-charset="utf-8">'; 16663b9a3b55SAnika Henke echo '<div class="no">'; 1667a00de5b5SAndreas Gohr echo '<input type="hidden" name="id" value="'.$ID.'" />'; 1668a00de5b5SAndreas Gohr if($REV) echo '<input type="hidden" name="rev" value="'.$REV.'" />'; 1669585bf44eSChristopher Smith if ($INPUT->server->str('REMOTE_USER')) { 1670a00de5b5SAndreas Gohr echo '<input type="hidden" name="sectok" value="'.getSecurityToken().'" />'; 167161efcda1SChristopher Smith } 1672a00de5b5SAndreas Gohr 16735f17c394SAnika Henke echo '<select name="do" class="edit quickselect" title="'.$lang['tools'].'">'; 1674a00de5b5SAndreas Gohr echo '<option value="">'.$empty.'</option>'; 1675a00de5b5SAndreas Gohr 1676768d1852SAnika Henke foreach($action_structure as $tools => $actions) { 1677768d1852SAnika Henke echo '<optgroup label="'.$lang[$tools].'">'; 1678768d1852SAnika Henke foreach($actions as $action) { 1679768d1852SAnika Henke $act = tpl_get_action($action); 1680396c218fSAndreas Gohr if($act) echo '<option value="'.$act['params']['do'].'">'.$lang['btn_'.$act['type']].'</option>'; 1681768d1852SAnika Henke } 1682a00de5b5SAndreas Gohr echo '</optgroup>'; 1683768d1852SAnika Henke } 1684a00de5b5SAndreas Gohr 1685a00de5b5SAndreas Gohr echo '</select>'; 1686ae614416SAnika Henke echo '<button type="submit">'.$button.'</button>'; 16873b9a3b55SAnika Henke echo '</div>'; 1688a00de5b5SAndreas Gohr echo '</form>'; 1689a00de5b5SAndreas Gohr} 1690a00de5b5SAndreas Gohr 1691066fee30SAndreas Gohr/** 1692066fee30SAndreas Gohr * Print a informational line about the used license 1693066fee30SAndreas Gohr * 1694066fee30SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 1695ac7a515fSAndreas Gohr * @param string $img print image? (|button|badge) 1696ac7a515fSAndreas Gohr * @param bool $imgonly skip the textual description? 1697ac7a515fSAndreas Gohr * @param bool $return when true don't print, but return HTML 1698ac7a515fSAndreas Gohr * @param bool $wrap wrap in div with class="license"? 1699ac7a515fSAndreas Gohr * @return string 1700066fee30SAndreas Gohr */ 170180083a41SAndreas Gohrfunction tpl_license($img = 'badge', $imgonly = false, $return = false, $wrap = true) { 1702066fee30SAndreas Gohr global $license; 1703066fee30SAndreas Gohr global $conf; 1704066fee30SAndreas Gohr global $lang; 1705066fee30SAndreas Gohr if(!$conf['license']) return ''; 1706066fee30SAndreas Gohr if(!is_array($license[$conf['license']])) return ''; 1707066fee30SAndreas Gohr $lic = $license[$conf['license']]; 170853e15c8bSAnika Henke $target = ($conf['target']['extern']) ? ' target="'.$conf['target']['extern'].'"' : ''; 1709066fee30SAndreas Gohr 171080083a41SAndreas Gohr $out = ''; 171180083a41SAndreas Gohr if($wrap) $out .= '<div class="license">'; 1712066fee30SAndreas Gohr if($img) { 1713066fee30SAndreas Gohr $src = license_img($img); 1714066fee30SAndreas Gohr if($src) { 171553e15c8bSAnika Henke $out .= '<a href="'.$lic['url'].'" rel="license"'.$target; 171653e15c8bSAnika Henke $out .= '><img src="'.DOKU_BASE.$src.'" alt="'.$lic['name'].'" /></a>'; 171753e15c8bSAnika Henke if(!$imgonly) $out .= ' '; 1718066fee30SAndreas Gohr } 1719066fee30SAndreas Gohr } 17204cefd216SMichael Klier if(!$imgonly) { 172153e15c8bSAnika Henke $out .= $lang['license'].' '; 1722d317fb5dSAnika Henke $out .= '<bdi><a href="'.$lic['url'].'" rel="license" class="urlextern"'.$target; 1723d317fb5dSAnika Henke $out .= '>'.$lic['name'].'</a></bdi>'; 17244cefd216SMichael Klier } 172580083a41SAndreas Gohr if($wrap) $out .= '</div>'; 1726066fee30SAndreas Gohr 1727066fee30SAndreas Gohr if($return) return $out; 1728066fee30SAndreas Gohr echo $out; 1729ac7a515fSAndreas Gohr return ''; 1730066fee30SAndreas Gohr} 1731066fee30SAndreas Gohr 1732a81910eeSAndreas Gohr/** 1733835dfcaeSAnika Henke * Includes the rendered HTML of a given page 1734a81910eeSAndreas Gohr * 1735a81910eeSAndreas Gohr * This function is useful to populate sidebars or similar features in a 1736a81910eeSAndreas Gohr * template 1737e0c26282SGerrit Uitslag * 17387a112df5SAndreas Gohr * @param string $pageid The page name you want to include 17397a112df5SAndreas Gohr * @param bool $print Should the content be printed or returned only 17407a112df5SAndreas Gohr * @param bool $propagate Search higher namespaces, too? 17417c3e4a67SAndreas Gohr * @param bool $useacl Include the page only if the ACLs check out? 1742e0c26282SGerrit Uitslag * @return bool|null|string 1743a81910eeSAndreas Gohr */ 17447c3e4a67SAndreas Gohrfunction tpl_include_page($pageid, $print = true, $propagate = false, $useacl = true) { 17457a112df5SAndreas Gohr if($propagate) { 17467c3e4a67SAndreas Gohr $pageid = page_findnearest($pageid, $useacl); 17477c3e4a67SAndreas Gohr } elseif($useacl && auth_quickaclcheck($pageid) == AUTH_NONE) { 17487a112df5SAndreas Gohr return false; 17497a112df5SAndreas Gohr } 1750c786a1b6SAnika Henke if(!$pageid) return false; 1751835dfcaeSAnika Henke 1752c786a1b6SAnika Henke global $TOC; 17539a2e250aSAndreas Gohr $oldtoc = $TOC; 1754a81910eeSAndreas Gohr $html = p_wiki_xhtml($pageid, '', false); 17559a2e250aSAndreas Gohr $TOC = $oldtoc; 1756a81910eeSAndreas Gohr 1757a2e03c82SAndreas Gohr if($print) echo $html; 1758e66d3e6dSAndreas Gohr return $html; 1759e66d3e6dSAndreas Gohr} 1760e66d3e6dSAndreas Gohr 1761e66d3e6dSAndreas Gohr/** 17625b75cd1fSAdrian Lang * Display the subscribe form 17635b75cd1fSAdrian Lang * 17645b75cd1fSAdrian Lang * @author Adrian Lang <lang@cosmocode.de> 17655b75cd1fSAdrian Lang */ 17665b75cd1fSAdrian Langfunction tpl_subscribe() { 17675b75cd1fSAdrian Lang global $INFO; 17685b75cd1fSAdrian Lang global $ID; 17695b75cd1fSAdrian Lang global $lang; 17706b8f02cfSAdrian Lang global $conf; 177140c347dbSAdrian Lang $stime_days = $conf['subscribe_time'] / 60 / 60 / 24; 17725b75cd1fSAdrian Lang 17735b75cd1fSAdrian Lang echo p_locale_xhtml('subscr_form'); 17745b75cd1fSAdrian Lang echo '<h2>'.$lang['subscr_m_current_header'].'</h2>'; 177515741132SAndreas Gohr echo '<div class="level2">'; 17765b75cd1fSAdrian Lang if($INFO['subscribed'] === false) { 17775b75cd1fSAdrian Lang echo '<p>'.$lang['subscr_m_not_subscribed'].'</p>'; 17785b75cd1fSAdrian Lang } else { 17795b75cd1fSAdrian Lang echo '<ul>'; 17805b75cd1fSAdrian Lang foreach($INFO['subscribed'] as $sub) { 1781056c2049SAndreas Gohr echo '<li><div class="li">'; 17825b75cd1fSAdrian Lang if($sub['target'] !== $ID) { 1783056c2049SAndreas Gohr echo '<code class="ns">'.hsc(prettyprint_id($sub['target'])).'</code>'; 17845b75cd1fSAdrian Lang } else { 1785056c2049SAndreas Gohr echo '<code class="page">'.hsc(prettyprint_id($sub['target'])).'</code>'; 17865b75cd1fSAdrian Lang } 178740c347dbSAdrian Lang $sstl = sprintf($lang['subscr_style_'.$sub['style']], $stime_days); 178815741132SAndreas Gohr if(!$sstl) $sstl = hsc($sub['style']); 1789056c2049SAndreas Gohr echo ' ('.$sstl.') '; 179015741132SAndreas Gohr 1791ac7a515fSAndreas Gohr echo '<a href="'.wl( 1792ac7a515fSAndreas Gohr $ID, 1793ac7a515fSAndreas Gohr array( 1794ac7a515fSAndreas Gohr 'do' => 'subscribe', 179566d2bed9SAdrian Lang 'sub_target'=> $sub['target'], 179666d2bed9SAdrian Lang 'sub_style' => $sub['style'], 179766d2bed9SAdrian Lang 'sub_action'=> 'unsubscribe', 1798ac7a515fSAndreas Gohr 'sectok' => getSecurityToken() 1799ac7a515fSAndreas Gohr ) 1800ac7a515fSAndreas Gohr ). 180166d2bed9SAdrian Lang '" class="unsubscribe">'.$lang['subscr_m_unsubscribe']. 180266d2bed9SAdrian Lang '</a></div></li>'; 18035b75cd1fSAdrian Lang } 18045b75cd1fSAdrian Lang echo '</ul>'; 18055b75cd1fSAdrian Lang } 180615741132SAndreas Gohr echo '</div>'; 18075b75cd1fSAdrian Lang 180815741132SAndreas Gohr // Add new subscription form 18095b75cd1fSAdrian Lang echo '<h2>'.$lang['subscr_m_new_header'].'</h2>'; 181015741132SAndreas Gohr echo '<div class="level2">'; 18115b75cd1fSAdrian Lang $ns = getNS($ID).':'; 181215741132SAndreas Gohr $targets = array( 181315741132SAndreas Gohr $ID => '<code class="page">'.prettyprint_id($ID).'</code>', 181415741132SAndreas Gohr $ns => '<code class="ns">'.prettyprint_id($ns).'</code>', 181515741132SAndreas Gohr ); 181615741132SAndreas Gohr $styles = array( 181715741132SAndreas Gohr 'every' => $lang['subscr_style_every'], 18186b8f02cfSAdrian Lang 'digest' => sprintf($lang['subscr_style_digest'], $stime_days), 18196b8f02cfSAdrian Lang 'list' => sprintf($lang['subscr_style_list'], $stime_days), 182015741132SAndreas Gohr ); 182115741132SAndreas Gohr 1822056c2049SAndreas Gohr $form = new Doku_Form(array('id' => 'subscribe__form')); 1823056c2049SAndreas Gohr $form->startFieldset($lang['subscr_m_subscribe']); 1824056c2049SAndreas Gohr $form->addRadioSet('sub_target', $targets); 1825056c2049SAndreas Gohr $form->startFieldset($lang['subscr_m_receive']); 1826056c2049SAndreas Gohr $form->addRadioSet('sub_style', $styles); 1827056c2049SAndreas Gohr $form->addHidden('sub_action', 'subscribe'); 1828056c2049SAndreas Gohr $form->addHidden('do', 'subscribe'); 1829056c2049SAndreas Gohr $form->addHidden('id', $ID); 1830056c2049SAndreas Gohr $form->endFieldset(); 18315b75cd1fSAdrian Lang $form->addElement(form_makeButton('submit', 'subscribe', $lang['subscr_m_subscribe'])); 18325b75cd1fSAdrian Lang html_form('SUBSCRIBE', $form); 183315741132SAndreas Gohr echo '</div>'; 18345b75cd1fSAdrian Lang} 18355b75cd1fSAdrian Lang 1836d059ba9bSAndreas Gohr/** 1837d059ba9bSAndreas Gohr * Tries to send already created content right to the browser 1838d059ba9bSAndreas Gohr * 1839d059ba9bSAndreas Gohr * Wraps around ob_flush() and flush() 1840d059ba9bSAndreas Gohr * 1841d059ba9bSAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 1842d059ba9bSAndreas Gohr */ 1843d059ba9bSAndreas Gohrfunction tpl_flush() { 1844d059ba9bSAndreas Gohr ob_flush(); 1845d059ba9bSAndreas Gohr flush(); 1846d059ba9bSAndreas Gohr} 1847d059ba9bSAndreas Gohr 1848afca7e7eSAnika Henke/** 1849378325f9SAndreas Gohr * Tries to find a ressource file in the given locations. 1850afca7e7eSAnika Henke * 1851378325f9SAndreas Gohr * If a given location starts with a colon it is assumed to be a media 1852378325f9SAndreas Gohr * file, otherwise it is assumed to be relative to the current template 1853378325f9SAndreas Gohr * 185442ea7f44SGerrit Uitslag * @param string[] $search locations to look at 1855378325f9SAndreas Gohr * @param bool $abs if to use absolute URL 1856ac7a515fSAndreas Gohr * @param array &$imginfo filled with getimagesize() 1857ac7a515fSAndreas Gohr * @return string 185842ea7f44SGerrit Uitslag * 1859378325f9SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 1860afca7e7eSAnika Henke */ 1861378325f9SAndreas Gohrfunction tpl_getMediaFile($search, $abs = false, &$imginfo = null) { 1862ac7a515fSAndreas Gohr $img = ''; 1863ac7a515fSAndreas Gohr $file = ''; 1864ac7a515fSAndreas Gohr $ismedia = false; 1865378325f9SAndreas Gohr // loop through candidates until a match was found: 1866378325f9SAndreas Gohr foreach($search as $img) { 1867378325f9SAndreas Gohr if(substr($img, 0, 1) == ':') { 1868378325f9SAndreas Gohr $file = mediaFN($img); 1869378325f9SAndreas Gohr $ismedia = true; 1870378325f9SAndreas Gohr } else { 1871c4766956SAndreas Gohr $file = tpl_incdir().$img; 1872378325f9SAndreas Gohr $ismedia = false; 18731f13e33dSAnika Henke } 18740f747863Slupo49 1875378325f9SAndreas Gohr if(file_exists($file)) break; 1876872a6d29SAnika Henke } 1877378325f9SAndreas Gohr 1878378325f9SAndreas Gohr // fetch image data if requested 1879378325f9SAndreas Gohr if(!is_null($imginfo)) { 1880378325f9SAndreas Gohr $imginfo = getimagesize($file); 1881378325f9SAndreas Gohr } 1882378325f9SAndreas Gohr 1883378325f9SAndreas Gohr // build URL 1884378325f9SAndreas Gohr if($ismedia) { 1885378325f9SAndreas Gohr $url = ml($img, '', true, '', $abs); 1886378325f9SAndreas Gohr } else { 1887c4766956SAndreas Gohr $url = tpl_basedir().$img; 1888378325f9SAndreas Gohr if($abs) $url = DOKU_URL.substr($url, strlen(DOKU_REL)); 1889378325f9SAndreas Gohr } 1890378325f9SAndreas Gohr 1891378325f9SAndreas Gohr return $url; 1892a7e5f74cSlupo49} 18931f13e33dSAnika Henke 1894872a6d29SAnika Henke/** 1895e5d4768dSAndreas Gohr * PHP include a file 1896e5d4768dSAndreas Gohr * 1897e5d4768dSAndreas Gohr * either from the conf directory if it exists, otherwise use 1898e5d4768dSAndreas Gohr * file in the template's root directory. 1899e5d4768dSAndreas Gohr * 1900e5d4768dSAndreas Gohr * The function honours config cascade settings and looks for the given 1901e5d4768dSAndreas Gohr * file next to the ´main´ config files, in the order protected, local, 1902e5d4768dSAndreas Gohr * default. 1903e5d4768dSAndreas Gohr * 1904e5d4768dSAndreas Gohr * Note: no escaping or sanity checking is done here. Never pass user input 1905e5d4768dSAndreas Gohr * to this function! 1906e5d4768dSAndreas Gohr * 1907e5d4768dSAndreas Gohr * @author Anika Henke <anika@selfthinker.org> 1908e5d4768dSAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 190942ea7f44SGerrit Uitslag * 191042ea7f44SGerrit Uitslag * @param string $file 1911e5d4768dSAndreas Gohr */ 1912e5d4768dSAndreas Gohrfunction tpl_includeFile($file) { 1913e5d4768dSAndreas Gohr global $config_cascade; 1914e5d4768dSAndreas Gohr foreach(array('protected', 'local', 'default') as $config_group) { 1915e5d4768dSAndreas Gohr if(empty($config_cascade['main'][$config_group])) continue; 1916e5d4768dSAndreas Gohr foreach($config_cascade['main'][$config_group] as $conf_file) { 1917e5d4768dSAndreas Gohr $dir = dirname($conf_file); 1918e5d4768dSAndreas Gohr if(file_exists("$dir/$file")) { 1919f3a1225fSAnika Henke include("$dir/$file"); 1920e5d4768dSAndreas Gohr return; 1921e5d4768dSAndreas Gohr } 1922e5d4768dSAndreas Gohr } 1923e5d4768dSAndreas Gohr } 1924e5d4768dSAndreas Gohr 1925e5d4768dSAndreas Gohr // still here? try the template dir 1926e5d4768dSAndreas Gohr $file = tpl_incdir().$file; 1927e5d4768dSAndreas Gohr if(file_exists($file)) { 1928f3a1225fSAnika Henke include($file); 1929e5d4768dSAndreas Gohr } 1930e5d4768dSAndreas Gohr} 1931e5d4768dSAndreas Gohr 1932e5d4768dSAndreas Gohr/** 1933872a6d29SAnika Henke * Returns <link> tag for various icon types (favicon|mobile|generic) 1934872a6d29SAnika Henke * 1935872a6d29SAnika Henke * @author Anika Henke <anika@selfthinker.org> 193642ea7f44SGerrit Uitslag * 1937ac7a515fSAndreas Gohr * @param array $types - list of icon types to display (favicon|mobile|generic) 1938ac7a515fSAndreas Gohr * @return string 1939872a6d29SAnika Henke */ 1940872a6d29SAnika Henkefunction tpl_favicon($types = array('favicon')) { 1941872a6d29SAnika Henke 1942872a6d29SAnika Henke $return = ''; 1943872a6d29SAnika Henke 1944872a6d29SAnika Henke foreach($types as $type) { 1945872a6d29SAnika Henke switch($type) { 1946872a6d29SAnika Henke case 'favicon': 1947378325f9SAndreas Gohr $look = array(':wiki:favicon.ico', ':favicon.ico', 'images/favicon.ico'); 1948378325f9SAndreas Gohr $return .= '<link rel="shortcut icon" href="'.tpl_getMediaFile($look).'" />'.NL; 1949872a6d29SAnika Henke break; 1950872a6d29SAnika Henke case 'mobile': 1951cab75975SAnika Henke $look = array(':wiki:apple-touch-icon.png', ':apple-touch-icon.png', 'images/apple-touch-icon.png'); 1952378325f9SAndreas Gohr $return .= '<link rel="apple-touch-icon" href="'.tpl_getMediaFile($look).'" />'.NL; 1953872a6d29SAnika Henke break; 1954872a6d29SAnika Henke case 'generic': 1955872a6d29SAnika Henke // ideal world solution, which doesn't work in any browser yet 1956378325f9SAndreas Gohr $look = array(':wiki:favicon.svg', ':favicon.svg', 'images/favicon.svg'); 1957378325f9SAndreas Gohr $return .= '<link rel="icon" href="'.tpl_getMediaFile($look).'" type="image/svg+xml" />'.NL; 1958872a6d29SAnika Henke break; 1959872a6d29SAnika Henke } 1960872a6d29SAnika Henke } 1961872a6d29SAnika Henke 1962872a6d29SAnika Henke return $return; 1963afca7e7eSAnika Henke} 1964afca7e7eSAnika Henke 1965d9162c6cSKate Arzamastseva/** 1966d9162c6cSKate Arzamastseva * Prints full-screen media manager 1967d9162c6cSKate Arzamastseva * 1968d9162c6cSKate Arzamastseva * @author Kate Arzamastseva <pshns@ukr.net> 1969d9162c6cSKate Arzamastseva */ 1970d9162c6cSKate Arzamastsevafunction tpl_media() { 1971ac7a515fSAndreas Gohr global $NS, $IMG, $JUMPTO, $REV, $lang, $fullscreen, $INPUT; 197288a71175SKate Arzamastseva $fullscreen = true; 197395b451bcSAdrian Lang require_once DOKU_INC.'lib/exe/mediamanager.php'; 1974d9162c6cSKate Arzamastseva 1975ac7a515fSAndreas Gohr $rev = ''; 1976ac7a515fSAndreas Gohr $image = cleanID($INPUT->str('image')); 197798f03b57SKate Arzamastseva if(isset($IMG)) $image = $IMG; 197898f03b57SKate Arzamastseva if(isset($JUMPTO)) $image = $JUMPTO; 19799c1bd4bcSKate Arzamastseva if(isset($REV) && !$JUMPTO) $rev = $REV; 198098f03b57SKate Arzamastseva 198194add303SAnika Henke echo '<div id="mediamanager__page">'.NL; 1982bc314c58SAnika Henke echo '<h1>'.$lang['btn_media'].'</h1>'.NL; 1983d9162c6cSKate Arzamastseva html_msgarea(); 198494add303SAnika Henke 198594add303SAnika Henke echo '<div class="panel namespaces">'.NL; 198694add303SAnika Henke echo '<h2>'.$lang['namespaces'].'</h2>'.NL; 198795b451bcSAdrian Lang echo '<div class="panelHeader">'; 1988ba340a70SAnika Henke echo $lang['media_namespaces']; 198994add303SAnika Henke echo '</div>'.NL; 199095b451bcSAdrian Lang 199194add303SAnika Henke echo '<div class="panelContent" id="media__tree">'.NL; 199295b451bcSAdrian Lang media_nstree($NS); 199394add303SAnika Henke echo '</div>'.NL; 199494add303SAnika Henke echo '</div>'.NL; 1995fa8e5c77SKate Arzamastseva 199694add303SAnika Henke echo '<div class="panel filelist">'.NL; 1997035e07f1SKate Arzamastseva tpl_mediaFileList(); 199894add303SAnika Henke echo '</div>'.NL; 1999fa8e5c77SKate Arzamastseva 200094add303SAnika Henke echo '<div class="panel file">'.NL; 200194add303SAnika Henke echo '<h2 class="a11y">'.$lang['media_file'].'</h2>'.NL; 2002035e07f1SKate Arzamastseva tpl_mediaFileDetails($image, $rev); 200394add303SAnika Henke echo '</div>'.NL; 2004ba340a70SAnika Henke 200594add303SAnika Henke echo '</div>'.NL; 2006d9162c6cSKate Arzamastseva} 2007afca7e7eSAnika Henke 2008c71db656SAnika Henke/** 2009c71db656SAnika Henke * Return useful layout classes 2010c71db656SAnika Henke * 2011c71db656SAnika Henke * @author Anika Henke <anika@selfthinker.org> 201242ea7f44SGerrit Uitslag * 201342ea7f44SGerrit Uitslag * @return string 2014c71db656SAnika Henke */ 2015c71db656SAnika Henkefunction tpl_classes() { 2016c71db656SAnika Henke global $ACT, $conf, $ID, $INFO; 2017585bf44eSChristopher Smith /** @var Input $INPUT */ 2018585bf44eSChristopher Smith global $INPUT; 2019585bf44eSChristopher Smith 2020c71db656SAnika Henke $classes = array( 2021c71db656SAnika Henke 'dokuwiki', 2022c71db656SAnika Henke 'mode_'.$ACT, 2023c71db656SAnika Henke 'tpl_'.$conf['template'], 2024585bf44eSChristopher Smith $INPUT->server->bool('REMOTE_USER') ? 'loggedIn' : '', 202539f00629SAnika Henke $INFO['exists'] ? '' : 'notFound', 2026c71db656SAnika Henke ($ID == $conf['start']) ? 'home' : '', 2027c71db656SAnika Henke ); 2028c71db656SAnika Henke return join(' ', $classes); 2029c71db656SAnika Henke} 2030c71db656SAnika Henke 203184dd2b1aSGerrit Uitslag/** 203284dd2b1aSGerrit Uitslag * Create event for tools menues 203384dd2b1aSGerrit Uitslag * 203484dd2b1aSGerrit Uitslag * @author Anika Henke <anika@selfthinker.org> 203584dd2b1aSGerrit Uitslag * @param string $toolsname name of menu 203684dd2b1aSGerrit Uitslag * @param array $items 203784dd2b1aSGerrit Uitslag * @param string $view e.g. 'main', 'detail', ... 203884dd2b1aSGerrit Uitslag */ 203984dd2b1aSGerrit Uitslagfunction tpl_toolsevent($toolsname, $items, $view = 'main') { 204084dd2b1aSGerrit Uitslag $data = array( 204184dd2b1aSGerrit Uitslag 'view' => $view, 204284dd2b1aSGerrit Uitslag 'items' => $items 204384dd2b1aSGerrit Uitslag ); 204484dd2b1aSGerrit Uitslag 204584dd2b1aSGerrit Uitslag $hook = 'TEMPLATE_' . strtoupper($toolsname) . '_DISPLAY'; 204684dd2b1aSGerrit Uitslag $evt = new Doku_Event($hook, $data); 204784dd2b1aSGerrit Uitslag if($evt->advise_before()) { 204884dd2b1aSGerrit Uitslag foreach($evt->data['items'] as $k => $html) echo $html; 204984dd2b1aSGerrit Uitslag } 205084dd2b1aSGerrit Uitslag $evt->advise_after(); 205184dd2b1aSGerrit Uitslag} 205284dd2b1aSGerrit Uitslag 2053e3776c06SMichael Hamann//Setup VIM: ex: et ts=4 : 2054a00de5b5SAndreas Gohr 2055