You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

139 lines
3.9 KiB

14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
  1. <?php
  2. /**
  3. * Template Functions
  4. *
  5. * This file provides template specific custom functions that are
  6. * not provided by the DokuWiki core.
  7. * It is common practice to start each function with an underscore
  8. * to make sure it won't interfere with future core functions.
  9. */
  10. // must be run from within DokuWiki
  11. if (!defined('DOKU_INC')) die();
  12. /**
  13. * Create link/button to discussion page and back
  14. *
  15. * @author Anika Henke <anika@selfthinker.org>
  16. */
  17. function _tpl_discussion($discussionPage,$title,$backTitle,$link=0,$wrapper=0) {
  18. global $ID;
  19. $discussPage = str_replace('@ID@',$ID,$discussionPage);
  20. $discussPageRaw = str_replace('@ID@','',$discussionPage);
  21. $isDiscussPage = strpos($ID,$discussPageRaw)!==false;
  22. $backID = str_replace($discussPageRaw,'',$ID);
  23. if ($wrapper) echo "<$wrapper>";
  24. if ($isDiscussPage) {
  25. if ($link)
  26. tpl_pagelink($backID,$backTitle);
  27. else
  28. echo html_btn('back2article',$backID,'',array(),'get',0,$backTitle);
  29. } else {
  30. if ($link)
  31. tpl_pagelink($discussPage,$title);
  32. else
  33. echo html_btn('discussion',$discussPage,'',array(),'get',0,$title);
  34. }
  35. if ($wrapper) echo "</$wrapper>";
  36. }
  37. /**
  38. * Create link/button to user page
  39. *
  40. * @author Anika Henke <anika@selfthinker.org>
  41. */
  42. function _tpl_userpage($userPage,$title,$link=0,$wrapper=0) {
  43. if (!$_SERVER['REMOTE_USER']) return;
  44. global $conf;
  45. $userPage = str_replace('@USER@',$_SERVER['REMOTE_USER'],$userPage);
  46. if ($wrapper) echo "<$wrapper>";
  47. if ($link)
  48. tpl_pagelink($userPage,$title);
  49. else
  50. echo html_btn('userpage',$userPage,'',array(),'get',0,$title);
  51. if ($wrapper) echo "</$wrapper>";
  52. }
  53. /**
  54. * Create link/button to register page
  55. * DW versions > 2011-02-20 can use the core function tpl_action('register')
  56. *
  57. * @author Anika Henke <anika@selfthinker.org>
  58. */
  59. function _tpl_register($link=0,$wrapper=0) {
  60. global $conf;
  61. global $lang;
  62. global $ID;
  63. $lang_register = !empty($lang['btn_register']) ? $lang['btn_register'] : $lang['register'];
  64. if ($_SERVER['REMOTE_USER'] || !$conf['useacl'] || !actionOK('register')) return;
  65. if ($wrapper) echo "<$wrapper>";
  66. if ($link)
  67. tpl_link(wl($ID,'do=register'),$lang_register,'class="action register" rel="nofollow"');
  68. else
  69. echo html_btn('register',$ID,'',array('do'=>'register'),'get',0,$lang_register);
  70. if ($wrapper) echo "</$wrapper>";
  71. }
  72. /**
  73. * Wrapper around custom template actions
  74. *
  75. * @author Anika Henke <anika@selfthinker.org>
  76. */
  77. function _tpl_action($type,$link=0,$wrapper=0) {
  78. switch ($type) {
  79. case 'discussion':
  80. if (tpl_getConf('discussionPage')) {
  81. _tpl_discussion(tpl_getConf('discussionPage'),tpl_getLang('discussion'),tpl_getLang('back_to_article'),$link,$wrapper);
  82. }
  83. break;
  84. case 'userpage':
  85. if (tpl_getConf('userPage')) {
  86. _tpl_userpage(tpl_getConf('userPage'),tpl_getLang('userpage'),$link,$wrapper);
  87. }
  88. break;
  89. case 'register':
  90. _tpl_register($link,$wrapper);
  91. break;
  92. }
  93. }
  94. /**
  95. * Use favicon.ico from data/media root directory if it exists, otherwise use
  96. * the one in the template's image directory.
  97. * DW versions > 2010-11-12 can use the core function tpl_getFavicon()
  98. *
  99. * @author Anika Henke <anika@selfthinker.org>
  100. */
  101. function _tpl_getFavicon() {
  102. if (file_exists(mediaFN('favicon.ico')))
  103. return ml('favicon.ico');
  104. return DOKU_TPL.'images/favicon.ico';
  105. }
  106. /**
  107. * Include additional html file from conf directory if it exists, otherwise use
  108. * file in the template's root directory.
  109. *
  110. * @author Anika Henke <anika@selfthinker.org>
  111. */
  112. function _tpl_include($fn) {
  113. $confFile = DOKU_CONF.$fn;
  114. $tplFile = dirname(__FILE__).'/'.$fn;
  115. if (file_exists($confFile))
  116. include($confFile);
  117. else if (file_exists($tplFile))
  118. include($tplFile);
  119. }