xref: /dokuwiki/inc/template.php (revision 5c752f6cd18341f7357f7f3a659833db9200dc67)
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
96b13307fSandi  if(!defined('DOKU_INC')) define('DOKU_INC',realpath(dirname(__FILE__).'/../').'/');
10e7cb32dcSAndreas Gohr  require_once(DOKU_CONF.'dokuwiki.php');
116b13307fSandi
126b13307fSandi/**
135a892029SAndreas Gohr * Returns the path to the given template, uses
145a892029SAndreas Gohr * default one if the custom version doesn't exist
155a892029SAndreas Gohr *
165a892029SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
175a892029SAndreas Gohr */
185a892029SAndreas Gohrfunction template($tpl){
195a892029SAndreas Gohr  global $conf;
205a892029SAndreas Gohr
215a892029SAndreas Gohr  if(@is_readable(DOKU_INC.'lib/tpl/'.$conf['template'].'/'.$tpl))
225a892029SAndreas Gohr    return DOKU_INC.'lib/tpl/'.$conf['template'].'/'.$tpl;
235a892029SAndreas Gohr
245a892029SAndreas Gohr  return DOKU_INC.'lib/tpl/default/'.$tpl;
255a892029SAndreas Gohr}
265a892029SAndreas Gohr
275a892029SAndreas Gohr/**
286b13307fSandi * Print the content
296b13307fSandi *
306b13307fSandi * This function is used for printing all the usual content
316b13307fSandi * (defined by the global $ACT var) by calling the appropriate
326b13307fSandi * outputfunction(s) from html.php
336b13307fSandi *
34ee4c4a1bSAndreas Gohr * Everything that doesn't use the main template file isn't
35ee4c4a1bSAndreas Gohr * handled by this function. ACL stuff is not done here either.
366b13307fSandi *
376b13307fSandi * @author Andreas Gohr <andi@splitbrain.org>
386b13307fSandi */
396b13307fSandifunction tpl_content(){
406b13307fSandi  global $ACT;
416b13307fSandi  global $TEXT;
426b13307fSandi  global $PRE;
436b13307fSandi  global $SUF;
446b13307fSandi  global $SUM;
456b13307fSandi  global $IDX;
466b13307fSandi
476b13307fSandi  switch($ACT){
486b13307fSandi    case 'show':
496b13307fSandi      html_show();
506b13307fSandi      break;
51ea67f144Sandi    case 'preview':
526b13307fSandi      html_edit($TEXT);
536b13307fSandi      html_show($TEXT);
546b13307fSandi      break;
55ee4c4a1bSAndreas Gohr    case 'recover':
56ee4c4a1bSAndreas Gohr      html_edit($TEXT);
57ee4c4a1bSAndreas Gohr      break;
586b13307fSandi    case 'edit':
596b13307fSandi      html_edit();
606b13307fSandi      break;
61ee4c4a1bSAndreas Gohr    case 'draft':
62ee4c4a1bSAndreas Gohr      html_draft();
63ee4c4a1bSAndreas Gohr      break;
646b13307fSandi    case 'wordblock':
656b13307fSandi      html_edit($TEXT,'wordblock');
666b13307fSandi      break;
676b13307fSandi    case 'search':
686b13307fSandi      html_search();
696b13307fSandi      break;
706b13307fSandi    case 'revisions':
716b13307fSandi      html_revisions();
726b13307fSandi      break;
736b13307fSandi    case 'diff':
746b13307fSandi      html_diff();
756b13307fSandi      break;
766b13307fSandi    case 'recent':
775749f1ceSmatthiasgrimm      $first = is_numeric($_REQUEST['first']) ? intval($_REQUEST['first']) : 0;
78a39955b0Smatthiasgrimm      html_recent($first);
796b13307fSandi      break;
806b13307fSandi    case 'index':
816b13307fSandi      html_index($IDX); #FIXME can this be pulled from globals? is it sanitized correctly?
826b13307fSandi      break;
836b13307fSandi    case 'backlink':
846b13307fSandi      html_backlinks();
856b13307fSandi      break;
866b13307fSandi    case 'conflict':
876b13307fSandi      html_conflict(con($PRE,$TEXT,$SUF),$SUM);
886b13307fSandi      html_diff(con($PRE,$TEXT,$SUF),false);
896b13307fSandi      break;
906b13307fSandi    case 'locked':
91ee20e7d1Sandi      html_locked();
926b13307fSandi      break;
936b13307fSandi    case 'login':
946b13307fSandi      html_login();
956b13307fSandi      break;
966b13307fSandi    case 'register':
976b13307fSandi      html_register();
986b13307fSandi      break;
998b06d178Schris    case 'resendpwd':
1008b06d178Schris      html_resendpwd();
1018b06d178Schris      break;
102820fa24bSandi    case 'denied':
1035e991bd8Sandi      print p_locale_xhtml('denied');
104820fa24bSandi      break;
1058b06d178Schris    case 'profile' :
1068b06d178Schris      html_updateprofile();
1078b06d178Schris      break;
108c19fe9c0Sandi    case 'admin':
109c19fe9c0Sandi      tpl_admin();
110c19fe9c0Sandi      break;
1116b13307fSandi    default:
112*5c752f6cSchris      $evt = new event('ACTION_TEMPLATE',$ACT);
113*5c752f6cSchris      $evt->advise();
114*5c752f6cSchris      if ($evt->_default)
115ea67f144Sandi        msg("Failed to handle command: ".hsc($ACT),-1);
1166b13307fSandi  }
1176b13307fSandi}
1186b13307fSandi
119c19fe9c0Sandi/**
120c19fe9c0Sandi * Handle the admin page contents
121c19fe9c0Sandi *
122c19fe9c0Sandi * @author Andreas Gohr <andi@splitbrain.org>
123c19fe9c0Sandi */
124c19fe9c0Sandifunction tpl_admin(){
12511e2ce22Schris
12611e2ce22Schris    $plugin = NULL;
12711e2ce22Schris    if ($_REQUEST['page']) {
12811e2ce22Schris        $pluginlist = plugin_list('admin');
12911e2ce22Schris
13011e2ce22Schris        if (in_array($_REQUEST['page'], $pluginlist)) {
13111e2ce22Schris
13211e2ce22Schris          // attempt to load the plugin
13311e2ce22Schris          $plugin =& plugin_load('admin',$_REQUEST['page']);
13411e2ce22Schris        }
13511e2ce22Schris    }
13611e2ce22Schris
13711e2ce22Schris    if ($plugin !== NULL)
13811e2ce22Schris        $plugin->html();
13911e2ce22Schris    else
14011e2ce22Schris        html_admin();
141c19fe9c0Sandi}
1426b13307fSandi
1436b13307fSandi/**
1446b13307fSandi * Print the correct HTML meta headers
1456b13307fSandi *
1466b13307fSandi * This has to go into the head section of your template.
1476b13307fSandi *
148f96fa415SAndreas Gohr * @param  boolean $alt Should feeds and alternative format links be added?
1496b13307fSandi * @author Andreas Gohr <andi@splitbrain.org>
1506b13307fSandi */
151f96fa415SAndreas Gohrfunction tpl_metaheaders($alt=true){
1526b13307fSandi  global $ID;
1536b13307fSandi  global $INFO;
1546b13307fSandi  global $ACT;
1556b13307fSandi  global $lang;
156dc57ef04Sandi  global $conf;
1576b13307fSandi  $it=2;
1586b13307fSandi
1596b13307fSandi  // the usual stuff
1606b13307fSandi  ptln('<meta name="generator" content="DokuWiki '.getVersion().'" />',$it);
1616b13307fSandi  ptln('<link rel="start" href="'.DOKU_BASE.'" />',$it);
1626b13307fSandi  ptln('<link rel="contents" href="'.wl($ID,'do=index').'" title="'.$lang['index'].'" />',$it);
163f96fa415SAndreas Gohr
164f96fa415SAndreas Gohr  if($alt){
1656b13307fSandi    ptln('<link rel="alternate" type="application/rss+xml" title="Recent Changes" href="'.DOKU_BASE.'feed.php" />',$it);
1666b13307fSandi    ptln('<link rel="alternate" type="application/rss+xml" title="Current Namespace" href="'.DOKU_BASE.'feed.php?mode=list&amp;ns='.$INFO['namespace'].'" />',$it);
167f5c2808fSBen Coburn    ptln('<link rel="alternate" type="text/html" title="Plain HTML" href="'.exportlink($ID, 'xhtml').'" />',$it);
168f5c2808fSBen Coburn    ptln('<link rel="alternate" type="text/plain" title="Wiki Markup" href="'.exportlink($ID, 'raw').'" />',$it);
169f96fa415SAndreas Gohr  }
1706b13307fSandi
1716b13307fSandi  // setup robot tags apropriate for different modes
1724f2e0004STim Weber  if( ($ACT=='show' || $ACT=='export_xhtml') && !$REV){
1736b13307fSandi    if($INFO['exists']){
1746b13307fSandi      ptln('<meta name="date" content="'.date('Y-m-d\TH:i:sO',$INFO['lastmod']).'" />',$it);
1756b13307fSandi      //delay indexing:
1766b13307fSandi      if((time() - $INFO['lastmod']) >= $conf['indexdelay']){
1776b13307fSandi        ptln('<meta name="robots" content="index,follow" />',$it);
1786b13307fSandi      }else{
1796b13307fSandi        ptln('<meta name="robots" content="noindex,nofollow" />',$it);
1806b13307fSandi      }
1816b13307fSandi    }else{
1826b13307fSandi      ptln('<meta name="robots" content="noindex,follow" />',$it);
1836b13307fSandi    }
1846b13307fSandi  }else{
1856b13307fSandi    ptln('<meta name="robots" content="noindex,nofollow" />',$it);
1866b13307fSandi  }
1876b13307fSandi
18878a6aeb1SAndreas Gohr  // load stylesheets
18978a6aeb1SAndreas Gohr  ptln('<link rel="stylesheet" media="screen" type="text/css" href="'.DOKU_BASE.'lib/exe/css.php" />',$it);
19078a6aeb1SAndreas Gohr  ptln('<link rel="stylesheet" media="print" type="text/css" href="'.DOKU_BASE.'lib/exe/css.php?print=1" />',$it);
191bad31ae9SAndreas Gohr
19278a6aeb1SAndreas Gohr  // load javascript
193ee4c4a1bSAndreas Gohr  $js_edit  = ($ACT=='edit' || $ACT=='preview' || $ACT=='recover') ? 1 : 0;
194bad31ae9SAndreas Gohr  $js_write = ($INFO['writable']) ? 1 : 0;
195c591aabeSAndreas Gohr  if($js_edit && $js_write){
1964beabca9SAnika Henke    ptln('<script type="text/javascript" charset="utf-8">',$it);
197c591aabeSAndreas Gohr    ptln("NS='".$INFO['namespace']."';",$it+2);
198c591aabeSAndreas Gohr    if($conf['useacl'] && $_SERVER['REMOTE_USER']){
199aeaccbf9SAndreas Gohr      require_once(DOKU_INC.'inc/toolbar.php');
200c591aabeSAndreas Gohr      ptln("SIG='".toolbar_signature()."';",$it+2);
201c591aabeSAndreas Gohr    }
202c591aabeSAndreas Gohr    ptln('</script>',$it);
203c591aabeSAndreas Gohr  }
2044beabca9SAnika Henke  ptln('<script type="text/javascript" charset="utf-8" src="'.
205c591aabeSAndreas Gohr       DOKU_BASE.'lib/exe/js.php?edit='.$js_edit.'&amp;write='.$js_write.'"></script>',$it);
2066b13307fSandi}
2076b13307fSandi
2086b13307fSandi/**
2096b13307fSandi * Print a link
2106b13307fSandi *
2115e163278SAndreas Gohr * Just builds a link.
2126b13307fSandi *
2136b13307fSandi * @author Andreas Gohr <andi@splitbrain.org>
2146b13307fSandi */
2156b13307fSandifunction tpl_link($url,$name,$more=''){
2165e163278SAndreas Gohr  print '<a href="'.$url.'" ';
2176b13307fSandi  if ($more) print ' '.$more;
2186b13307fSandi  print ">$name</a>";
2196b13307fSandi}
2206b13307fSandi
2216b13307fSandi/**
22255efc227SAndreas Gohr * Prints a link to a WikiPage
22355efc227SAndreas Gohr *
22455efc227SAndreas Gohr * Wrapper around html_wikilink
22555efc227SAndreas Gohr *
22655efc227SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
22755efc227SAndreas Gohr */
22855efc227SAndreas Gohrfunction tpl_pagelink($id,$name=NULL){
22955efc227SAndreas Gohr  print html_wikilink($id,$name);
23055efc227SAndreas Gohr}
23155efc227SAndreas Gohr
23255efc227SAndreas Gohr/**
233a3ec5f4aSmatthiasgrimm * get the parent page
234a3ec5f4aSmatthiasgrimm *
235a3ec5f4aSmatthiasgrimm * Tries to find out which page is parent.
236a3ec5f4aSmatthiasgrimm * returns false if none is available
237a3ec5f4aSmatthiasgrimm *
238a3ec5f4aSmatthiasgrimm * @author Matthias Grimm <matthiasgrimm@users.sourceforge.net>
239a3ec5f4aSmatthiasgrimm */
240a3ec5f4aSmatthiasgrimmfunction tpl_getparent($ID){
241a3ec5f4aSmatthiasgrimm  global $conf;
242a3ec5f4aSmatthiasgrimm
243a3ec5f4aSmatthiasgrimm  if ($ID != $conf['start']) {
244a3ec5f4aSmatthiasgrimm    $idparts = explode(':', $ID);
245a3ec5f4aSmatthiasgrimm    $pn = array_pop($idparts);    // get the page name
246a3ec5f4aSmatthiasgrimm
247a3ec5f4aSmatthiasgrimm    for ($n=0; $n < 2; $n++) {
248a3ec5f4aSmatthiasgrimm      if (count($idparts) == 0) {
249a3ec5f4aSmatthiasgrimm        $ID = $conf['start'];     // go to topmost page
250a3ec5f4aSmatthiasgrimm        break;
251a3ec5f4aSmatthiasgrimm      }else{
252a3ec5f4aSmatthiasgrimm        $ns = array_pop($idparts);     // get the last part of namespace
253a3ec5f4aSmatthiasgrimm        if ($pn != $ns) {                 // are we already home?
254a3ec5f4aSmatthiasgrimm          array_push($idparts, $ns, $ns); // no, then add a page with same name
255a3ec5f4aSmatthiasgrimm          $ID = implode (':', $idparts); // as the namespace and recombine $ID
256a3ec5f4aSmatthiasgrimm          break;
257a3ec5f4aSmatthiasgrimm        }
258a3ec5f4aSmatthiasgrimm      }
259a3ec5f4aSmatthiasgrimm    }
260a3ec5f4aSmatthiasgrimm
261a3ec5f4aSmatthiasgrimm    if (@file_exists(wikiFN($ID))) {
262a3ec5f4aSmatthiasgrimm      return $ID;
263a3ec5f4aSmatthiasgrimm    }
264a3ec5f4aSmatthiasgrimm  }
265a3ec5f4aSmatthiasgrimm  return false;
266a3ec5f4aSmatthiasgrimm}
267a3ec5f4aSmatthiasgrimm
268a3ec5f4aSmatthiasgrimm/**
2696b13307fSandi * Print one of the buttons
2706b13307fSandi *
2716b13307fSandi * Available Buttons are
2726b13307fSandi *
273ee4c4a1bSAndreas Gohr *  edit        - edit/create/show/draft button
2746b13307fSandi *  history     - old revisions
2756b13307fSandi *  recent      - recent changes
2766b13307fSandi *  login       - login/logout button - if ACL enabled
2776b13307fSandi *  index       - The index
278c19fe9c0Sandi *  admin       - admin page - if enough rights
2796b13307fSandi *  top         - a back to top button
280a3ec5f4aSmatthiasgrimm *  back        - a back to parent button - if available
281d67ca2c0Smatthiasgrimm *  backtomedia - returns to the mediafile upload dialog
282d67ca2c0Smatthiasgrimm *                after references have been displayed
283bbd37938SAndreas Gohr *  backlink    - links to the list of backlinks
2846b13307fSandi *
2856b13307fSandi * @author Andreas Gohr <andi@splitbrain.org>
286a3ec5f4aSmatthiasgrimm * @author Matthias Grimm <matthiasgrimm@users.sourceforge.net>
2876b13307fSandi */
2886b13307fSandifunction tpl_button($type){
289b158d625SSteven Danz  global $ACT;
2906b13307fSandi  global $ID;
291d67ca2c0Smatthiasgrimm  global $NS;
292c19fe9c0Sandi  global $INFO;
2936b13307fSandi  global $conf;
294cd52f92dSchris  global $auth;
2956b13307fSandi
2966b13307fSandi  switch($type){
2976b13307fSandi    case 'edit':
2986b13307fSandi      print html_editbutton();
2996b13307fSandi      break;
3006b13307fSandi    case 'history':
3015bc81eb9SAnders Betnér      print html_btn('revs',$ID,'o',array('do' => 'revisions'));
3026b13307fSandi      break;
3036b13307fSandi    case 'recent':
3045bc81eb9SAnders Betnér      print html_btn('recent','','r',array('do' => 'recent'));
3056b13307fSandi      break;
3066b13307fSandi    case 'index':
3075bc81eb9SAnders Betnér      print html_btn('index',$ID,'x',array('do' => 'index'));
3086b13307fSandi      break;
309a3ec5f4aSmatthiasgrimm    case 'back':
3106222040cSmatthiasgrimm      if ($parent = tpl_getparent($ID)) {
3116222040cSmatthiasgrimm        print html_btn('back',$parent,'b',array('do' => 'show'));
312a3ec5f4aSmatthiasgrimm      }
313a3ec5f4aSmatthiasgrimm      break;
3146b13307fSandi    case 'top':
3156b13307fSandi      print html_topbtn();
3166b13307fSandi      break;
3176b13307fSandi    case 'login':
3186b13307fSandi      if($conf['useacl']){
3196b13307fSandi        if($_SERVER['REMOTE_USER']){
3206b13307fSandi          print html_btn('logout',$ID,'',array('do' => 'logout',));
3216b13307fSandi        }else{
3226b13307fSandi          print html_btn('login',$ID,'',array('do' => 'login'));
3236b13307fSandi        }
3246b13307fSandi      }
3256b13307fSandi      break;
326c19fe9c0Sandi    case 'admin':
327c19fe9c0Sandi      if($INFO['perm'] == AUTH_ADMIN)
3285bc81eb9SAnders Betnér        print html_btn('admin',$ID,'',array('do' => 'admin'));
329c19fe9c0Sandi      break;
330d67ca2c0Smatthiasgrimm    case 'backtomedia':
331d67ca2c0Smatthiasgrimm      print html_backtomedia_button(array('ns' => $NS),'b');
332d67ca2c0Smatthiasgrimm      break;
3331380fc45SAndreas Gohr    case 'subscription':
334f9eb5648Ssteven-danz      if($conf['useacl'] && $ACT == 'show' && $conf['subscribers'] == 1){
335b158d625SSteven Danz        if($_SERVER['REMOTE_USER']){
3361380fc45SAndreas Gohr          if($INFO['subscribed']){
3371380fc45SAndreas Gohr            print html_btn('unsubscribe',$ID,'',array('do' => 'unsubscribe',));
338b158d625SSteven Danz          } else {
3391380fc45SAndreas Gohr            print html_btn('subscribe',$ID,'',array('do' => 'subscribe',));
340b158d625SSteven Danz          }
341b158d625SSteven Danz        }
342b158d625SSteven Danz      }
343b158d625SSteven Danz      break;
344f00151b4Schris    case 'backlink':
345f00151b4Schris      print html_btn('backlink',$ID,'',array('do' => 'backlink'));
346f00151b4Schris      break;
3478b06d178Schris    case 'profile':
34836223ba7SAndreas Gohr      if($conf['useacl'] && $_SERVER['REMOTE_USER'] &&
34936223ba7SAndreas Gohr         $auth->canDo('Profile') && ($ACT!='profile')){
3508b06d178Schris        print html_btn('profile',$ID,'',array('do' => 'profile'));
3518b06d178Schris      }
3528b06d178Schris      break;
353c19fe9c0Sandi    default:
354c19fe9c0Sandi      print '[unknown button type]';
3556b13307fSandi  }
3566b13307fSandi}
3576b13307fSandi
3586b13307fSandi/**
359ed630903Sandi * Like the action buttons but links
360ed630903Sandi *
361ed630903Sandi * Available links are
362ed630903Sandi *
363ed630903Sandi *  edit    - edit/create/show button
364ed630903Sandi *  history - old revisions
365ed630903Sandi *  recent  - recent changes
366ed630903Sandi *  login   - login/logout button - if ACL enabled
367ed630903Sandi *  index   - The index
368ed630903Sandi *  admin   - admin page - if enough rights
369ed630903Sandi *  top     - a back to top button
370a3ec5f4aSmatthiasgrimm *  back    - a back to parent button - if available
371bbd37938SAndreas Gohr * backlink - links to the list of backlinks
372ed630903Sandi *
373ed630903Sandi * @author Andreas Gohr <andi@splitbrain.org>
374a3ec5f4aSmatthiasgrimm * @author Matthias Grimm <matthiasgrimm@users.sourceforge.net>
375ed630903Sandi * @see    tpl_button
376ed630903Sandi */
377ed630903Sandifunction tpl_actionlink($type,$pre='',$suf=''){
378ed630903Sandi  global $ID;
379ed630903Sandi  global $INFO;
380ed630903Sandi  global $REV;
381ed630903Sandi  global $ACT;
382ed630903Sandi  global $conf;
383ed630903Sandi  global $lang;
384cd52f92dSchris  global $auth;
385ed630903Sandi
386ed630903Sandi  switch($type){
387ed630903Sandi    case 'edit':
388ed630903Sandi      #most complicated type - we need to decide on current action
389ed630903Sandi      if($ACT == 'show' || $ACT == 'search'){
390ed630903Sandi        if($INFO['writable']){
391ed630903Sandi          if($INFO['exists']){
392ed630903Sandi            tpl_link(wl($ID,'do=edit&amp;rev='.$REV),
393ed630903Sandi                     $pre.$lang['btn_edit'].$suf,
394b7af031cSsu                     'class="action edit" accesskey="e" rel="nofollow"');
395ed630903Sandi          }else{
396ed630903Sandi            tpl_link(wl($ID,'do=edit&amp;rev='.$REV),
397ed630903Sandi                     $pre.$lang['btn_create'].$suf,
398b7af031cSsu                     'class="action create" accesskey="e" rel="nofollow"');
399ed630903Sandi          }
400ed630903Sandi        }else{
401ed630903Sandi          tpl_link(wl($ID,'do=edit&amp;rev='.$REV),
402ed630903Sandi                   $pre.$lang['btn_source'].$suf,
403b7af031cSsu                   'class="action source" accesskey="v" rel="nofollow"');
404ed630903Sandi        }
405ed630903Sandi      }else{
406ed630903Sandi          tpl_link(wl($ID,'do=show'),
407ed630903Sandi                   $pre.$lang['btn_show'].$suf,
408b7af031cSsu                   'class="action show" accesskey="v" rel="nofollow"');
409ed630903Sandi      }
410ed630903Sandi      break;
411ed630903Sandi    case 'history':
412b7af031cSsu      tpl_link(wl($ID,'do=revisions'),$pre.$lang['btn_revs'].$suf,'class="action revisions" accesskey="o"');
413ed630903Sandi      break;
414ed630903Sandi    case 'recent':
415b7af031cSsu      tpl_link(wl($ID,'do=recent'),$pre.$lang['btn_recent'].$suf,'class="action recent" accesskey="r"');
416ed630903Sandi      break;
417ed630903Sandi    case 'index':
418b7af031cSsu      tpl_link(wl($ID,'do=index'),$pre.$lang['btn_index'].$suf,'class="action index" accesskey="x"');
419ed630903Sandi      break;
420ed630903Sandi    case 'top':
42121a15207SAnika Henke      print '<a href="#dokuwiki__top" class="action top" accesskey="x">'.$pre.$lang['btn_top'].$suf.'</a>';
422ed630903Sandi      break;
423a3ec5f4aSmatthiasgrimm    case 'back':
424a3ec5f4aSmatthiasgrimm      if ($ID = tpl_getparent($ID)) {
425b7af031cSsu        tpl_link(wl($ID,'do=show'),$pre.$lang['btn_back'].$suf,'class="action back" accesskey="b"');
426a3ec5f4aSmatthiasgrimm      }
427a3ec5f4aSmatthiasgrimm      break;
428ed630903Sandi    case 'login':
429ed630903Sandi      if($conf['useacl']){
430ed630903Sandi        if($_SERVER['REMOTE_USER']){
431b7af031cSsu          tpl_link(wl($ID,'do=logout'),$pre.$lang['btn_logout'].$suf,'class="action logout"');
432ed630903Sandi        }else{
433b7af031cSsu          tpl_link(wl($ID,'do=login'),$pre.$lang['btn_login'].$suf,'class="action logout"');
434ed630903Sandi        }
435ed630903Sandi      }
436ed630903Sandi      break;
437ed630903Sandi    case 'admin':
438ed630903Sandi      if($INFO['perm'] == AUTH_ADMIN)
439b7af031cSsu        tpl_link(wl($ID,'do=admin'),$pre.$lang['btn_admin'].$suf,'class="action admin"');
440ed630903Sandi      break;
441f9eb5648Ssteven-danz   case 'subscribe':
442075f000fSChristopher Arndt   case 'subscription':
443f9eb5648Ssteven-danz      if($conf['useacl'] && $ACT == 'show' && $conf['subscribers'] == 1){
444b158d625SSteven Danz        if($_SERVER['REMOTE_USER']){
445075f000fSChristopher Arndt          if($INFO['subscribed']) {
446b7af031cSsu            tpl_link(wl($ID,'do=unsubscribe'),$pre.$lang['btn_unsubscribe'].$suf,'class="action unsubscribe"');
447b158d625SSteven Danz          } else {
448b7af031cSsu            tpl_link(wl($ID,'do=subscribe'),$pre.$lang['btn_subscribe'].$suf,'class="action subscribe"');
449b158d625SSteven Danz          }
450b158d625SSteven Danz        }
451b158d625SSteven Danz      }
452b158d625SSteven Danz      break;
453f00151b4Schris    case 'backlink':
454b7af031cSsu      tpl_link(wl($ID,'do=backlink'),$pre.$lang['btn_backlink'].$suf, 'class="action backlink"');
455f00151b4Schris      break;
4568b06d178Schris    case 'profile':
45736223ba7SAndreas Gohr      if($conf['useacl'] && $_SERVER['REMOTE_USER'] &&
45836223ba7SAndreas Gohr         $auth->canDo('Profile') && ($ACT!='profile')){
4598b06d178Schris        tpl_link(wl($ID,'do=profile'),$pre.$lang['btn_profile'].$suf, 'class="action profile"');
4608b06d178Schris      }
4618b06d178Schris      break;
462ed630903Sandi    default:
463ed630903Sandi      print '[unknown link type]';
464ed630903Sandi  }
465ed630903Sandi}
466ed630903Sandi
467ed630903Sandi/**
4686b13307fSandi * Print the search form
4696b13307fSandi *
47072645b75SAndreas Gohr * If the first parameter is given a div with the ID 'qsearch_out' will
47172645b75SAndreas Gohr * be added which instructs the ajax pagequicksearch to kick in and place
47272645b75SAndreas Gohr * its output into this div. The second parameter controls the propritary
47372645b75SAndreas Gohr * attribute autocomplete. If set to false this attribute will be set with an
47472645b75SAndreas Gohr * value of "off" to instruct the browser to disable it's own built in
47572645b75SAndreas Gohr * autocompletion feature (MSIE and Firefox)
47672645b75SAndreas Gohr *
4776b13307fSandi * @author Andreas Gohr <andi@splitbrain.org>
4786b13307fSandi */
47972645b75SAndreas Gohrfunction tpl_searchform($ajax=true,$autocomplete=true){
4806b13307fSandi  global $lang;
481c1e3b7d9Smatthiasgrimm  global $ACT;
482c1e3b7d9Smatthiasgrimm
4831dd0c202SAnika Henke  print '<form action="'.wl().'" accept-charset="utf-8" class="search" id="dw__search"><div class="no">';
4846b13307fSandi  print '<input type="hidden" name="do" value="search" />';
485c1e3b7d9Smatthiasgrimm  print '<input type="text" ';
486bad31ae9SAndreas Gohr  if($ACT == 'search') print 'value="'.htmlspecialchars($_REQUEST['id']).'" ';
48772645b75SAndreas Gohr  if(!$autocomplete) print 'autocomplete="off" ';
48824a33b42SAndreas Gohr  print 'id="qsearch__in" accesskey="f" name="id" class="edit" />';
4896b13307fSandi  print '<input type="submit" value="'.$lang['btn_search'].'" class="button" />';
49024a33b42SAndreas Gohr  if($ajax) print '<div id="qsearch__out" class="ajax_qsearch JSpopup"></div>';
4914beabca9SAnika Henke  print '</div></form>';
4926b13307fSandi}
4936b13307fSandi
4946b13307fSandi/**
4956b13307fSandi * Print the breadcrumbs trace
4966b13307fSandi *
4976b13307fSandi * @author Andreas Gohr <andi@splitbrain.org>
4986b13307fSandi */
4996b13307fSandifunction tpl_breadcrumbs(){
5006b13307fSandi  global $lang;
5016b13307fSandi  global $conf;
5026b13307fSandi
5036b13307fSandi  //check if enabled
5046b13307fSandi  if(!$conf['breadcrumbs']) return;
5056b13307fSandi
5066b13307fSandi  $crumbs = breadcrumbs(); //setup crumb trace
507265e3787Sandi
508265e3787Sandi  //reverse crumborder in right-to-left mode
509265e3787Sandi  if($lang['direction'] == 'rtl') $crumbs = array_reverse($crumbs,true);
510265e3787Sandi
51140eb54bbSjan  //render crumbs, highlight the last one
5126b13307fSandi  print $lang['breadcrumb'].':';
51340eb54bbSjan  $last = count($crumbs);
51440eb54bbSjan  $i = 0;
515a77f5846Sjan  foreach ($crumbs as $id => $name){
51640eb54bbSjan    $i++;
517265e3787Sandi    print ' <span class="bcsep">&raquo;</span> ';
51892795d04Sandi    if ($i == $last) print '<span class="curid">';
519a77f5846Sjan    tpl_link(wl($id),$name,'class="breadcrumbs" title="'.$id.'"');
52092795d04Sandi    if ($i == $last) print '</span>';
5216b13307fSandi  }
5226b13307fSandi}
5236b13307fSandi
5246b13307fSandi/**
5251734437eSandi * Hierarchical breadcrumbs
5261734437eSandi *
52731e187f8SSean Coates * This code was suggested as replacement for the usual breadcrumbs.
5281734437eSandi * It only makes sense with a deep site structure.
5291734437eSandi *
5301734437eSandi * @author Andreas Gohr <andi@splitbrain.org>
5316bd812dfSNigel McNie * @author Nigel McNie <oracle.shinoda@gmail.com>
53231e187f8SSean Coates * @author Sean Coates <sean@caedmon.net>
5331734437eSandi * @link   http://wiki.splitbrain.org/wiki:tipsandtricks:hierarchicalbreadcrumbs
5346bd812dfSNigel McNie * @todo   May behave strangely in RTL languages
5351734437eSandi */
5361734437eSandifunction tpl_youarehere(){
5371734437eSandi  global $conf;
5381734437eSandi  global $ID;
5391734437eSandi  global $lang;
5401734437eSandi
54131e187f8SSean Coates  //check if enabled
54231e187f8SSean Coates  if(!$conf['youarehere']) return;
5431734437eSandi
5441734437eSandi  $parts     = explode(':', $ID);
5451734437eSandi
54631e187f8SSean Coates  print $lang['youarehere'].': ';
5471734437eSandi
5481734437eSandi  //always print the startpage
54931e187f8SSean Coates  if( $a_part[0] != $conf['start']){
55031e187f8SSean Coates    if($conf['useheading']){
55131e187f8SSean Coates      $pageName = p_get_first_heading($conf['start']);
55231e187f8SSean Coates    }else{
55331e187f8SSean Coates      $pageName = $conf['start'];
55431e187f8SSean Coates    }
55531e187f8SSean Coates    tpl_link(wl($conf['start']),$pageName,'title="'.$pageName.'"');
55631e187f8SSean Coates  }
5571734437eSandi
5581734437eSandi  $page = '';
5591734437eSandi  foreach ($parts as $part){
5606bd812dfSNigel McNie        // Skip startpage if already done
5616bd812dfSNigel McNie        if ($part == $conf['start']) continue;
5626bd812dfSNigel McNie
5631734437eSandi          print ' &raquo; ';
5641734437eSandi    $page .= $part;
5651734437eSandi
5661734437eSandi    if(file_exists(wikiFN($page))){
56731e187f8SSean Coates      if($conf['useheading']){
56831e187f8SSean Coates        $pageName = p_get_first_heading($page);
56931e187f8SSean Coates        $partName = $pageName;
57031e187f8SSean Coates      }else{
57131e187f8SSean Coates        $pageName = $page;
57231e187f8SSean Coates        $partName = $part;
57331e187f8SSean Coates      }
57431e187f8SSean Coates      tpl_link(wl($page),$partName,'title="'.$pageName.'"');
5751734437eSandi    }else{
5766bd812dfSNigel McNie      // Print the link, but mark as not-existing, as for other non-existing links
5776bd812dfSNigel McNie      tpl_link(wl($page),$part,'title="'.$page.'" class="wikilink2"');
5786bd812dfSNigel McNie      //print $page;
5791734437eSandi    }
5801734437eSandi
5811734437eSandi    $page .= ':';
5821734437eSandi  }
5831734437eSandi}
5841734437eSandi
5851734437eSandi/**
5866b13307fSandi * Print info if the user is logged in
587a2488c3cSMatthias Grimm * and show full name in that case
5886b13307fSandi *
5896b13307fSandi * Could be enhanced with a profile link in future?
5906b13307fSandi *
5916b13307fSandi * @author Andreas Gohr <andi@splitbrain.org>
5926b13307fSandi */
5936b13307fSandifunction tpl_userinfo(){
5946b13307fSandi  global $lang;
595a2488c3cSMatthias Grimm  global $INFO;
5966b13307fSandi  if($_SERVER['REMOTE_USER'])
597a2488c3cSMatthias Grimm    print $lang['loggedinas'].': '.$INFO['userinfo']['name'];
5986b13307fSandi}
5996b13307fSandi
6006b13307fSandi/**
6016b13307fSandi * Print some info about the current page
6026b13307fSandi *
6036b13307fSandi * @author Andreas Gohr <andi@splitbrain.org>
6046b13307fSandi */
6056b13307fSandifunction tpl_pageinfo(){
6066b13307fSandi  global $conf;
6076b13307fSandi  global $lang;
6086b13307fSandi  global $INFO;
6096b13307fSandi  global $REV;
6106b13307fSandi
6116b13307fSandi  // prepare date and path
6126b13307fSandi  $fn = $INFO['filepath'];
6136b13307fSandi  if(!$conf['fullpath']){
6146b13307fSandi    if($REV){
6156b13307fSandi      $fn = str_replace(realpath($conf['olddir']).DIRECTORY_SEPARATOR,'',$fn);
6166b13307fSandi    }else{
6176b13307fSandi      $fn = str_replace(realpath($conf['datadir']).DIRECTORY_SEPARATOR,'',$fn);
6186b13307fSandi    }
6196b13307fSandi  }
620bee6dc82Sandi  $fn = utf8_decodeFN($fn);
6216b13307fSandi  $date = date($conf['dformat'],$INFO['lastmod']);
6226b13307fSandi
6236b13307fSandi  // print it
6246b13307fSandi  if($INFO['exists']){
6256b13307fSandi    print $fn;
6266b13307fSandi    print ' &middot; ';
6276b13307fSandi    print $lang['lastmod'];
6286b13307fSandi    print ': ';
6296b13307fSandi    print $date;
6306b13307fSandi    if($INFO['editor']){
6316b13307fSandi      print ' '.$lang['by'].' ';
6326b13307fSandi      print $INFO['editor'];
6336b13307fSandi    }
6346b13307fSandi    if($INFO['locked']){
6356b13307fSandi      print ' &middot; ';
6366b13307fSandi      print $lang['lockedby'];
6376b13307fSandi      print ': ';
6386b13307fSandi      print $INFO['locked'];
6396b13307fSandi    }
6406b13307fSandi  }
6416b13307fSandi}
6426b13307fSandi
643820fa24bSandi/**
644820fa24bSandi * Print a list of namespaces containing media files
645820fa24bSandi *
646820fa24bSandi * @author Andreas Gohr <andi@splitbrain.org>
647820fa24bSandi */
648820fa24bSandifunction tpl_medianamespaces(){
649820fa24bSandi    global $conf;
650820fa24bSandi
651820fa24bSandi  $data = array();
652820fa24bSandi  search($data,$conf['mediadir'],'search_namespaces',array());
653820fa24bSandi  print html_buildlist($data,'idx',media_html_list_namespaces);
654820fa24bSandi}
655820fa24bSandi
656820fa24bSandi/**
657820fa24bSandi * Print a list of mediafiles in the current namespace
658820fa24bSandi *
659820fa24bSandi * @author Andreas Gohr <andi@splitbrain.org>
660820fa24bSandi */
661820fa24bSandifunction tpl_mediafilelist(){
662820fa24bSandi  global $conf;
663820fa24bSandi  global $lang;
664820fa24bSandi  global $NS;
6658ef6b7caSandi  global $AUTH;
666820fa24bSandi  $dir = utf8_encodeFN(str_replace(':','/',$NS));
667820fa24bSandi
668820fa24bSandi  $data = array();
669820fa24bSandi  search($data,$conf['mediadir'],'search_media',array(),$dir);
670820fa24bSandi
671820fa24bSandi  if(!count($data)){
6724b15e09dSAndreas Gohr    ptln('<div class="nothing">'.$lang['nothingfound'].'</div>');
673820fa24bSandi    return;
674820fa24bSandi  }
675820fa24bSandi
676820fa24bSandi  ptln('<ul>',2);
677820fa24bSandi  foreach($data as $item){
678806d77a0SAndreas Gohr    if(!$item['isimg']){
679806d77a0SAndreas Gohr      // add file icons
680806d77a0SAndreas Gohr      list($ext,$mime) = mimetype($item['file']);
681806d77a0SAndreas Gohr      $class = preg_replace('/[^_\-a-z0-9]+/i','_',$ext);
68243650a18SAndreas Gohr      $class = ' class="mediafile mf_'.$class.'"';
6831512f40dSAndreas Gohr    }else{
6841512f40dSAndreas Gohr      $class = '';
685806d77a0SAndreas Gohr    }
686806d77a0SAndreas Gohr
6870c6b58a8SAndreas Gohr    ptln('<li><div class="li">',4);
688806d77a0SAndreas Gohr    ptln('<a href="javascript:mediaSelect(\':'.$item['id'].'\')"'.$class.'>'.
689820fa24bSandi         utf8_decodeFN($item['file']).
690820fa24bSandi         '</a>',6);
6918ef6b7caSandi
6928ef6b7caSandi    //prepare deletion button
6938ef6b7caSandi    if($AUTH >= AUTH_DELETE){
6940699afe9SAndreas Gohr      $ask  = addslashes($lang['del_confirm']).'\\n';
6950699afe9SAndreas Gohr      $ask .= addslashes($item['id']);
6968ef6b7caSandi
697b6c6979fSAndreas Gohr      $del = '<a href="'.DOKU_BASE.'lib/exe/media.php?delete='.rawurlencode($item['id']).'" '.
6988ef6b7caSandi             'onclick="return confirm(\''.$ask.'\')" onkeypress="return confirm(\''.$ask.'\')">'.
699f62ea8a1Sandi             '<img src="'.DOKU_BASE.'lib/images/del.png" alt="'.$lang['btn_delete'].'" '.
7004beabca9SAnika Henke             'title="'.$lang['btn_delete'].'" /></a>';
7018ef6b7caSandi    }else{
7028ef6b7caSandi      $del = '';
7038ef6b7caSandi    }
7048ef6b7caSandi
705820fa24bSandi    if($item['isimg']){
70693c020acSAndreas Gohr      $w = (int) $item['meta']->getField('File.Width');
70793c020acSAndreas Gohr      $h = (int) $item['meta']->getField('File.Height');
708820fa24bSandi
7098ef6b7caSandi      ptln('('.$w.'&#215;'.$h.' '.filesize_h($item['size']).')',6);
7108ef6b7caSandi      ptln($del.'<br />',6);
711478cd997SAndreas Gohr      ptln('<div class="imagemeta">',6);
7129fcd3d1dSandi
71323a34783SAndreas Gohr      //build thumbnail
7140699afe9SAndreas Gohr      print '<a href="javascript:mediaSelect(\':'.$item['id'].'\')">';
71523a34783SAndreas Gohr
71623a34783SAndreas Gohr      if($w>120 || $h>120){
71723a34783SAndreas Gohr        $ratio = $item['meta']->getResizeRatio(120);
71823a34783SAndreas Gohr        $w = floor($w * $ratio);
71923a34783SAndreas Gohr        $h = floor($h * $ratio);
7209fcd3d1dSandi      }
72123a34783SAndreas Gohr
7226de3759aSAndreas Gohr      $src = ml($item['id'],array('w'=>$w,'h'=>$h));
72323a34783SAndreas Gohr
72423a34783SAndreas Gohr      $p = array();
72523a34783SAndreas Gohr      $p['width']  = $w;
72623a34783SAndreas Gohr      $p['height'] = $h;
72723a34783SAndreas Gohr      $p['alt']    = $item['id'];
72823a34783SAndreas Gohr      $p['class']  = 'thumb';
72923a34783SAndreas Gohr      $att = buildAttributes($p);
73023a34783SAndreas Gohr
73123a34783SAndreas Gohr      print '<img src="'.$src.'" '.$att.' />';
7329fcd3d1dSandi      print '</a>';
733820fa24bSandi
7346d861d12SAndreas Gohr      //read EXIF/IPTC data
73523a34783SAndreas Gohr      $t = $item['meta']->getField('IPTC.Headline');
73693c020acSAndreas Gohr      if($t) print '<strong>'.htmlspecialchars($t).'</strong><br />';
7376d861d12SAndreas Gohr
73836df6fa3SAndreas Gohr      $t = $item['meta']->getField(array('IPTC.Caption','EXIF.UserComment',
73936df6fa3SAndreas Gohr                                         'EXIF.TIFFImageDescription',
74036df6fa3SAndreas Gohr                                         'EXIF.TIFFUserComment'));
74193c020acSAndreas Gohr      if($t) print htmlspecialchars($t).'<br />';
7426d861d12SAndreas Gohr
74323a34783SAndreas Gohr      $t = $item['meta']->getField(array('IPTC.Keywords','IPTC.Category'));
74493c020acSAndreas Gohr      if($t) print '<em>'.htmlspecialchars($t).'</em><br />';
7456d861d12SAndreas Gohr
74636df6fa3SAndreas Gohr      //add edit button
74736df6fa3SAndreas Gohr      if($AUTH >= AUTH_UPLOAD && $item['meta']->getField('File.Mime') == 'image/jpeg'){
748b6c6979fSAndreas Gohr        print '<a href="'.DOKU_BASE.'lib/exe/media.php?edit='.rawurlencode($item['id']).'">';
74936df6fa3SAndreas Gohr        print '<img src="'.DOKU_BASE.'lib/images/edit.gif" alt="'.$lang['metaedit'].'" title="'.$lang['metaedit'].'" />';
75036df6fa3SAndreas Gohr        print '</a>';
75136df6fa3SAndreas Gohr      }
75236df6fa3SAndreas Gohr
7536d861d12SAndreas Gohr      ptln('</div>',6);
754820fa24bSandi    }else{
755820fa24bSandi      ptln ('('.filesize_h($item['size']).')',6);
7568ef6b7caSandi      ptln($del,6);
757820fa24bSandi    }
7580c6b58a8SAndreas Gohr    ptln('</div></li>',4);
759820fa24bSandi  }
760820fa24bSandi  ptln('</ul>',2);
761820fa24bSandi}
762820fa24bSandi
763820fa24bSandi/**
764d67ca2c0Smatthiasgrimm * show references to a media file
765d67ca2c0Smatthiasgrimm * References uses the same visual as search results and share
766d67ca2c0Smatthiasgrimm * their CSS tags except pagenames won't be links.
767d67ca2c0Smatthiasgrimm *
768d67ca2c0Smatthiasgrimm * @author Matthias Grimm <matthiasgrimm@users.sourceforge.net>
769d67ca2c0Smatthiasgrimm */
770d67ca2c0Smatthiasgrimmfunction tpl_showreferences(&$data){
771d67ca2c0Smatthiasgrimm  global $lang;
772d67ca2c0Smatthiasgrimm
773d67ca2c0Smatthiasgrimm  $hidden=0; //count of hits without read permission
774d67ca2c0Smatthiasgrimm
775d67ca2c0Smatthiasgrimm  if(count($data)){
776d67ca2c0Smatthiasgrimm    usort($data,'sort_search_fulltext');
777d67ca2c0Smatthiasgrimm    foreach($data as $row){
778d67ca2c0Smatthiasgrimm      if(auth_quickaclcheck($row['id']) >= AUTH_READ){
779d67ca2c0Smatthiasgrimm        print '<div class="search_result">';
780d67ca2c0Smatthiasgrimm        print '<span class="mediaref_ref">'.$row['id'].'</span>';
781d67ca2c0Smatthiasgrimm        print ': <span class="search_cnt">'.$row['count'].' '.$lang['hits'].'</span><br />';
782d67ca2c0Smatthiasgrimm        print '<div class="search_snippet">'.$row['snippet'].'</div>';
783d67ca2c0Smatthiasgrimm        print '</div>';
784d67ca2c0Smatthiasgrimm      }else
785d67ca2c0Smatthiasgrimm        $hidden++;
786d67ca2c0Smatthiasgrimm    }
787d67ca2c0Smatthiasgrimm    if ($hidden){
788d67ca2c0Smatthiasgrimm      print '<div class="mediaref_hidden">'.$lang['ref_hidden'].'</div>';
789d67ca2c0Smatthiasgrimm    }
790d67ca2c0Smatthiasgrimm  }
791d67ca2c0Smatthiasgrimm}
792d67ca2c0Smatthiasgrimm
793d67ca2c0Smatthiasgrimm/**
794820fa24bSandi * Print the media upload form if permissions are correct
795820fa24bSandi *
796820fa24bSandi * @author Andreas Gohr <andi@splitbrain.org>
797820fa24bSandi */
798820fa24bSandifunction tpl_mediauploadform(){
799820fa24bSandi  global $NS;
800820fa24bSandi  global $UPLOADOK;
8018ef6b7caSandi  global $AUTH;
802820fa24bSandi  global $lang;
803820fa24bSandi
804820fa24bSandi  if(!$UPLOADOK) return;
805820fa24bSandi
8061dd0c202SAnika Henke  ptln('<form action="'.DOKU_BASE.'lib/exe/media.php" id="dw__upload"'.
807820fa24bSandi       ' method="post" enctype="multipart/form-data">',2);
808820fa24bSandi  ptln($lang['txt_upload'].':<br />',4);
809820fa24bSandi  ptln('<input type="file" name="upload" class="edit" onchange="suggestWikiname();" />',4);
810820fa24bSandi  ptln('<input type="hidden" name="ns" value="'.hsc($NS).'" /><br />',4);
811820fa24bSandi  ptln($lang['txt_filename'].'<br />',4);
812820fa24bSandi  ptln('<input type="text" name="id" class="edit" />',4);
813820fa24bSandi  ptln('<input type="submit" class="button" value="'.$lang['btn_upload'].'" accesskey="s" />',4);
8148ef6b7caSandi  if($AUTH >= AUTH_DELETE){
81524a33b42SAndreas Gohr    ptln('<label for="dw__ow"><input type="checkbox" name="ow" value="1" id="dw__ow" />'.$lang['txt_overwrt'].'</label>',4);
8168ef6b7caSandi  }
817820fa24bSandi  ptln('</form>',2);
818820fa24bSandi}
819820fa24bSandi
82087c434ceSAndreas Gohr/**
821a6598f23SBen Coburn * Prints or returns the name of the given page (current one if none given).
82287c434ceSAndreas Gohr *
82387c434ceSAndreas Gohr * If useheading is enabled this will use the first headline else
824a6598f23SBen Coburn * the given ID is used.
82587c434ceSAndreas Gohr *
82687c434ceSAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
82787c434ceSAndreas Gohr */
828a6598f23SBen Coburnfunction tpl_pagetitle($id=null, $ret=false){
82987c434ceSAndreas Gohr  global $conf;
83087c434ceSAndreas Gohr  if(is_null($id)){
83187c434ceSAndreas Gohr    global $ID;
83287c434ceSAndreas Gohr    $id = $ID;
83387c434ceSAndreas Gohr  }
83487c434ceSAndreas Gohr
83587c434ceSAndreas Gohr  $name = $id;
83687c434ceSAndreas Gohr  if ($conf['useheading']) {
83787c434ceSAndreas Gohr    $title = p_get_first_heading($id);
83887c434ceSAndreas Gohr    if ($title) $name = $title;
83987c434ceSAndreas Gohr  }
840a6598f23SBen Coburn
841a6598f23SBen Coburn  if ($ret) {
842a6598f23SBen Coburn      return hsc($name);
843a6598f23SBen Coburn  } else {
84487c434ceSAndreas Gohr      print hsc($name);
84587c434ceSAndreas Gohr  }
846a6598f23SBen Coburn}
847340756e4Sandi
84855efc227SAndreas Gohr/**
84955efc227SAndreas Gohr * Returns the requested EXIF/IPTC tag from the current image
85055efc227SAndreas Gohr *
85155efc227SAndreas Gohr * If $tags is an array all given tags are tried until a
85255efc227SAndreas Gohr * value is found. If no value is found $alt is returned.
85355efc227SAndreas Gohr *
85455efc227SAndreas Gohr * Which texts are known is defined in the functions _exifTagNames
85555efc227SAndreas Gohr * and _iptcTagNames() in inc/jpeg.php (You need to prepend IPTC
85655efc227SAndreas Gohr * to the names of the latter one)
85755efc227SAndreas Gohr *
85836df6fa3SAndreas Gohr * Only allowed in: detail.php, mediaedit.php
85955efc227SAndreas Gohr *
86055efc227SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
86155efc227SAndreas Gohr */
86255efc227SAndreas Gohrfunction tpl_img_getTag($tags,$alt=''){
86355efc227SAndreas Gohr  // Init Exif Reader
86455efc227SAndreas Gohr  global $SRC;
86555efc227SAndreas Gohr  static $meta = null;
86655efc227SAndreas Gohr  if(is_null($meta)) $meta = new JpegMeta($SRC);
86755efc227SAndreas Gohr  if($meta === false) return $alt;
86855efc227SAndreas Gohr  $info = $meta->getField($tags);
86955efc227SAndreas Gohr  if($info == false) return $alt;
87055efc227SAndreas Gohr  return $info;
87155efc227SAndreas Gohr}
87255efc227SAndreas Gohr
87355efc227SAndreas Gohr/**
87455efc227SAndreas Gohr * Prints the image with a link to the full sized version
87555efc227SAndreas Gohr *
87655efc227SAndreas Gohr * Only allowed in: detail.php
87755efc227SAndreas Gohr */
878f8925855Sjoe.lappfunction tpl_img($maxwidth=0,$maxheight=0){
87955efc227SAndreas Gohr  global $IMG;
88055efc227SAndreas Gohr  $w = tpl_img_getTag('File.Width');
88155efc227SAndreas Gohr  $h = tpl_img_getTag('File.Height');
88255efc227SAndreas Gohr
88355efc227SAndreas Gohr  //resize to given max values
88423a34783SAndreas Gohr  $ratio = 1;
88523a34783SAndreas Gohr  if($w >= $h){
886f8925855Sjoe.lapp    if($maxwidth && $w >= $maxwidth){
88755efc227SAndreas Gohr      $ratio = $maxwidth/$w;
888f8925855Sjoe.lapp    }elseif($maxheight && $h > $maxheight){
88955efc227SAndreas Gohr      $ratio = $maxheight/$h;
89055efc227SAndreas Gohr    }
89155efc227SAndreas Gohr  }else{
892f8925855Sjoe.lapp    if($maxheight && $h >= $maxheight){
89355efc227SAndreas Gohr      $ratio = $maxheight/$h;
894f8925855Sjoe.lapp    }elseif($maxwidth && $w > $maxwidth){
89555efc227SAndreas Gohr      $ratio = $maxwidth/$w;
89655efc227SAndreas Gohr    }
89755efc227SAndreas Gohr  }
89855efc227SAndreas Gohr  if($ratio){
89955efc227SAndreas Gohr    $w = floor($ratio*$w);
90055efc227SAndreas Gohr    $h = floor($ratio*$h);
90155efc227SAndreas Gohr  }
90255efc227SAndreas Gohr
9036de3759aSAndreas Gohr  //prepare URLs
9046de3759aSAndreas Gohr  $url=ml($IMG,array('cache'=>$_REQUEST['cache']));
9056de3759aSAndreas Gohr  $src=ml($IMG,array('cache'=>$_REQUEST['cache'],'w'=>$w,'h'=>$h));
90655efc227SAndreas Gohr
9072684e50aSAndreas Gohr  //prepare attributes
90855efc227SAndreas Gohr  $alt=tpl_img_getTag('Simple.Title');
9092684e50aSAndreas Gohr  $p = array();
9102684e50aSAndreas Gohr  if($w) $p['width']  = $w;
9112684e50aSAndreas Gohr  if($h) $p['height'] = $h;
9122684e50aSAndreas Gohr         $p['class']  = 'img_detail';
9132684e50aSAndreas Gohr  if($alt){
9142684e50aSAndreas Gohr    $p['alt']   = $alt;
9152684e50aSAndreas Gohr    $p['title'] = $alt;
9162684e50aSAndreas Gohr  }else{
9172684e50aSAndreas Gohr    $p['alt'] = '';
9182684e50aSAndreas Gohr  }
9192684e50aSAndreas Gohr  $p = buildAttributes($p);
92055efc227SAndreas Gohr
92155efc227SAndreas Gohr  print '<a href="'.$url.'">';
9226de3759aSAndreas Gohr  print '<img src="'.$src.'" '.$p.'/>';
92355efc227SAndreas Gohr  print '</a>';
92455efc227SAndreas Gohr}
92555efc227SAndreas Gohr
9267367b368SAndreas Gohr/**
9277367b368SAndreas Gohr * This function inserts a 1x1 pixel gif which in reality
9287367b368SAndreas Gohr * is the inexer function.
9297367b368SAndreas Gohr *
9307367b368SAndreas Gohr * Should be called somewhere at the very end of the main.php
9317367b368SAndreas Gohr * template
9327367b368SAndreas Gohr */
9337367b368SAndreas Gohrfunction tpl_indexerWebBug(){
9347367b368SAndreas Gohr  global $ID;
9351dad36f5SAndreas Gohr  global $INFO;
9361dad36f5SAndreas Gohr  if(!$INFO['exists']) return;
9371dad36f5SAndreas Gohr
9380dc92c6fSAndreas Gohr  if(isHiddenPage($ID)) return; //no need to index hidden pages
9390dc92c6fSAndreas Gohr
9407367b368SAndreas Gohr  $p = array();
941b6c6979fSAndreas Gohr  $p['src']    = DOKU_BASE.'lib/exe/indexer.php?id='.rawurlencode($ID).
942e68c51baSAndreas Gohr                 '&'.time();
9437367b368SAndreas Gohr  $p['width']  = 1;
9447367b368SAndreas Gohr  $p['height'] = 1;
9457367b368SAndreas Gohr  $p['alt']    = '';
9467367b368SAndreas Gohr  $att = buildAttributes($p);
9477367b368SAndreas Gohr  print "<img $att />";
9487367b368SAndreas Gohr}
9497367b368SAndreas Gohr
95078d4e784SEsther Brunner// configuration methods
95178d4e784SEsther Brunner/**
95278d4e784SEsther Brunner * tpl_getConf($id)
95378d4e784SEsther Brunner *
95478d4e784SEsther Brunner * use this function to access template configuration variables
95578d4e784SEsther Brunner */
95678d4e784SEsther Brunnerfunction tpl_getConf($id){
95778d4e784SEsther Brunner  global $conf;
95878d4e784SEsther Brunner  global $tpl_configloaded;
95978d4e784SEsther Brunner
96078d4e784SEsther Brunner  $tpl = $conf['template'];
96178d4e784SEsther Brunner
96278d4e784SEsther Brunner  if (!$tpl_configloaded){
96378d4e784SEsther Brunner    $tconf = tpl_loadConfig();
96478d4e784SEsther Brunner    if ($tconf !== false){
96578d4e784SEsther Brunner      foreach ($tconf as $key => $value){
96678d4e784SEsther Brunner        if (isset($conf['tpl'][$tpl][$key])) continue;
96778d4e784SEsther Brunner        $conf['tpl'][$tpl][$key] = $value;
96878d4e784SEsther Brunner      }
96978d4e784SEsther Brunner      $tpl_configloaded = true;
97078d4e784SEsther Brunner    }
97178d4e784SEsther Brunner  }
97278d4e784SEsther Brunner
97378d4e784SEsther Brunner  return $conf['tpl'][$tpl][$id];
97478d4e784SEsther Brunner}
97578d4e784SEsther Brunner
97678d4e784SEsther Brunner/**
97778d4e784SEsther Brunner * tpl_loadConfig()
97878d4e784SEsther Brunner * reads all template configuration variables
97978d4e784SEsther Brunner * this function is automatically called by tpl_getConf()
98078d4e784SEsther Brunner */
98178d4e784SEsther Brunnerfunction tpl_loadConfig(){
98278d4e784SEsther Brunner
98378d4e784SEsther Brunner  $file = DOKU_TPLINC.'/conf/default.php';
98478d4e784SEsther Brunner  $conf = array();
98578d4e784SEsther Brunner
98678d4e784SEsther Brunner  if (!@file_exists($file)) return false;
98778d4e784SEsther Brunner
98878d4e784SEsther Brunner  // load default config file
98978d4e784SEsther Brunner  include($file);
99078d4e784SEsther Brunner
99178d4e784SEsther Brunner  return $conf;
99278d4e784SEsther Brunner}
99378d4e784SEsther Brunner
994340756e4Sandi//Setup VIM: ex: et ts=2 enc=utf-8 :
995