1<?php 2/** 3 * DokuWiki template functions 4 * 5 * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) 6 * @author Andreas Gohr <andi@splitbrain.org> 7 */ 8 9if(!defined('DOKU_INC')) die('meh.'); 10 11/** 12 * Access a template file 13 * 14 * Returns the path to the given file inside the current template, uses 15 * default template if the custom version doesn't exist. 16 * 17 * @author Andreas Gohr <andi@splitbrain.org> 18 * @param string $file 19 * @return string 20 */ 21function template($file) { 22 global $conf; 23 24 if(@is_readable(DOKU_INC.'lib/tpl/'.$conf['template'].'/'.$file)) 25 return DOKU_INC.'lib/tpl/'.$conf['template'].'/'.$file; 26 27 return DOKU_INC.'lib/tpl/dokuwiki/'.$file; 28} 29 30/** 31 * Convenience function to access template dir from local FS 32 * 33 * This replaces the deprecated DOKU_TPLINC constant 34 * 35 * @author Andreas Gohr <andi@splitbrain.org> 36 * @param string $tpl The template to use, default to current one 37 * @return string 38 */ 39function tpl_incdir($tpl='') { 40 global $conf; 41 if(!$tpl) $tpl = $conf['template']; 42 return DOKU_INC.'lib/tpl/'.$tpl.'/'; 43} 44 45/** 46 * Convenience function to access template dir from web 47 * 48 * This replaces the deprecated DOKU_TPL constant 49 * 50 * @author Andreas Gohr <andi@splitbrain.org> 51 * @param string $tpl The template to use, default to current one 52 * @return string 53 */ 54function tpl_basedir($tpl='') { 55 global $conf; 56 if(!$tpl) $tpl = $conf['template']; 57 return DOKU_BASE.'lib/tpl/'.$tpl.'/'; 58} 59 60/** 61 * Print the content 62 * 63 * This function is used for printing all the usual content 64 * (defined by the global $ACT var) by calling the appropriate 65 * outputfunction(s) from html.php 66 * 67 * Everything that doesn't use the main template file isn't 68 * handled by this function. ACL stuff is not done here either. 69 * 70 * @author Andreas Gohr <andi@splitbrain.org> 71 * 72 * @triggers TPL_ACT_RENDER 73 * @triggers TPL_CONTENT_DISPLAY 74 * @param bool $prependTOC should the TOC be displayed here? 75 * @return bool true if any output 76 */ 77function tpl_content($prependTOC = true) { 78 global $ACT; 79 global $INFO; 80 $INFO['prependTOC'] = $prependTOC; 81 82 ob_start(); 83 trigger_event('TPL_ACT_RENDER', $ACT, 'tpl_content_core'); 84 $html_output = ob_get_clean(); 85 trigger_event('TPL_CONTENT_DISPLAY', $html_output, 'ptln'); 86 87 return !empty($html_output); 88} 89 90/** 91 * Default Action of TPL_ACT_RENDER 92 * 93 * @return bool 94 */ 95function tpl_content_core() { 96 $router = \dokuwiki\ActionRouter::getInstance(); 97 try { 98 $router->getAction()->tplContent(); 99 } catch(\dokuwiki\Action\Exception\FatalException $e) { 100 // there was no content for the action 101 msg(hsc($e->getMessage()), -1); 102 return false; 103 } 104 return true; 105} 106 107/** 108 * Places the TOC where the function is called 109 * 110 * If you use this you most probably want to call tpl_content with 111 * a false argument 112 * 113 * @author Andreas Gohr <andi@splitbrain.org> 114 * 115 * @param bool $return Should the TOC be returned instead to be printed? 116 * @return string 117 */ 118function tpl_toc($return = false) { 119 global $TOC; 120 global $ACT; 121 global $ID; 122 global $REV; 123 global $INFO; 124 global $conf; 125 global $INPUT; 126 $toc = array(); 127 128 if(is_array($TOC)) { 129 // if a TOC was prepared in global scope, always use it 130 $toc = $TOC; 131 } elseif(($ACT == 'show' || substr($ACT, 0, 6) == 'export') && !$REV && $INFO['exists']) { 132 // get TOC from metadata, render if neccessary 133 $meta = p_get_metadata($ID, '', METADATA_RENDER_USING_CACHE); 134 if(isset($meta['internal']['toc'])) { 135 $tocok = $meta['internal']['toc']; 136 } else { 137 $tocok = true; 138 } 139 $toc = isset($meta['description']['tableofcontents']) ? $meta['description']['tableofcontents'] : null; 140 if(!$tocok || !is_array($toc) || !$conf['tocminheads'] || count($toc) < $conf['tocminheads']) { 141 $toc = array(); 142 } 143 } elseif($ACT == 'admin') { 144 // try to load admin plugin TOC 145 /** @var $plugin DokuWiki_Admin_Plugin */ 146 if ($plugin = plugin_getRequestAdminPlugin()) { 147 $toc = $plugin->getTOC(); 148 $TOC = $toc; // avoid later rebuild 149 } 150 } 151 152 trigger_event('TPL_TOC_RENDER', $toc, null, false); 153 $html = html_TOC($toc); 154 if($return) return $html; 155 echo $html; 156 return ''; 157} 158 159/** 160 * Handle the admin page contents 161 * 162 * @author Andreas Gohr <andi@splitbrain.org> 163 * 164 * @return bool 165 */ 166function tpl_admin() { 167 global $INFO; 168 global $TOC; 169 global $INPUT; 170 171 $plugin = null; 172 $class = $INPUT->str('page'); 173 if(!empty($class)) { 174 $pluginlist = plugin_list('admin'); 175 176 if(in_array($class, $pluginlist)) { 177 // attempt to load the plugin 178 /** @var $plugin DokuWiki_Admin_Plugin */ 179 $plugin = plugin_load('admin', $class); 180 } 181 } 182 183 if($plugin !== null) { 184 if(!is_array($TOC)) $TOC = $plugin->getTOC(); //if TOC wasn't requested yet 185 if($INFO['prependTOC']) tpl_toc(); 186 $plugin->html(); 187 } else { 188 $admin = new dokuwiki\Ui\Admin(); 189 $admin->show(); 190 } 191 return true; 192} 193 194/** 195 * Print the correct HTML meta headers 196 * 197 * This has to go into the head section of your template. 198 * 199 * @author Andreas Gohr <andi@splitbrain.org> 200 * 201 * @triggers TPL_METAHEADER_OUTPUT 202 * @param bool $alt Should feeds and alternative format links be added? 203 * @return bool 204 */ 205function tpl_metaheaders($alt = true) { 206 global $ID; 207 global $REV; 208 global $INFO; 209 global $JSINFO; 210 global $ACT; 211 global $QUERY; 212 global $lang; 213 global $conf; 214 global $updateVersion; 215 /** @var Input $INPUT */ 216 global $INPUT; 217 218 // prepare the head array 219 $head = array(); 220 221 // prepare seed for js and css 222 $tseed = $updateVersion; 223 $depends = getConfigFiles('main'); 224 $depends[] = DOKU_CONF."tpl/".$conf['template']."/style.ini"; 225 foreach($depends as $f) $tseed .= @filemtime($f); 226 $tseed = md5($tseed); 227 228 // the usual stuff 229 $head['meta'][] = array('name'=> 'generator', 'content'=> 'DokuWiki'); 230 if(actionOK('search')) { 231 $head['link'][] = array( 232 'rel' => 'search', 'type'=> 'application/opensearchdescription+xml', 233 'href'=> DOKU_BASE.'lib/exe/opensearch.php', 'title'=> $conf['title'] 234 ); 235 } 236 237 $head['link'][] = array('rel'=> 'start', 'href'=> DOKU_BASE); 238 if(actionOK('index')) { 239 $head['link'][] = array( 240 'rel' => 'contents', 'href'=> wl($ID, 'do=index', false, '&'), 241 'title'=> $lang['btn_index'] 242 ); 243 } 244 245 if($alt) { 246 if(actionOK('rss')) { 247 $head['link'][] = array( 248 'rel' => 'alternate', 'type'=> 'application/rss+xml', 249 'title'=> $lang['btn_recent'], 'href'=> DOKU_BASE.'feed.php' 250 ); 251 $head['link'][] = array( 252 'rel' => 'alternate', 'type'=> 'application/rss+xml', 253 'title'=> $lang['currentns'], 254 'href' => DOKU_BASE.'feed.php?mode=list&ns='.$INFO['namespace'] 255 ); 256 } 257 if(($ACT == 'show' || $ACT == 'search') && $INFO['writable']) { 258 $head['link'][] = array( 259 'rel' => 'edit', 260 'title'=> $lang['btn_edit'], 261 'href' => wl($ID, 'do=edit', false, '&') 262 ); 263 } 264 265 if(actionOK('rss') && $ACT == 'search') { 266 $head['link'][] = array( 267 'rel' => 'alternate', 'type'=> 'application/rss+xml', 268 'title'=> $lang['searchresult'], 269 'href' => DOKU_BASE.'feed.php?mode=search&q='.$QUERY 270 ); 271 } 272 273 if(actionOK('export_xhtml')) { 274 $head['link'][] = array( 275 'rel' => 'alternate', 'type'=> 'text/html', 'title'=> $lang['plainhtml'], 276 'href'=> exportlink($ID, 'xhtml', '', false, '&') 277 ); 278 } 279 280 if(actionOK('export_raw')) { 281 $head['link'][] = array( 282 'rel' => 'alternate', 'type'=> 'text/plain', 'title'=> $lang['wikimarkup'], 283 'href'=> exportlink($ID, 'raw', '', false, '&') 284 ); 285 } 286 } 287 288 // setup robot tags apropriate for different modes 289 if(($ACT == 'show' || $ACT == 'export_xhtml') && !$REV) { 290 if($INFO['exists']) { 291 //delay indexing: 292 if((time() - $INFO['lastmod']) >= $conf['indexdelay'] && !isHiddenPage($ID) ) { 293 $head['meta'][] = array('name'=> 'robots', 'content'=> 'index,follow'); 294 } else { 295 $head['meta'][] = array('name'=> 'robots', 'content'=> 'noindex,nofollow'); 296 } 297 $canonicalUrl = wl($ID, '', true, '&'); 298 if ($ID == $conf['start']) { 299 $canonicalUrl = DOKU_URL; 300 } 301 $head['link'][] = array('rel'=> 'canonical', 'href'=> $canonicalUrl); 302 } else { 303 $head['meta'][] = array('name'=> 'robots', 'content'=> 'noindex,follow'); 304 } 305 } elseif(defined('DOKU_MEDIADETAIL')) { 306 $head['meta'][] = array('name'=> 'robots', 'content'=> 'index,follow'); 307 } else { 308 $head['meta'][] = array('name'=> 'robots', 'content'=> 'noindex,nofollow'); 309 } 310 311 // set metadata 312 if($ACT == 'show' || $ACT == 'export_xhtml') { 313 // keywords (explicit or implicit) 314 if(!empty($INFO['meta']['subject'])) { 315 $head['meta'][] = array('name'=> 'keywords', 'content'=> join(',', $INFO['meta']['subject'])); 316 } else { 317 $head['meta'][] = array('name'=> 'keywords', 'content'=> str_replace(':', ',', $ID)); 318 } 319 } 320 321 // load stylesheets 322 $head['link'][] = array( 323 'rel' => 'stylesheet', 'type'=> 'text/css', 324 'href'=> DOKU_BASE.'lib/exe/css.php?t='.rawurlencode($conf['template']).'&tseed='.$tseed 325 ); 326 327 // make $INFO and other vars available to JavaScripts 328 $json = new JSON(); 329 $script = "var NS='".$INFO['namespace']."';"; 330 if($conf['useacl'] && $INPUT->server->str('REMOTE_USER')) { 331 $script .= "var SIG='".toolbar_signature()."';"; 332 } 333 $script .= 'var JSINFO = '.$json->encode($JSINFO).';'; 334 $head['script'][] = array('type'=> 'text/javascript', '_data'=> $script); 335 336 // load jquery 337 $jquery = getCdnUrls(); 338 foreach($jquery as $src) { 339 $head['script'][] = array( 340 'type' => 'text/javascript', 'charset' => 'utf-8', '_data' => '', 'src' => $src 341 ); 342 } 343 344 // load our javascript dispatcher 345 $head['script'][] = array( 346 'type'=> 'text/javascript', 'charset'=> 'utf-8', '_data'=> '', 347 'src' => DOKU_BASE.'lib/exe/js.php'.'?t='.rawurlencode($conf['template']).'&tseed='.$tseed 348 ); 349 350 // trigger event here 351 trigger_event('TPL_METAHEADER_OUTPUT', $head, '_tpl_metaheaders_action', true); 352 return true; 353} 354 355/** 356 * prints the array build by tpl_metaheaders 357 * 358 * $data is an array of different header tags. Each tag can have multiple 359 * instances. Attributes are given as key value pairs. Values will be HTML 360 * encoded automatically so they should be provided as is in the $data array. 361 * 362 * For tags having a body attribute specify the body data in the special 363 * attribute '_data'. This field will NOT BE ESCAPED automatically. 364 * 365 * @author Andreas Gohr <andi@splitbrain.org> 366 * 367 * @param array $data 368 */ 369function _tpl_metaheaders_action($data) { 370 foreach($data as $tag => $inst) { 371 if($tag == 'script') { 372 echo "<!--[if gte IE 9]><!-->\n"; // no scripts for old IE 373 } 374 foreach($inst as $attr) { 375 if ( empty($attr) ) { continue; } 376 echo '<', $tag, ' ', buildAttributes($attr); 377 if(isset($attr['_data']) || $tag == 'script') { 378 if($tag == 'script' && $attr['_data']) 379 $attr['_data'] = "/*<![CDATA[*/". 380 $attr['_data']. 381 "\n/*!]]>*/"; 382 383 echo '>', $attr['_data'], '</', $tag, '>'; 384 } else { 385 echo '/>'; 386 } 387 echo "\n"; 388 } 389 if($tag == 'script') { 390 echo "<!--<![endif]-->\n"; 391 } 392 } 393} 394 395/** 396 * Print a link 397 * 398 * Just builds a link. 399 * 400 * @author Andreas Gohr <andi@splitbrain.org> 401 * 402 * @param string $url 403 * @param string $name 404 * @param string $more 405 * @param bool $return if true return the link html, otherwise print 406 * @return bool|string html of the link, or true if printed 407 */ 408function tpl_link($url, $name, $more = '', $return = false) { 409 $out = '<a href="'.$url.'" '; 410 if($more) $out .= ' '.$more; 411 $out .= ">$name</a>"; 412 if($return) return $out; 413 print $out; 414 return true; 415} 416 417/** 418 * Prints a link to a WikiPage 419 * 420 * Wrapper around html_wikilink 421 * 422 * @author Andreas Gohr <andi@splitbrain.org> 423 * 424 * @param string $id page id 425 * @param string|null $name the name of the link 426 * @param bool $return 427 * @return true|string 428 */ 429function tpl_pagelink($id, $name = null, $return = false) { 430 $out = '<bdi>'.html_wikilink($id, $name).'</bdi>'; 431 if($return) return $out; 432 print $out; 433 return true; 434} 435 436/** 437 * get the parent page 438 * 439 * Tries to find out which page is parent. 440 * returns false if none is available 441 * 442 * @author Andreas Gohr <andi@splitbrain.org> 443 * 444 * @param string $id page id 445 * @return false|string 446 */ 447function tpl_getparent($id) { 448 $parent = getNS($id).':'; 449 resolve_pageid('', $parent, $exists); 450 if($parent == $id) { 451 $pos = strrpos(getNS($id), ':'); 452 $parent = substr($parent, 0, $pos).':'; 453 resolve_pageid('', $parent, $exists); 454 if($parent == $id) return false; 455 } 456 return $parent; 457} 458 459/** 460 * Print one of the buttons 461 * 462 * @author Adrian Lang <mail@adrianlang.de> 463 * @see tpl_get_action 464 * 465 * @param string $type 466 * @param bool $return 467 * @return bool|string html, or false if no data, true if printed 468 * @deprecated 2017-09-01 see devel:menus 469 */ 470function tpl_button($type, $return = false) { 471 dbg_deprecated('see devel:menus'); 472 $data = tpl_get_action($type); 473 if($data === false) { 474 return false; 475 } elseif(!is_array($data)) { 476 $out = sprintf($data, 'button'); 477 } else { 478 /** 479 * @var string $accesskey 480 * @var string $id 481 * @var string $method 482 * @var array $params 483 */ 484 extract($data); 485 if($id === '#dokuwiki__top') { 486 $out = html_topbtn(); 487 } else { 488 $out = html_btn($type, $id, $accesskey, $params, $method); 489 } 490 } 491 if($return) return $out; 492 echo $out; 493 return true; 494} 495 496/** 497 * Like the action buttons but links 498 * 499 * @author Adrian Lang <mail@adrianlang.de> 500 * @see tpl_get_action 501 * 502 * @param string $type action command 503 * @param string $pre prefix of link 504 * @param string $suf suffix of link 505 * @param string $inner innerHML of link 506 * @param bool $return if true it returns html, otherwise prints 507 * @return bool|string html or false if no data, true if printed 508 * @deprecated 2017-09-01 see devel:menus 509 */ 510function tpl_actionlink($type, $pre = '', $suf = '', $inner = '', $return = false) { 511 dbg_deprecated('see devel:menus'); 512 global $lang; 513 $data = tpl_get_action($type); 514 if($data === false) { 515 return false; 516 } elseif(!is_array($data)) { 517 $out = sprintf($data, 'link'); 518 } else { 519 /** 520 * @var string $accesskey 521 * @var string $id 522 * @var string $method 523 * @var bool $nofollow 524 * @var array $params 525 * @var string $replacement 526 */ 527 extract($data); 528 if(strpos($id, '#') === 0) { 529 $linktarget = $id; 530 } else { 531 $linktarget = wl($id, $params); 532 } 533 $caption = $lang['btn_'.$type]; 534 if(strpos($caption, '%s')){ 535 $caption = sprintf($caption, $replacement); 536 } 537 $akey = $addTitle = ''; 538 if($accesskey) { 539 $akey = 'accesskey="'.$accesskey.'" '; 540 $addTitle = ' ['.strtoupper($accesskey).']'; 541 } 542 $rel = $nofollow ? 'rel="nofollow" ' : ''; 543 $out = tpl_link( 544 $linktarget, $pre.(($inner) ? $inner : $caption).$suf, 545 'class="action '.$type.'" '. 546 $akey.$rel. 547 'title="'.hsc($caption).$addTitle.'"', true 548 ); 549 } 550 if($return) return $out; 551 echo $out; 552 return true; 553} 554 555/** 556 * Check the actions and get data for buttons and links 557 * 558 * @author Andreas Gohr <andi@splitbrain.org> 559 * @author Matthias Grimm <matthiasgrimm@users.sourceforge.net> 560 * @author Adrian Lang <mail@adrianlang.de> 561 * 562 * @param string $type 563 * @return array|bool|string 564 * @deprecated 2017-09-01 see devel:menus 565 */ 566function tpl_get_action($type) { 567 dbg_deprecated('see devel:menus'); 568 if($type == 'history') $type = 'revisions'; 569 if($type == 'subscription') $type = 'subscribe'; 570 if($type == 'img_backto') $type = 'imgBackto'; 571 572 $class = '\\dokuwiki\\Menu\\Item\\' . ucfirst($type); 573 if(class_exists($class)) { 574 try { 575 /** @var \dokuwiki\Menu\Item\AbstractItem $item */ 576 $item = new $class; 577 $data = $item->getLegacyData(); 578 $unknown = false; 579 } catch(\RuntimeException $ignored) { 580 return false; 581 } 582 } else { 583 global $ID; 584 $data = array( 585 'accesskey' => null, 586 'type' => $type, 587 'id' => $ID, 588 'method' => 'get', 589 'params' => array('do' => $type), 590 'nofollow' => true, 591 'replacement' => '', 592 ); 593 $unknown = true; 594 } 595 596 $evt = new Doku_Event('TPL_ACTION_GET', $data); 597 if($evt->advise_before()) { 598 //handle unknown types 599 if($unknown) { 600 $data = '[unknown %s type]'; 601 } 602 } 603 $evt->advise_after(); 604 unset($evt); 605 606 return $data; 607} 608 609/** 610 * Wrapper around tpl_button() and tpl_actionlink() 611 * 612 * @author Anika Henke <anika@selfthinker.org> 613 * 614 * @param string $type action command 615 * @param bool $link link or form button? 616 * @param string|bool $wrapper HTML element wrapper 617 * @param bool $return return or print 618 * @param string $pre prefix for links 619 * @param string $suf suffix for links 620 * @param string $inner inner HTML for links 621 * @return bool|string 622 * @deprecated 2017-09-01 see devel:menus 623 */ 624function tpl_action($type, $link = false, $wrapper = false, $return = false, $pre = '', $suf = '', $inner = '') { 625 dbg_deprecated('see devel:menus'); 626 $out = ''; 627 if($link) { 628 $out .= tpl_actionlink($type, $pre, $suf, $inner, true); 629 } else { 630 $out .= tpl_button($type, true); 631 } 632 if($out && $wrapper) $out = "<$wrapper>$out</$wrapper>"; 633 634 if($return) return $out; 635 print $out; 636 return $out ? true : false; 637} 638 639/** 640 * Print the search form 641 * 642 * If the first parameter is given a div with the ID 'qsearch_out' will 643 * be added which instructs the ajax pagequicksearch to kick in and place 644 * its output into this div. The second parameter controls the propritary 645 * attribute autocomplete. If set to false this attribute will be set with an 646 * value of "off" to instruct the browser to disable it's own built in 647 * autocompletion feature (MSIE and Firefox) 648 * 649 * @author Andreas Gohr <andi@splitbrain.org> 650 * 651 * @param bool $ajax 652 * @param bool $autocomplete 653 * @return bool 654 */ 655function tpl_searchform($ajax = true, $autocomplete = true) { 656 global $lang; 657 global $ACT; 658 global $QUERY; 659 global $ID; 660 661 // don't print the search form if search action has been disabled 662 if(!actionOK('search')) return false; 663 664 $searchForm = new dokuwiki\Form\Form([ 665 'action' => wl(), 666 'method' => 'get', 667 'role' => 'search', 668 'class' => 'search', 669 'id' => 'dw__search', 670 ]); 671 $searchForm->addTagOpen('div')->addClass('no'); 672 $searchForm->setHiddenField('do', 'search'); 673 $searchForm->setHiddenField('id', $ID); 674 $searchForm->addTextInput('q') 675 ->addClass('edit') 676 ->attrs([ 677 'title' => '[F]', 678 'accesskey' => 'f', 679 'placeholder' => $lang['btn_search'], 680 'autocomplete' => $autocomplete ? 'on' : 'off', 681 ]) 682 ->id('qsearch__in') 683 ->val($ACT === 'search' ? $QUERY : '') 684 ->useInput(false) 685 ; 686 $searchForm->addButton('', $lang['btn_search'])->attrs([ 687 'type' => 'submit', 688 'title' => $lang['btn_search'], 689 ]); 690 if ($ajax) { 691 $searchForm->addTagOpen('div')->id('qsearch__out')->addClass('ajax_qsearch JSpopup'); 692 $searchForm->addTagClose('div'); 693 } 694 $searchForm->addTagClose('div'); 695 696 echo $searchForm->toHTML(); 697 698 return true; 699} 700 701/** 702 * Print the breadcrumbs trace 703 * 704 * @author Andreas Gohr <andi@splitbrain.org> 705 * 706 * @param string $sep Separator between entries 707 * @param bool $return return or print 708 * @return bool|string 709 */ 710function tpl_breadcrumbs($sep = null, $return = false) { 711 global $lang; 712 global $conf; 713 714 //check if enabled 715 if(!$conf['breadcrumbs']) return false; 716 717 //set default 718 if(is_null($sep)) $sep = '•'; 719 720 $out=''; 721 722 $crumbs = breadcrumbs(); //setup crumb trace 723 724 $crumbs_sep = ' <span class="bcsep">'.$sep.'</span> '; 725 726 //render crumbs, highlight the last one 727 $out .= '<span class="bchead">'.$lang['breadcrumb'].'</span>'; 728 $last = count($crumbs); 729 $i = 0; 730 foreach($crumbs as $id => $name) { 731 $i++; 732 $out .= $crumbs_sep; 733 if($i == $last) $out .= '<span class="curid">'; 734 $out .= '<bdi>' . tpl_link(wl($id), hsc($name), 'class="breadcrumbs" title="'.$id.'"', true) . '</bdi>'; 735 if($i == $last) $out .= '</span>'; 736 } 737 if($return) return $out; 738 print $out; 739 return $out ? true : false; 740} 741 742/** 743 * Hierarchical breadcrumbs 744 * 745 * This code was suggested as replacement for the usual breadcrumbs. 746 * It only makes sense with a deep site structure. 747 * 748 * @author Andreas Gohr <andi@splitbrain.org> 749 * @author Nigel McNie <oracle.shinoda@gmail.com> 750 * @author Sean Coates <sean@caedmon.net> 751 * @author <fredrik@averpil.com> 752 * @todo May behave strangely in RTL languages 753 * 754 * @param string $sep Separator between entries 755 * @param bool $return return or print 756 * @return bool|string 757 */ 758function tpl_youarehere($sep = null, $return = false) { 759 global $conf; 760 global $ID; 761 global $lang; 762 763 // check if enabled 764 if(!$conf['youarehere']) return false; 765 766 //set default 767 if(is_null($sep)) $sep = ' » '; 768 769 $out = ''; 770 771 $parts = explode(':', $ID); 772 $count = count($parts); 773 774 $out .= '<span class="bchead">'.$lang['youarehere'].' </span>'; 775 776 // always print the startpage 777 $out .= '<span class="home">' . tpl_pagelink(':'.$conf['start'], null, true) . '</span>'; 778 779 // print intermediate namespace links 780 $part = ''; 781 for($i = 0; $i < $count - 1; $i++) { 782 $part .= $parts[$i].':'; 783 $page = $part; 784 if($page == $conf['start']) continue; // Skip startpage 785 786 // output 787 $out .= $sep . tpl_pagelink($page, null, true); 788 } 789 790 // print current page, skipping start page, skipping for namespace index 791 resolve_pageid('', $page, $exists); 792 if(isset($page) && $page == $part.$parts[$i]) return true; 793 $page = $part.$parts[$i]; 794 if($page == $conf['start']) return true; 795 $out .= $sep; 796 $out .= tpl_pagelink($page, null, true); 797 if($return) return $out; 798 print $out; 799 return $out ? true : false; 800} 801 802/** 803 * Print info if the user is logged in 804 * and show full name in that case 805 * 806 * Could be enhanced with a profile link in future? 807 * 808 * @author Andreas Gohr <andi@splitbrain.org> 809 * 810 * @return bool 811 */ 812function tpl_userinfo() { 813 global $lang; 814 /** @var Input $INPUT */ 815 global $INPUT; 816 817 if($INPUT->server->str('REMOTE_USER')) { 818 print $lang['loggedinas'].' '.userlink(); 819 return true; 820 } 821 return false; 822} 823 824/** 825 * Print some info about the current page 826 * 827 * @author Andreas Gohr <andi@splitbrain.org> 828 * 829 * @param bool $ret return content instead of printing it 830 * @return bool|string 831 */ 832function tpl_pageinfo($ret = false) { 833 global $conf; 834 global $lang; 835 global $INFO; 836 global $ID; 837 838 // return if we are not allowed to view the page 839 if(!auth_quickaclcheck($ID)) { 840 return false; 841 } 842 843 // prepare date and path 844 $fn = $INFO['filepath']; 845 if(!$conf['fullpath']) { 846 if($INFO['rev']) { 847 $fn = str_replace($conf['olddir'].'/', '', $fn); 848 } else { 849 $fn = str_replace($conf['datadir'].'/', '', $fn); 850 } 851 } 852 $fn = utf8_decodeFN($fn); 853 $date = dformat($INFO['lastmod']); 854 855 // print it 856 if($INFO['exists']) { 857 $out = ''; 858 $out .= '<bdi>'.$fn.'</bdi>'; 859 $out .= ' · '; 860 $out .= $lang['lastmod']; 861 $out .= ' '; 862 $out .= $date; 863 if($INFO['editor']) { 864 $out .= ' '.$lang['by'].' '; 865 $out .= '<bdi>'.editorinfo($INFO['editor']).'</bdi>'; 866 } else { 867 $out .= ' ('.$lang['external_edit'].')'; 868 } 869 if($INFO['locked']) { 870 $out .= ' · '; 871 $out .= $lang['lockedby']; 872 $out .= ' '; 873 $out .= '<bdi>'.editorinfo($INFO['locked']).'</bdi>'; 874 } 875 if($ret) { 876 return $out; 877 } else { 878 echo $out; 879 return true; 880 } 881 } 882 return false; 883} 884 885/** 886 * Prints or returns the name of the given page (current one if none given). 887 * 888 * If useheading is enabled this will use the first headline else 889 * the given ID is used. 890 * 891 * @author Andreas Gohr <andi@splitbrain.org> 892 * 893 * @param string $id page id 894 * @param bool $ret return content instead of printing 895 * @return bool|string 896 */ 897function tpl_pagetitle($id = null, $ret = false) { 898 global $ACT, $INPUT, $conf, $lang; 899 900 if(is_null($id)) { 901 global $ID; 902 $id = $ID; 903 } 904 905 $name = $id; 906 if(useHeading('navigation')) { 907 $first_heading = p_get_first_heading($id); 908 if($first_heading) $name = $first_heading; 909 } 910 911 // default page title is the page name, modify with the current action 912 switch ($ACT) { 913 // admin functions 914 case 'admin' : 915 $page_title = $lang['btn_admin']; 916 // try to get the plugin name 917 /** @var $plugin DokuWiki_Admin_Plugin */ 918 if ($plugin = plugin_getRequestAdminPlugin()){ 919 $plugin_title = $plugin->getMenuText($conf['lang']); 920 $page_title = $plugin_title ? $plugin_title : $plugin->getPluginName(); 921 } 922 break; 923 924 // user functions 925 case 'login' : 926 case 'profile' : 927 case 'register' : 928 case 'resendpwd' : 929 $page_title = $lang['btn_'.$ACT]; 930 break; 931 932 // wiki functions 933 case 'search' : 934 case 'index' : 935 $page_title = $lang['btn_'.$ACT]; 936 break; 937 938 // page functions 939 case 'edit' : 940 $page_title = "✎ ".$name; 941 break; 942 943 case 'revisions' : 944 $page_title = $name . ' - ' . $lang['btn_revs']; 945 break; 946 947 case 'backlink' : 948 case 'recent' : 949 case 'subscribe' : 950 $page_title = $name . ' - ' . $lang['btn_'.$ACT]; 951 break; 952 953 default : // SHOW and anything else not included 954 $page_title = $name; 955 } 956 957 if($ret) { 958 return hsc($page_title); 959 } else { 960 print hsc($page_title); 961 return true; 962 } 963} 964 965/** 966 * Returns the requested EXIF/IPTC tag from the current image 967 * 968 * If $tags is an array all given tags are tried until a 969 * value is found. If no value is found $alt is returned. 970 * 971 * Which texts are known is defined in the functions _exifTagNames 972 * and _iptcTagNames() in inc/jpeg.php (You need to prepend IPTC 973 * to the names of the latter one) 974 * 975 * Only allowed in: detail.php 976 * 977 * @author Andreas Gohr <andi@splitbrain.org> 978 * 979 * @param array|string $tags tag or array of tags to try 980 * @param string $alt alternative output if no data was found 981 * @param null|string $src the image src, uses global $SRC if not given 982 * @return string 983 */ 984function tpl_img_getTag($tags, $alt = '', $src = null) { 985 // Init Exif Reader 986 global $SRC; 987 988 if(is_null($src)) $src = $SRC; 989 990 static $meta = null; 991 if(is_null($meta)) $meta = new JpegMeta($src); 992 if($meta === false) return $alt; 993 $info = cleanText($meta->getField($tags)); 994 if($info == false) return $alt; 995 return $info; 996} 997 998/** 999 * Returns a description list of the metatags of the current image 1000 * 1001 * @return string html of description list 1002 */ 1003function tpl_img_meta() { 1004 global $lang; 1005 1006 $tags = tpl_get_img_meta(); 1007 1008 echo '<dl>'; 1009 foreach($tags as $tag) { 1010 $label = $lang[$tag['langkey']]; 1011 if(!$label) $label = $tag['langkey'] . ':'; 1012 1013 echo '<dt>'.$label.'</dt><dd>'; 1014 if ($tag['type'] == 'date') { 1015 echo dformat($tag['value']); 1016 } else { 1017 echo hsc($tag['value']); 1018 } 1019 echo '</dd>'; 1020 } 1021 echo '</dl>'; 1022} 1023 1024/** 1025 * Returns metadata as configured in mediameta config file, ready for creating html 1026 * 1027 * @return array with arrays containing the entries: 1028 * - string langkey key to lookup in the $lang var, if not found printed as is 1029 * - string type type of value 1030 * - string value tag value (unescaped) 1031 */ 1032function tpl_get_img_meta() { 1033 1034 $config_files = getConfigFiles('mediameta'); 1035 foreach ($config_files as $config_file) { 1036 if(file_exists($config_file)) { 1037 include($config_file); 1038 } 1039 } 1040 /** @var array $fields the included array with metadata */ 1041 1042 $tags = array(); 1043 foreach($fields as $tag){ 1044 $t = array(); 1045 if (!empty($tag[0])) { 1046 $t = array($tag[0]); 1047 } 1048 if(is_array($tag[3])) { 1049 $t = array_merge($t,$tag[3]); 1050 } 1051 $value = tpl_img_getTag($t); 1052 if ($value) { 1053 $tags[] = array('langkey' => $tag[1], 'type' => $tag[2], 'value' => $value); 1054 } 1055 } 1056 return $tags; 1057} 1058 1059/** 1060 * Prints the image with a link to the full sized version 1061 * 1062 * Only allowed in: detail.php 1063 * 1064 * @triggers TPL_IMG_DISPLAY 1065 * @param $maxwidth int - maximal width of the image 1066 * @param $maxheight int - maximal height of the image 1067 * @param $link bool - link to the orginal size? 1068 * @param $params array - additional image attributes 1069 * @return bool Result of TPL_IMG_DISPLAY 1070 */ 1071function tpl_img($maxwidth = 0, $maxheight = 0, $link = true, $params = null) { 1072 global $IMG; 1073 /** @var Input $INPUT */ 1074 global $INPUT; 1075 global $REV; 1076 $w = (int) tpl_img_getTag('File.Width'); 1077 $h = (int) tpl_img_getTag('File.Height'); 1078 1079 //resize to given max values 1080 $ratio = 1; 1081 if($w >= $h) { 1082 if($maxwidth && $w >= $maxwidth) { 1083 $ratio = $maxwidth / $w; 1084 } elseif($maxheight && $h > $maxheight) { 1085 $ratio = $maxheight / $h; 1086 } 1087 } else { 1088 if($maxheight && $h >= $maxheight) { 1089 $ratio = $maxheight / $h; 1090 } elseif($maxwidth && $w > $maxwidth) { 1091 $ratio = $maxwidth / $w; 1092 } 1093 } 1094 if($ratio) { 1095 $w = floor($ratio * $w); 1096 $h = floor($ratio * $h); 1097 } 1098 1099 //prepare URLs 1100 $url = ml($IMG, array('cache'=> $INPUT->str('cache'),'rev'=>$REV), true, '&'); 1101 $src = ml($IMG, array('cache'=> $INPUT->str('cache'),'rev'=>$REV, 'w'=> $w, 'h'=> $h), true, '&'); 1102 1103 //prepare attributes 1104 $alt = tpl_img_getTag('Simple.Title'); 1105 if(is_null($params)) { 1106 $p = array(); 1107 } else { 1108 $p = $params; 1109 } 1110 if($w) $p['width'] = $w; 1111 if($h) $p['height'] = $h; 1112 $p['class'] = 'img_detail'; 1113 if($alt) { 1114 $p['alt'] = $alt; 1115 $p['title'] = $alt; 1116 } else { 1117 $p['alt'] = ''; 1118 } 1119 $p['src'] = $src; 1120 1121 $data = array('url'=> ($link ? $url : null), 'params'=> $p); 1122 return trigger_event('TPL_IMG_DISPLAY', $data, '_tpl_img_action', true); 1123} 1124 1125/** 1126 * Default action for TPL_IMG_DISPLAY 1127 * 1128 * @param array $data 1129 * @return bool 1130 */ 1131function _tpl_img_action($data) { 1132 global $lang; 1133 $p = buildAttributes($data['params']); 1134 1135 if($data['url']) print '<a href="'.hsc($data['url']).'" title="'.$lang['mediaview'].'">'; 1136 print '<img '.$p.'/>'; 1137 if($data['url']) print '</a>'; 1138 return true; 1139} 1140 1141/** 1142 * This function inserts a small gif which in reality is the indexer function. 1143 * 1144 * Should be called somewhere at the very end of the main.php 1145 * template 1146 * 1147 * @return bool 1148 */ 1149function tpl_indexerWebBug() { 1150 global $ID; 1151 1152 $p = array(); 1153 $p['src'] = DOKU_BASE.'lib/exe/indexer.php?id='.rawurlencode($ID). 1154 '&'.time(); 1155 $p['width'] = 2; //no more 1x1 px image because we live in times of ad blockers... 1156 $p['height'] = 1; 1157 $p['alt'] = ''; 1158 $att = buildAttributes($p); 1159 print "<img $att />"; 1160 return true; 1161} 1162 1163/** 1164 * tpl_getConf($id) 1165 * 1166 * use this function to access template configuration variables 1167 * 1168 * @param string $id name of the value to access 1169 * @param mixed $notset what to return if the setting is not available 1170 * @return mixed 1171 */ 1172function tpl_getConf($id, $notset=false) { 1173 global $conf; 1174 static $tpl_configloaded = false; 1175 1176 $tpl = $conf['template']; 1177 1178 if(!$tpl_configloaded) { 1179 $tconf = tpl_loadConfig(); 1180 if($tconf !== false) { 1181 foreach($tconf as $key => $value) { 1182 if(isset($conf['tpl'][$tpl][$key])) continue; 1183 $conf['tpl'][$tpl][$key] = $value; 1184 } 1185 $tpl_configloaded = true; 1186 } 1187 } 1188 1189 if(isset($conf['tpl'][$tpl][$id])){ 1190 return $conf['tpl'][$tpl][$id]; 1191 } 1192 1193 return $notset; 1194} 1195 1196/** 1197 * tpl_loadConfig() 1198 * 1199 * reads all template configuration variables 1200 * this function is automatically called by tpl_getConf() 1201 * 1202 * @return array 1203 */ 1204function tpl_loadConfig() { 1205 1206 $file = tpl_incdir().'/conf/default.php'; 1207 $conf = array(); 1208 1209 if(!file_exists($file)) return false; 1210 1211 // load default config file 1212 include($file); 1213 1214 return $conf; 1215} 1216 1217// language methods 1218/** 1219 * tpl_getLang($id) 1220 * 1221 * use this function to access template language variables 1222 * 1223 * @param string $id key of language string 1224 * @return string 1225 */ 1226function tpl_getLang($id) { 1227 static $lang = array(); 1228 1229 if(count($lang) === 0) { 1230 global $conf, $config_cascade; // definitely don't invoke "global $lang" 1231 1232 $path = tpl_incdir() . 'lang/'; 1233 1234 $lang = array(); 1235 1236 // don't include once 1237 @include($path . 'en/lang.php'); 1238 foreach($config_cascade['lang']['template'] as $config_file) { 1239 if(file_exists($config_file . $conf['template'] . '/en/lang.php')) { 1240 include($config_file . $conf['template'] . '/en/lang.php'); 1241 } 1242 } 1243 1244 if($conf['lang'] != 'en') { 1245 @include($path . $conf['lang'] . '/lang.php'); 1246 foreach($config_cascade['lang']['template'] as $config_file) { 1247 if(file_exists($config_file . $conf['template'] . '/' . $conf['lang'] . '/lang.php')) { 1248 include($config_file . $conf['template'] . '/' . $conf['lang'] . '/lang.php'); 1249 } 1250 } 1251 } 1252 } 1253 return $lang[$id]; 1254} 1255 1256/** 1257 * Retrieve a language dependent file and pass to xhtml renderer for display 1258 * template equivalent of p_locale_xhtml() 1259 * 1260 * @param string $id id of language dependent wiki page 1261 * @return string parsed contents of the wiki page in xhtml format 1262 */ 1263function tpl_locale_xhtml($id) { 1264 return p_cached_output(tpl_localeFN($id)); 1265} 1266 1267/** 1268 * Prepends appropriate path for a language dependent filename 1269 * 1270 * @param string $id id of localized text 1271 * @return string wiki text 1272 */ 1273function tpl_localeFN($id) { 1274 $path = tpl_incdir().'lang/'; 1275 global $conf; 1276 $file = DOKU_CONF.'template_lang/'.$conf['template'].'/'.$conf['lang'].'/'.$id.'.txt'; 1277 if (!file_exists($file)){ 1278 $file = $path.$conf['lang'].'/'.$id.'.txt'; 1279 if(!file_exists($file)){ 1280 //fall back to english 1281 $file = $path.'en/'.$id.'.txt'; 1282 } 1283 } 1284 return $file; 1285} 1286 1287/** 1288 * prints the "main content" in the mediamanager popup 1289 * 1290 * Depending on the user's actions this may be a list of 1291 * files in a namespace, the meta editing dialog or 1292 * a message of referencing pages 1293 * 1294 * Only allowed in mediamanager.php 1295 * 1296 * @triggers MEDIAMANAGER_CONTENT_OUTPUT 1297 * @param bool $fromajax - set true when calling this function via ajax 1298 * @param string $sort 1299 * 1300 * @author Andreas Gohr <andi@splitbrain.org> 1301 */ 1302function tpl_mediaContent($fromajax = false, $sort='natural') { 1303 global $IMG; 1304 global $AUTH; 1305 global $INUSE; 1306 global $NS; 1307 global $JUMPTO; 1308 /** @var Input $INPUT */ 1309 global $INPUT; 1310 1311 $do = $INPUT->extract('do')->str('do'); 1312 if(in_array($do, array('save', 'cancel'))) $do = ''; 1313 1314 if(!$do) { 1315 if($INPUT->bool('edit')) { 1316 $do = 'metaform'; 1317 } elseif(is_array($INUSE)) { 1318 $do = 'filesinuse'; 1319 } else { 1320 $do = 'filelist'; 1321 } 1322 } 1323 1324 // output the content pane, wrapped in an event. 1325 if(!$fromajax) ptln('<div id="media__content">'); 1326 $data = array('do' => $do); 1327 $evt = new Doku_Event('MEDIAMANAGER_CONTENT_OUTPUT', $data); 1328 if($evt->advise_before()) { 1329 $do = $data['do']; 1330 if($do == 'filesinuse') { 1331 media_filesinuse($INUSE, $IMG); 1332 } elseif($do == 'filelist') { 1333 media_filelist($NS, $AUTH, $JUMPTO,false,$sort); 1334 } elseif($do == 'searchlist') { 1335 media_searchlist($INPUT->str('q'), $NS, $AUTH); 1336 } else { 1337 msg('Unknown action '.hsc($do), -1); 1338 } 1339 } 1340 $evt->advise_after(); 1341 unset($evt); 1342 if(!$fromajax) ptln('</div>'); 1343 1344} 1345 1346/** 1347 * Prints the central column in full-screen media manager 1348 * Depending on the opened tab this may be a list of 1349 * files in a namespace, upload form or search form 1350 * 1351 * @author Kate Arzamastseva <pshns@ukr.net> 1352 */ 1353function tpl_mediaFileList() { 1354 global $AUTH; 1355 global $NS; 1356 global $JUMPTO; 1357 global $lang; 1358 /** @var Input $INPUT */ 1359 global $INPUT; 1360 1361 $opened_tab = $INPUT->str('tab_files'); 1362 if(!$opened_tab || !in_array($opened_tab, array('files', 'upload', 'search'))) $opened_tab = 'files'; 1363 if($INPUT->str('mediado') == 'update') $opened_tab = 'upload'; 1364 1365 echo '<h2 class="a11y">'.$lang['mediaselect'].'</h2>'.NL; 1366 1367 media_tabs_files($opened_tab); 1368 1369 echo '<div class="panelHeader">'.NL; 1370 echo '<h3>'; 1371 $tabTitle = ($NS) ? $NS : '['.$lang['mediaroot'].']'; 1372 printf($lang['media_'.$opened_tab], '<strong>'.hsc($tabTitle).'</strong>'); 1373 echo '</h3>'.NL; 1374 if($opened_tab === 'search' || $opened_tab === 'files') { 1375 media_tab_files_options(); 1376 } 1377 echo '</div>'.NL; 1378 1379 echo '<div class="panelContent">'.NL; 1380 if($opened_tab == 'files') { 1381 media_tab_files($NS, $AUTH, $JUMPTO); 1382 } elseif($opened_tab == 'upload') { 1383 media_tab_upload($NS, $AUTH, $JUMPTO); 1384 } elseif($opened_tab == 'search') { 1385 media_tab_search($NS, $AUTH); 1386 } 1387 echo '</div>'.NL; 1388} 1389 1390/** 1391 * Prints the third column in full-screen media manager 1392 * Depending on the opened tab this may be details of the 1393 * selected file, the meta editing dialog or 1394 * list of file revisions 1395 * 1396 * @author Kate Arzamastseva <pshns@ukr.net> 1397 * 1398 * @param string $image 1399 * @param boolean $rev 1400 */ 1401function tpl_mediaFileDetails($image, $rev) { 1402 global $conf, $DEL, $lang; 1403 /** @var Input $INPUT */ 1404 global $INPUT; 1405 1406 $removed = (!file_exists(mediaFN($image)) && file_exists(mediaMetaFN($image, '.changes')) && $conf['mediarevisions']); 1407 if(!$image || (!file_exists(mediaFN($image)) && !$removed) || $DEL) return; 1408 if($rev && !file_exists(mediaFN($image, $rev))) $rev = false; 1409 $ns = getNS($image); 1410 $do = $INPUT->str('mediado'); 1411 1412 $opened_tab = $INPUT->str('tab_details'); 1413 1414 $tab_array = array('view'); 1415 list(, $mime) = mimetype($image); 1416 if($mime == 'image/jpeg') { 1417 $tab_array[] = 'edit'; 1418 } 1419 if($conf['mediarevisions']) { 1420 $tab_array[] = 'history'; 1421 } 1422 1423 if(!$opened_tab || !in_array($opened_tab, $tab_array)) $opened_tab = 'view'; 1424 if($INPUT->bool('edit')) $opened_tab = 'edit'; 1425 if($do == 'restore') $opened_tab = 'view'; 1426 1427 media_tabs_details($image, $opened_tab); 1428 1429 echo '<div class="panelHeader"><h3>'; 1430 list($ext) = mimetype($image, false); 1431 $class = preg_replace('/[^_\-a-z0-9]+/i', '_', $ext); 1432 $class = 'select mediafile mf_'.$class; 1433 $attributes = $rev ? ['rev' => $rev] : []; 1434 $tabTitle = '<strong><a href="'.ml($image, $attributes).'" class="'.$class.'" title="'.$lang['mediaview'].'">'.$image.'</a>'.'</strong>'; 1435 if($opened_tab === 'view' && $rev) { 1436 printf($lang['media_viewold'], $tabTitle, dformat($rev)); 1437 } else { 1438 printf($lang['media_'.$opened_tab], $tabTitle); 1439 } 1440 1441 echo '</h3></div>'.NL; 1442 1443 echo '<div class="panelContent">'.NL; 1444 1445 if($opened_tab == 'view') { 1446 media_tab_view($image, $ns, null, $rev); 1447 1448 } elseif($opened_tab == 'edit' && !$removed) { 1449 media_tab_edit($image, $ns); 1450 1451 } elseif($opened_tab == 'history' && $conf['mediarevisions']) { 1452 media_tab_history($image, $ns); 1453 } 1454 1455 echo '</div>'.NL; 1456} 1457 1458/** 1459 * prints the namespace tree in the mediamanager popup 1460 * 1461 * Only allowed in mediamanager.php 1462 * 1463 * @author Andreas Gohr <andi@splitbrain.org> 1464 */ 1465function tpl_mediaTree() { 1466 global $NS; 1467 ptln('<div id="media__tree">'); 1468 media_nstree($NS); 1469 ptln('</div>'); 1470} 1471 1472/** 1473 * Print a dropdown menu with all DokuWiki actions 1474 * 1475 * Note: this will not use any pretty URLs 1476 * 1477 * @author Andreas Gohr <andi@splitbrain.org> 1478 * 1479 * @param string $empty empty option label 1480 * @param string $button submit button label 1481 * @deprecated 2017-09-01 see devel:menus 1482 */ 1483function tpl_actiondropdown($empty = '', $button = '>') { 1484 dbg_deprecated('see devel:menus'); 1485 $menu = new \dokuwiki\Menu\MobileMenu(); 1486 echo $menu->getDropdown($empty, $button); 1487} 1488 1489/** 1490 * Print a informational line about the used license 1491 * 1492 * @author Andreas Gohr <andi@splitbrain.org> 1493 * @param string $img print image? (|button|badge) 1494 * @param bool $imgonly skip the textual description? 1495 * @param bool $return when true don't print, but return HTML 1496 * @param bool $wrap wrap in div with class="license"? 1497 * @return string 1498 */ 1499function tpl_license($img = 'badge', $imgonly = false, $return = false, $wrap = true) { 1500 global $license; 1501 global $conf; 1502 global $lang; 1503 if(!$conf['license']) return ''; 1504 if(!is_array($license[$conf['license']])) return ''; 1505 $lic = $license[$conf['license']]; 1506 $target = ($conf['target']['extern']) ? ' target="'.$conf['target']['extern'].'"' : ''; 1507 1508 $out = ''; 1509 if($wrap) $out .= '<div class="license">'; 1510 if($img) { 1511 $src = license_img($img); 1512 if($src) { 1513 $out .= '<a href="'.$lic['url'].'" rel="license"'.$target; 1514 $out .= '><img src="'.DOKU_BASE.$src.'" alt="'.$lic['name'].'" /></a>'; 1515 if(!$imgonly) $out .= ' '; 1516 } 1517 } 1518 if(!$imgonly) { 1519 $out .= $lang['license'].' '; 1520 $out .= '<bdi><a href="'.$lic['url'].'" rel="license" class="urlextern"'.$target; 1521 $out .= '>'.$lic['name'].'</a></bdi>'; 1522 } 1523 if($wrap) $out .= '</div>'; 1524 1525 if($return) return $out; 1526 echo $out; 1527 return ''; 1528} 1529 1530/** 1531 * Includes the rendered HTML of a given page 1532 * 1533 * This function is useful to populate sidebars or similar features in a 1534 * template 1535 * 1536 * @param string $pageid The page name you want to include 1537 * @param bool $print Should the content be printed or returned only 1538 * @param bool $propagate Search higher namespaces, too? 1539 * @param bool $useacl Include the page only if the ACLs check out? 1540 * @return bool|null|string 1541 */ 1542function tpl_include_page($pageid, $print = true, $propagate = false, $useacl = true) { 1543 if($propagate) { 1544 $pageid = page_findnearest($pageid, $useacl); 1545 } elseif($useacl && auth_quickaclcheck($pageid) == AUTH_NONE) { 1546 return false; 1547 } 1548 if(!$pageid) return false; 1549 1550 global $TOC; 1551 $oldtoc = $TOC; 1552 $html = p_wiki_xhtml($pageid, '', false); 1553 $TOC = $oldtoc; 1554 1555 if($print) echo $html; 1556 return $html; 1557} 1558 1559/** 1560 * Display the subscribe form 1561 * 1562 * @author Adrian Lang <lang@cosmocode.de> 1563 */ 1564function tpl_subscribe() { 1565 global $INFO; 1566 global $ID; 1567 global $lang; 1568 global $conf; 1569 $stime_days = $conf['subscribe_time'] / 60 / 60 / 24; 1570 1571 echo p_locale_xhtml('subscr_form'); 1572 echo '<h2>'.$lang['subscr_m_current_header'].'</h2>'; 1573 echo '<div class="level2">'; 1574 if($INFO['subscribed'] === false) { 1575 echo '<p>'.$lang['subscr_m_not_subscribed'].'</p>'; 1576 } else { 1577 echo '<ul>'; 1578 foreach($INFO['subscribed'] as $sub) { 1579 echo '<li><div class="li">'; 1580 if($sub['target'] !== $ID) { 1581 echo '<code class="ns">'.hsc(prettyprint_id($sub['target'])).'</code>'; 1582 } else { 1583 echo '<code class="page">'.hsc(prettyprint_id($sub['target'])).'</code>'; 1584 } 1585 $sstl = sprintf($lang['subscr_style_'.$sub['style']], $stime_days); 1586 if(!$sstl) $sstl = hsc($sub['style']); 1587 echo ' ('.$sstl.') '; 1588 1589 echo '<a href="'.wl( 1590 $ID, 1591 array( 1592 'do' => 'subscribe', 1593 'sub_target'=> $sub['target'], 1594 'sub_style' => $sub['style'], 1595 'sub_action'=> 'unsubscribe', 1596 'sectok' => getSecurityToken() 1597 ) 1598 ). 1599 '" class="unsubscribe">'.$lang['subscr_m_unsubscribe']. 1600 '</a></div></li>'; 1601 } 1602 echo '</ul>'; 1603 } 1604 echo '</div>'; 1605 1606 // Add new subscription form 1607 echo '<h2>'.$lang['subscr_m_new_header'].'</h2>'; 1608 echo '<div class="level2">'; 1609 $ns = getNS($ID).':'; 1610 $targets = array( 1611 $ID => '<code class="page">'.prettyprint_id($ID).'</code>', 1612 $ns => '<code class="ns">'.prettyprint_id($ns).'</code>', 1613 ); 1614 $styles = array( 1615 'every' => $lang['subscr_style_every'], 1616 'digest' => sprintf($lang['subscr_style_digest'], $stime_days), 1617 'list' => sprintf($lang['subscr_style_list'], $stime_days), 1618 ); 1619 1620 $form = new Doku_Form(array('id' => 'subscribe__form')); 1621 $form->startFieldset($lang['subscr_m_subscribe']); 1622 $form->addRadioSet('sub_target', $targets); 1623 $form->startFieldset($lang['subscr_m_receive']); 1624 $form->addRadioSet('sub_style', $styles); 1625 $form->addHidden('sub_action', 'subscribe'); 1626 $form->addHidden('do', 'subscribe'); 1627 $form->addHidden('id', $ID); 1628 $form->endFieldset(); 1629 $form->addElement(form_makeButton('submit', 'subscribe', $lang['subscr_m_subscribe'])); 1630 html_form('SUBSCRIBE', $form); 1631 echo '</div>'; 1632} 1633 1634/** 1635 * Tries to send already created content right to the browser 1636 * 1637 * Wraps around ob_flush() and flush() 1638 * 1639 * @author Andreas Gohr <andi@splitbrain.org> 1640 */ 1641function tpl_flush() { 1642 ob_flush(); 1643 flush(); 1644} 1645 1646/** 1647 * Tries to find a ressource file in the given locations. 1648 * 1649 * If a given location starts with a colon it is assumed to be a media 1650 * file, otherwise it is assumed to be relative to the current template 1651 * 1652 * @param string[] $search locations to look at 1653 * @param bool $abs if to use absolute URL 1654 * @param array &$imginfo filled with getimagesize() 1655 * @return string 1656 * 1657 * @author Andreas Gohr <andi@splitbrain.org> 1658 */ 1659function tpl_getMediaFile($search, $abs = false, &$imginfo = null) { 1660 $img = ''; 1661 $file = ''; 1662 $ismedia = false; 1663 // loop through candidates until a match was found: 1664 foreach($search as $img) { 1665 if(substr($img, 0, 1) == ':') { 1666 $file = mediaFN($img); 1667 $ismedia = true; 1668 } else { 1669 $file = tpl_incdir().$img; 1670 $ismedia = false; 1671 } 1672 1673 if(file_exists($file)) break; 1674 } 1675 1676 // fetch image data if requested 1677 if(!is_null($imginfo)) { 1678 $imginfo = getimagesize($file); 1679 } 1680 1681 // build URL 1682 if($ismedia) { 1683 $url = ml($img, '', true, '', $abs); 1684 } else { 1685 $url = tpl_basedir().$img; 1686 if($abs) $url = DOKU_URL.substr($url, strlen(DOKU_REL)); 1687 } 1688 1689 return $url; 1690} 1691 1692/** 1693 * PHP include a file 1694 * 1695 * either from the conf directory if it exists, otherwise use 1696 * file in the template's root directory. 1697 * 1698 * The function honours config cascade settings and looks for the given 1699 * file next to the ´main´ config files, in the order protected, local, 1700 * default. 1701 * 1702 * Note: no escaping or sanity checking is done here. Never pass user input 1703 * to this function! 1704 * 1705 * @author Anika Henke <anika@selfthinker.org> 1706 * @author Andreas Gohr <andi@splitbrain.org> 1707 * 1708 * @param string $file 1709 */ 1710function tpl_includeFile($file) { 1711 global $config_cascade; 1712 foreach(array('protected', 'local', 'default') as $config_group) { 1713 if(empty($config_cascade['main'][$config_group])) continue; 1714 foreach($config_cascade['main'][$config_group] as $conf_file) { 1715 $dir = dirname($conf_file); 1716 if(file_exists("$dir/$file")) { 1717 include("$dir/$file"); 1718 return; 1719 } 1720 } 1721 } 1722 1723 // still here? try the template dir 1724 $file = tpl_incdir().$file; 1725 if(file_exists($file)) { 1726 include($file); 1727 } 1728} 1729 1730/** 1731 * Returns <link> tag for various icon types (favicon|mobile|generic) 1732 * 1733 * @author Anika Henke <anika@selfthinker.org> 1734 * 1735 * @param array $types - list of icon types to display (favicon|mobile|generic) 1736 * @return string 1737 */ 1738function tpl_favicon($types = array('favicon')) { 1739 1740 $return = ''; 1741 1742 foreach($types as $type) { 1743 switch($type) { 1744 case 'favicon': 1745 $look = array(':wiki:favicon.ico', ':favicon.ico', 'images/favicon.ico'); 1746 $return .= '<link rel="shortcut icon" href="'.tpl_getMediaFile($look).'" />'.NL; 1747 break; 1748 case 'mobile': 1749 $look = array(':wiki:apple-touch-icon.png', ':apple-touch-icon.png', 'images/apple-touch-icon.png'); 1750 $return .= '<link rel="apple-touch-icon" href="'.tpl_getMediaFile($look).'" />'.NL; 1751 break; 1752 case 'generic': 1753 // ideal world solution, which doesn't work in any browser yet 1754 $look = array(':wiki:favicon.svg', ':favicon.svg', 'images/favicon.svg'); 1755 $return .= '<link rel="icon" href="'.tpl_getMediaFile($look).'" type="image/svg+xml" />'.NL; 1756 break; 1757 } 1758 } 1759 1760 return $return; 1761} 1762 1763/** 1764 * Prints full-screen media manager 1765 * 1766 * @author Kate Arzamastseva <pshns@ukr.net> 1767 */ 1768function tpl_media() { 1769 global $NS, $IMG, $JUMPTO, $REV, $lang, $fullscreen, $INPUT; 1770 $fullscreen = true; 1771 require_once DOKU_INC.'lib/exe/mediamanager.php'; 1772 1773 $rev = ''; 1774 $image = cleanID($INPUT->str('image')); 1775 if(isset($IMG)) $image = $IMG; 1776 if(isset($JUMPTO)) $image = $JUMPTO; 1777 if(isset($REV) && !$JUMPTO) $rev = $REV; 1778 1779 echo '<div id="mediamanager__page">'.NL; 1780 echo '<h1>'.$lang['btn_media'].'</h1>'.NL; 1781 html_msgarea(); 1782 1783 echo '<div class="panel namespaces">'.NL; 1784 echo '<h2>'.$lang['namespaces'].'</h2>'.NL; 1785 echo '<div class="panelHeader">'; 1786 echo $lang['media_namespaces']; 1787 echo '</div>'.NL; 1788 1789 echo '<div class="panelContent" id="media__tree">'.NL; 1790 media_nstree($NS); 1791 echo '</div>'.NL; 1792 echo '</div>'.NL; 1793 1794 echo '<div class="panel filelist">'.NL; 1795 tpl_mediaFileList(); 1796 echo '</div>'.NL; 1797 1798 echo '<div class="panel file">'.NL; 1799 echo '<h2 class="a11y">'.$lang['media_file'].'</h2>'.NL; 1800 tpl_mediaFileDetails($image, $rev); 1801 echo '</div>'.NL; 1802 1803 echo '</div>'.NL; 1804} 1805 1806/** 1807 * Return useful layout classes 1808 * 1809 * @author Anika Henke <anika@selfthinker.org> 1810 * 1811 * @return string 1812 */ 1813function tpl_classes() { 1814 global $ACT, $conf, $ID, $INFO; 1815 /** @var Input $INPUT */ 1816 global $INPUT; 1817 1818 $classes = array( 1819 'dokuwiki', 1820 'mode_'.$ACT, 1821 'tpl_'.$conf['template'], 1822 $INPUT->server->bool('REMOTE_USER') ? 'loggedIn' : '', 1823 $INFO['exists'] ? '' : 'notFound', 1824 ($ID == $conf['start']) ? 'home' : '', 1825 ); 1826 return join(' ', $classes); 1827} 1828 1829/** 1830 * Create event for tools menues 1831 * 1832 * @author Anika Henke <anika@selfthinker.org> 1833 * @param string $toolsname name of menu 1834 * @param array $items 1835 * @param string $view e.g. 'main', 'detail', ... 1836 * @deprecated 2017-09-01 see devel:menus 1837 */ 1838function tpl_toolsevent($toolsname, $items, $view = 'main') { 1839 dbg_deprecated('see devel:menus'); 1840 $data = array( 1841 'view' => $view, 1842 'items' => $items 1843 ); 1844 1845 $hook = 'TEMPLATE_' . strtoupper($toolsname) . '_DISPLAY'; 1846 $evt = new Doku_Event($hook, $data); 1847 if($evt->advise_before()) { 1848 foreach($evt->data['items'] as $k => $html) echo $html; 1849 } 1850 $evt->advise_after(); 1851} 1852 1853//Setup VIM: ex: et ts=4 : 1854 1855