1ed7b5f09Sandi<?php 215fae107Sandi/** 315fae107Sandi * HTML output functions 415fae107Sandi * 515fae107Sandi * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) 615fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 715fae107Sandi */ 815fae107Sandi 9fa8adffeSAndreas Gohrif(!defined('DOKU_INC')) die('meh.'); 10e226efe1SAndreas Gohrif(!defined('NL')) define('NL',"\n"); 116bbae538Sandi 12f3f0262cSandi/** 13f3f0262cSandi * Convenience function to quickly build a wikilink 1415fae107Sandi * 1515fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 16f3f0262cSandi */ 17db959ae3SAndreas Gohrfunction html_wikilink($id,$name=null,$search=''){ 18db959ae3SAndreas Gohr static $xhtml_renderer = null; 19723d78dbSandi if(is_null($xhtml_renderer)){ 207aea91afSChris Smith $xhtml_renderer = p_get_renderer('xhtml'); 21f3f0262cSandi } 22f3f0262cSandi 23fe9ec250SChris Smith return $xhtml_renderer->internallink($id,$name,$search,true,'navigation'); 24f3f0262cSandi} 25f3f0262cSandi 26f3f0262cSandi/** 27c19fe9c0Sandi * Helps building long attribute lists 28c19fe9c0Sandi * 29c19fe9c0Sandi * @author Andreas Gohr <andi@splitbrain.org> 30c19fe9c0Sandi */ 31c19fe9c0Sandifunction html_attbuild($attributes){ 32c19fe9c0Sandi $ret = ''; 33c19fe9c0Sandi foreach ( $attributes as $key => $value ) { 34e351c80dSAdrian Lang $ret .= $key.'="'.formText($value).'" '; 35c19fe9c0Sandi } 36c19fe9c0Sandi return trim($ret); 37c19fe9c0Sandi} 38c19fe9c0Sandi 39c19fe9c0Sandi/** 40f3f0262cSandi * The loginform 4115fae107Sandi * 4215fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 43f3f0262cSandi */ 44f3f0262cSandifunction html_login(){ 45f3f0262cSandi global $lang; 46f3f0262cSandi global $conf; 47f3f0262cSandi global $ID; 48f3f0262cSandi 49c112d578Sandi print p_locale_xhtml('login'); 50fdb8d77bSTom N Harris print '<div class="centeralign">'.NL; 51e351c80dSAdrian Lang $form = new Doku_Form(array('id' => 'dw__login')); 52fdb8d77bSTom N Harris $form->startFieldset($lang['btn_login']); 53fdb8d77bSTom N Harris $form->addHidden('id', $ID); 54fdb8d77bSTom N Harris $form->addHidden('do', 'login'); 55aab557e9SGina Haeussge $form->addElement(form_makeTextField('u', ((!$_REQUEST['http_credentials']) ? $_REQUEST['u'] : ''), $lang['user'], 'focus__this', 'block')); 56fdb8d77bSTom N Harris $form->addElement(form_makePasswordField('p', $lang['pass'], '', 'block')); 5717f89d7eSMichael Klier if($conf['rememberme']) { 58fdb8d77bSTom N Harris $form->addElement(form_makeCheckboxField('r', '1', $lang['remember'], 'remember__me', 'simple')); 5917f89d7eSMichael Klier } 60fdb8d77bSTom N Harris $form->addElement(form_makeButton('submit', '', $lang['btn_login'])); 61fdb8d77bSTom N Harris $form->endFieldset(); 625b62573aSAndreas Gohr 63de4d479aSAdrian Lang if(actionOK('register')){ 6476ec5467SMichael Klier $form->addElement('<p>' 6576ec5467SMichael Klier . $lang['reghere'] 6676ec5467SMichael Klier . ': <a href="'.wl($ID,'do=register').'" rel="nofollow" class="wikilink1">'.$lang['register'].'</a>' 6776ec5467SMichael Klier . '</p>'); 68f3f0262cSandi } 698b06d178Schris 70de4d479aSAdrian Lang if (actionOK('resendpwd')) { 7176ec5467SMichael Klier $form->addElement('<p>' 7276ec5467SMichael Klier . $lang['pwdforget'] 7376ec5467SMichael Klier . ': <a href="'.wl($ID,'do=resendpwd').'" rel="nofollow" class="wikilink1">'.$lang['btn_resendpwd'].'</a>' 7476ec5467SMichael Klier . '</p>'); 758b06d178Schris } 7676ec5467SMichael Klier 7776ec5467SMichael Klier html_form('login', $form); 78fdb8d77bSTom N Harris print '</div>'.NL; 79f3f0262cSandi} 80f3f0262cSandi 81f3f0262cSandi/** 8215fae107Sandi * inserts section edit buttons if wanted or removes the markers 8315fae107Sandi * 8415fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 8515fae107Sandi */ 86f3f0262cSandifunction html_secedit($text,$show=true){ 87f3f0262cSandi global $INFO; 8835dae8b0SBen Coburn 893f9e3215SAdrian Lang $regexp = '#<!-- EDIT(\d+) ([A-Z_]+) (?:"([^"]*)" )?\[(\d+-\d*)\] -->#'; 90b081e262SAdrian Lang 9140868f2fSAdrian Lang if(!$INFO['writable'] || !$show || $INFO['rev']){ 9240868f2fSAdrian Lang return preg_replace($regexp,'',$text); 93f3f0262cSandi } 9435dae8b0SBen Coburn 9540868f2fSAdrian Lang return preg_replace_callback($regexp, 9640868f2fSAdrian Lang 'html_secedit_button', $text); 9740868f2fSAdrian Lang} 9840868f2fSAdrian Lang 9940868f2fSAdrian Lang/** 10040868f2fSAdrian Lang * prepares section edit button data for event triggering 10140868f2fSAdrian Lang * used as a callback in html_secedit 10240868f2fSAdrian Lang * 10340868f2fSAdrian Lang * @triggers HTML_SECEDIT_BUTTON 10440868f2fSAdrian Lang * @author Andreas Gohr <andi@splitbrain.org> 10540868f2fSAdrian Lang */ 10640868f2fSAdrian Langfunction html_secedit_button($matches){ 107905fa971SAdrian Lang $data = array('secid' => $matches[1], 10840868f2fSAdrian Lang 'target' => strtolower($matches[2]), 10940868f2fSAdrian Lang 'range' => $matches[count($matches) - 1]); 11040868f2fSAdrian Lang if (count($matches) === 5) { 11140868f2fSAdrian Lang $data['name'] = $matches[3]; 11240868f2fSAdrian Lang } 11340868f2fSAdrian Lang 11440868f2fSAdrian Lang return trigger_event('HTML_SECEDIT_BUTTON', $data, 11540868f2fSAdrian Lang 'html_secedit_get_button'); 11640868f2fSAdrian Lang} 11740868f2fSAdrian Lang 11840868f2fSAdrian Lang/** 11940868f2fSAdrian Lang * prints a section editing button 12040868f2fSAdrian Lang * used as default action form HTML_SECEDIT_BUTTON 12140868f2fSAdrian Lang * 12240868f2fSAdrian Lang * @author Adrian Lang <lang@cosmocode.de> 12340868f2fSAdrian Lang */ 12440868f2fSAdrian Langfunction html_secedit_get_button($data) { 12540868f2fSAdrian Lang global $ID; 12640868f2fSAdrian Lang global $INFO; 12740868f2fSAdrian Lang 12840868f2fSAdrian Lang if (!isset($data['name']) || $data['name'] === '') return; 12940868f2fSAdrian Lang 13040868f2fSAdrian Lang $name = $data['name']; 13140868f2fSAdrian Lang unset($data['name']); 13240868f2fSAdrian Lang 133905fa971SAdrian Lang $secid = $data['secid']; 134905fa971SAdrian Lang unset($data['secid']); 135905fa971SAdrian Lang 13640868f2fSAdrian Lang return "<div class='secedit editbutton_" . $data['target'] . 137defa93a1SAdrian Lang " editbutton_" . $secid . "'>" . 13840868f2fSAdrian Lang html_btn('secedit', $ID, '', 13940868f2fSAdrian Lang array_merge(array('do' => 'edit', 14040868f2fSAdrian Lang 'rev' => $INFO['lastmod']), $data), 14140868f2fSAdrian Lang 'post', $name) . '</div>'; 142f3f0262cSandi} 143f3f0262cSandi 144f3f0262cSandi/** 145d6c9c552Smatthiasgrimm * Just the back to top button (in its own form) 1466b13307fSandi * 1476b13307fSandi * @author Andreas Gohr <andi@splitbrain.org> 1486b13307fSandi */ 1496b13307fSandifunction html_topbtn(){ 1506b13307fSandi global $lang; 1516b13307fSandi 1526b13307fSandi $ret = ''; 15311ea018fSAndreas Gohr $ret = '<a class="nolink" href="#dokuwiki__top"><input type="button" class="button" value="'.$lang['btn_top'].'" onclick="window.scrollTo(0, 0)" title="'.$lang['btn_top'].'" /></a>'; 154df7b6005Sandi 1556b13307fSandi return $ret; 1566b13307fSandi} 1576b13307fSandi 1586b13307fSandi/** 159d67ca2c0Smatthiasgrimm * Displays a button (using its own form) 16035dae8b0SBen Coburn * If tooltip exists, the access key tooltip is replaced. 16115fae107Sandi * 16215fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 163f3f0262cSandi */ 164d822118cSAdrian Langfunction html_btn($name,$id,$akey,$params,$method='get',$tooltip=''){ 165f3f0262cSandi global $conf; 166f3f0262cSandi global $lang; 167f3f0262cSandi 168f3f0262cSandi $label = $lang['btn_'.$name]; 169f3f0262cSandi 170f3f0262cSandi $ret = ''; 17135dae8b0SBen Coburn $tip = ''; 172f3f0262cSandi 17349c713a3Sandi //filter id (without urlencoding) 17449c713a3Sandi $id = idfilter($id,false); 175f3f0262cSandi 176f3f0262cSandi //make nice URLs even for buttons 1776c7843b5Sandi if($conf['userewrite'] == 2){ 1786c7843b5Sandi $script = DOKU_BASE.DOKU_SCRIPT.'/'.$id; 1796c7843b5Sandi }elseif($conf['userewrite']){ 1806c7843b5Sandi $script = DOKU_BASE.$id; 1816c7843b5Sandi }else{ 1828b00ebcfSandi $script = DOKU_BASE.DOKU_SCRIPT; 183f3f0262cSandi $params['id'] = $id; 184f3f0262cSandi } 185f3f0262cSandi 186b278f2deSAndreas Gohr $ret .= '<form class="button btn_'.$name.'" method="'.$method.'" action="'.$script.'"><div class="no">'; 187f3f0262cSandi 18806a4bf8fSAndreas Gohr if(is_array($params)){ 189f3f0262cSandi reset($params); 190f3f0262cSandi while (list($key, $val) = each($params)) { 191f3f0262cSandi $ret .= '<input type="hidden" name="'.$key.'" '; 192f3f0262cSandi $ret .= 'value="'.htmlspecialchars($val).'" />'; 193f3f0262cSandi } 19406a4bf8fSAndreas Gohr } 195f3f0262cSandi 19635dae8b0SBen Coburn if ($tooltip!='') { 19735dae8b0SBen Coburn $tip = htmlspecialchars($tooltip); 19811ea018fSAndreas Gohr }else{ 19911ea018fSAndreas Gohr $tip = htmlspecialchars($label); 20011ea018fSAndreas Gohr } 20111ea018fSAndreas Gohr 202d822118cSAdrian Lang $ret .= '<input type="submit" value="'.hsc($label).'" class="button" '; 20311ea018fSAndreas Gohr if($akey){ 20407493d05SAnika Henke $tip .= ' ['.strtoupper($akey).']'; 20587cb01b7SAnika Henke $ret .= 'accesskey="'.$akey.'" '; 20635dae8b0SBen Coburn } 20735dae8b0SBen Coburn $ret .= 'title="'.$tip.'" '; 208f3f0262cSandi $ret .= '/>'; 2094beabca9SAnika Henke $ret .= '</div></form>'; 210f3f0262cSandi 211f3f0262cSandi return $ret; 212f3f0262cSandi} 213f3f0262cSandi 214f3f0262cSandi/** 21515fae107Sandi * show a wiki page 21615fae107Sandi * 21715fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 21815fae107Sandi */ 21911c78c94SAndreas Gohrfunction html_show($txt=null){ 220f3f0262cSandi global $ID; 221f3f0262cSandi global $REV; 222f3f0262cSandi global $HIGH; 223b8595a66SAndreas Gohr global $INFO; 224f3f0262cSandi //disable section editing for old revisions or in preview 2255400331dSandi if($txt || $REV){ 2266bbae538Sandi $secedit = false; 2276bbae538Sandi }else{ 2286bbae538Sandi $secedit = true; 229f3f0262cSandi } 230f3f0262cSandi 23111c78c94SAndreas Gohr if (!is_null($txt)){ 232f3f0262cSandi //PreviewHeader 233b8595a66SAndreas Gohr echo '<br id="scroll__here" />'; 234b8595a66SAndreas Gohr echo p_locale_xhtml('preview'); 235b8595a66SAndreas Gohr echo '<div class="preview">'; 236b8595a66SAndreas Gohr $html = html_secedit(p_render('xhtml',p_get_instructions($txt),$info),$secedit); 237b8595a66SAndreas Gohr if($INFO['prependTOC']) $html = tpl_toc(true).$html; 238b8595a66SAndreas Gohr echo $html; 239b8595a66SAndreas Gohr echo '<div class="clearer"></div>'; 240b8595a66SAndreas Gohr echo '</div>'; 2416bbae538Sandi 242f3f0262cSandi }else{ 243c112d578Sandi if ($REV) print p_locale_xhtml('showrev'); 244c112d578Sandi $html = p_wiki_xhtml($ID,$REV,true); 2456bbae538Sandi $html = html_secedit($html,$secedit); 246b8595a66SAndreas Gohr if($INFO['prependTOC']) $html = tpl_toc(true).$html; 247b8595a66SAndreas Gohr $html = html_hilight($html,$HIGH); 248b8595a66SAndreas Gohr echo $html; 249f3f0262cSandi } 250f3f0262cSandi} 251f3f0262cSandi 252f3f0262cSandi/** 253ee4c4a1bSAndreas Gohr * ask the user about how to handle an exisiting draft 254ee4c4a1bSAndreas Gohr * 255ee4c4a1bSAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 256ee4c4a1bSAndreas Gohr */ 257ee4c4a1bSAndreas Gohrfunction html_draft(){ 258ee4c4a1bSAndreas Gohr global $INFO; 259ee4c4a1bSAndreas Gohr global $ID; 260ee4c4a1bSAndreas Gohr global $lang; 261ee4c4a1bSAndreas Gohr global $conf; 262ee4c4a1bSAndreas Gohr $draft = unserialize(io_readFile($INFO['draft'],false)); 263ee4c4a1bSAndreas Gohr $text = cleanText(con($draft['prefix'],$draft['text'],$draft['suffix'],true)); 264ee4c4a1bSAndreas Gohr 265fdb8d77bSTom N Harris print p_locale_xhtml('draft'); 266e351c80dSAdrian Lang $form = new Doku_Form(array('id' => 'dw__editform')); 267fdb8d77bSTom N Harris $form->addHidden('id', $ID); 268fdb8d77bSTom N Harris $form->addHidden('date', $draft['date']); 269fdb8d77bSTom N Harris $form->addElement(form_makeWikiText($text, array('readonly'=>'readonly'))); 270fdb8d77bSTom N Harris $form->addElement(form_makeOpenTag('div', array('id'=>'draft__status'))); 271f2263577SAndreas Gohr $form->addElement($lang['draftdate'].' '. dformat(filemtime($INFO['draft']))); 272fdb8d77bSTom N Harris $form->addElement(form_makeCloseTag('div')); 273fdb8d77bSTom N Harris $form->addElement(form_makeButton('submit', 'recover', $lang['btn_recover'], array('tabindex'=>'1'))); 274fdb8d77bSTom N Harris $form->addElement(form_makeButton('submit', 'draftdel', $lang['btn_draftdel'], array('tabindex'=>'2'))); 275fdb8d77bSTom N Harris $form->addElement(form_makeButton('submit', 'show', $lang['btn_cancel'], array('tabindex'=>'3'))); 276fdb8d77bSTom N Harris html_form('draft', $form); 277ee4c4a1bSAndreas Gohr} 278ee4c4a1bSAndreas Gohr 279ee4c4a1bSAndreas Gohr/** 280f3f0262cSandi * Highlights searchqueries in HTML code 28115fae107Sandi * 28215fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 2837209be23SAndreas Gohr * @author Harry Fuecks <hfuecks@gmail.com> 284f3f0262cSandi */ 285546d3a99SAndreas Gohrfunction html_hilight($html,$phrases){ 286808551e3SAndreas Gohr $phrases = array_filter((array) $phrases); 287808551e3SAndreas Gohr $regex = join('|',array_map('preg_quote_cb',$phrases)); 28860c15d7dSAndreas Gohr 28960c15d7dSAndreas Gohr if ($regex === '') return $html; 2901db218e9SAndreas Gohr $html = preg_replace_callback("/((<[^>]*)|$regex)/ui",'html_hilight_callback',$html); 291f3f0262cSandi return $html; 292f3f0262cSandi} 293f3f0262cSandi 294f3f0262cSandi/** 2957209be23SAndreas Gohr * Callback used by html_hilight() 2967209be23SAndreas Gohr * 2977209be23SAndreas Gohr * @author Harry Fuecks <hfuecks@gmail.com> 2987209be23SAndreas Gohr */ 2997209be23SAndreas Gohrfunction html_hilight_callback($m) { 3007209be23SAndreas Gohr $hlight = unslash($m[0]); 3017209be23SAndreas Gohr if ( !isset($m[2])) { 302688774a0SAnika Henke $hlight = '<span class="search_hit">'.$hlight.'</span>'; 3037209be23SAndreas Gohr } 3047209be23SAndreas Gohr return $hlight; 3057209be23SAndreas Gohr} 3067209be23SAndreas Gohr 3077209be23SAndreas Gohr/** 30815fae107Sandi * Run a search and display the result 30915fae107Sandi * 31015fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 311f3f0262cSandi */ 312f3f0262cSandifunction html_search(){ 313f3f0262cSandi global $conf; 314f3f0262cSandi global $QUERY; 315f3f0262cSandi global $ID; 316f3f0262cSandi global $lang; 317f3f0262cSandi 318c112d578Sandi print p_locale_xhtml('searchpage'); 319f3f0262cSandi flush(); 320f3f0262cSandi 321d0ab54f6SMichael Klier chi@chimeric.de //check if search is restricted to namespace 322b42bcfe7Sdaniel.lindgren if(preg_match('/@([^@]*)/',$QUERY,$match)) { 323d0ab54f6SMichael Klier chi@chimeric.de $id = cleanID($match[1]); 324d0ab54f6SMichael Klier chi@chimeric.de } else { 325d0ab54f6SMichael Klier chi@chimeric.de $id = cleanID($QUERY); 326d0ab54f6SMichael Klier chi@chimeric.de } 327d0ab54f6SMichael Klier chi@chimeric.de 3284d9ff3d5Sandi //show progressbar 329e226efe1SAndreas Gohr print '<div class="centeralign" id="dw__loading">'.NL; 330e226efe1SAndreas Gohr print '<script type="text/javascript" charset="utf-8"><!--//--><![CDATA[//><!--'.NL; 331e226efe1SAndreas Gohr print 'showLoadBar();'.NL; 332e226efe1SAndreas Gohr print '//--><!]]></script>'.NL; 333e226efe1SAndreas Gohr print '<br /></div>'.NL; 3349edac8a8SAndreas Gohr flush(); 3354d9ff3d5Sandi 336f3f0262cSandi //do quick pagesearch 337f3f0262cSandi $data = array(); 338d0ab54f6SMichael Klier chi@chimeric.de 339*8d22f1e9SAndreas Gohr if($id) $data = ft_pageLookup($id,true,useHeading('navigation')); 340f3f0262cSandi if(count($data)){ 341f3f0262cSandi print '<div class="search_quickresult">'; 342746855cfSBen Coburn print '<h3>'.$lang['quickhits'].':</h3>'; 3434f732f0eSAnika Henke print '<ul class="search_quickhits">'; 344*8d22f1e9SAndreas Gohr foreach($data as $id => $title){ 3454f732f0eSAnika Henke print '<li> '; 346*8d22f1e9SAndreas Gohr if (useHeading('navigation')) { 347*8d22f1e9SAndreas Gohr $name = $title; 348*8d22f1e9SAndreas Gohr }else{ 349bd2f6c2fSAndreas Gohr $ns = getNS($id); 350bd2f6c2fSAndreas Gohr if($ns){ 351bd2f6c2fSAndreas Gohr $name = shorten(noNS($id), ' ('.$ns.')',30); 352bd2f6c2fSAndreas Gohr }else{ 353bd2f6c2fSAndreas Gohr $name = $id; 354bd2f6c2fSAndreas Gohr } 355*8d22f1e9SAndreas Gohr } 356bd2f6c2fSAndreas Gohr print html_wikilink(':'.$id,$name); 3574f732f0eSAnika Henke print '</li> '; 358f3f0262cSandi } 359140c93f3SAnika Henke print '</ul> '; 360f3f0262cSandi //clear float (see http://www.complexspiral.com/publications/containing-floats/) 361f3f0262cSandi print '<div class="clearer"> </div>'; 362f3f0262cSandi print '</div>'; 363f3f0262cSandi } 364f3f0262cSandi flush(); 365f3f0262cSandi 366f3f0262cSandi //do fulltext search 36760c15d7dSAndreas Gohr $data = ft_pageSearch($QUERY,$regex); 368f3f0262cSandi if(count($data)){ 369506fa893SAndreas Gohr $num = 1; 370506fa893SAndreas Gohr foreach($data as $id => $cnt){ 371f3f0262cSandi print '<div class="search_result">'; 372db959ae3SAndreas Gohr print html_wikilink(':'.$id,useHeading('navigation')?null:$id,$regex); 373865c2687SKazutaka Miyasaka if($cnt !== 0){ 374506fa893SAndreas Gohr print ': <span class="search_cnt">'.$cnt.' '.$lang['hits'].'</span><br />'; 375bd0293e7SAndreas Gohr if($num < FT_SNIPPET_NUMBER){ // create snippets for the first number of matches only 37660c15d7dSAndreas Gohr print '<div class="search_snippet">'.ft_snippet($id,$regex).'</div>'; 377506fa893SAndreas Gohr } 378865c2687SKazutaka Miyasaka $num++; 379865c2687SKazutaka Miyasaka } 380f3f0262cSandi print '</div>'; 381506fa893SAndreas Gohr flush(); 382f3f0262cSandi } 383f3f0262cSandi }else{ 384820fa24bSandi print '<div class="nothing">'.$lang['nothingfound'].'</div>'; 385f3f0262cSandi } 3864d9ff3d5Sandi 3874d9ff3d5Sandi //hide progressbar 388e226efe1SAndreas Gohr print '<script type="text/javascript" charset="utf-8"><!--//--><![CDATA[//><!--'.NL; 389e226efe1SAndreas Gohr print 'hideLoadBar("dw__loading");'.NL; 390e226efe1SAndreas Gohr print '//--><!]]></script>'.NL; 3919edac8a8SAndreas Gohr flush(); 392f3f0262cSandi} 393f3f0262cSandi 39415fae107Sandi/** 39515fae107Sandi * Display error on locked pages 39615fae107Sandi * 39715fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 39815fae107Sandi */ 399ee20e7d1Sandifunction html_locked(){ 400f3f0262cSandi global $ID; 401f3f0262cSandi global $conf; 402f3f0262cSandi global $lang; 40388f522e9Sandi global $INFO; 404f3f0262cSandi 405c9b4bd1eSBen Coburn $locktime = filemtime(wikiLockFN($ID)); 406f2263577SAndreas Gohr $expire = dformat($locktime + $conf['locktime']); 407f3f0262cSandi $min = round(($conf['locktime'] - (time() - $locktime) )/60); 408f3f0262cSandi 409c112d578Sandi print p_locale_xhtml('locked'); 410f3f0262cSandi print '<ul>'; 4116d233a0cSAndy Webber print '<li><div class="li"><strong>'.$lang['lockedby'].':</strong> '.editorinfo($INFO['locked']).'</div></li>'; 4120c6b58a8SAndreas Gohr print '<li><div class="li"><strong>'.$lang['lockexpire'].':</strong> '.$expire.' ('.$min.' min)</div></li>'; 413f3f0262cSandi print '</ul>'; 414f3f0262cSandi} 415f3f0262cSandi 41615fae107Sandi/** 41715fae107Sandi * list old revisions 41815fae107Sandi * 41915fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 42071726d78SBen Coburn * @author Ben Coburn <btcoburn@silicodon.net> 42115fae107Sandi */ 42271726d78SBen Coburnfunction html_revisions($first=0){ 423f3f0262cSandi global $ID; 424f3f0262cSandi global $INFO; 425f3f0262cSandi global $conf; 426f3f0262cSandi global $lang; 42771726d78SBen Coburn /* we need to get one additionally log entry to be able to 42871726d78SBen Coburn * decide if this is the last page or is there another one. 42971726d78SBen Coburn * see html_recent() 43071726d78SBen Coburn */ 43171726d78SBen Coburn $revisions = getRevisions($ID, $first, $conf['recent']+1); 43271726d78SBen Coburn if(count($revisions)==0 && $first!=0){ 43371726d78SBen Coburn $first=0; 43471726d78SBen Coburn $revisions = getRevisions($ID, $first, $conf['recent']+1);; 43571726d78SBen Coburn } 43671726d78SBen Coburn $hasNext = false; 43771726d78SBen Coburn if (count($revisions)>$conf['recent']) { 43871726d78SBen Coburn $hasNext = true; 43971726d78SBen Coburn array_pop($revisions); // remove extra log entry 44071726d78SBen Coburn } 44171726d78SBen Coburn 442f2263577SAndreas Gohr $date = dformat($INFO['lastmod']); 443f3f0262cSandi 444c112d578Sandi print p_locale_xhtml('revisions'); 44537a1dc12Smichael 446e351c80dSAdrian Lang $form = new Doku_Form(array('id' => 'page__revisions')); 44737a1dc12Smichael $form->addElement(form_makeOpenTag('ul')); 44871726d78SBen Coburn if($INFO['exists'] && $first==0){ 44937a1dc12Smichael if (isset($INFO['meta']) && isset($INFO['meta']['last_change']) && $INFO['meta']['last_change']['type']===DOKU_CHANGE_TYPE_MINOR_EDIT) 45037a1dc12Smichael $form->addElement(form_makeOpenTag('li', array('class' => 'minor'))); 45137a1dc12Smichael else 45237a1dc12Smichael $form->addElement(form_makeOpenTag('li')); 45337a1dc12Smichael $form->addElement(form_makeOpenTag('div', array('class' => 'li'))); 45437a1dc12Smichael $form->addElement(form_makeTag('input', array( 45537a1dc12Smichael 'type' => 'checkbox', 45637a1dc12Smichael 'name' => 'rev2[]', 45737a1dc12Smichael 'value' => 'current'))); 458f9b2fe70Sandi 45937a1dc12Smichael $form->addElement(form_makeOpenTag('span', array('class' => 'date'))); 46037a1dc12Smichael $form->addElement($date); 46137a1dc12Smichael $form->addElement(form_makeCloseTag('span')); 462f9b2fe70Sandi 46337a1dc12Smichael $form->addElement(form_makeTag('img', array( 46437a1dc12Smichael 'src' => DOKU_BASE.'lib/images/blank.gif', 46537a1dc12Smichael 'width' => '15', 46637a1dc12Smichael 'height' => '11', 46737a1dc12Smichael 'alt' => ''))); 468cffcc403Sandi 46937a1dc12Smichael $form->addElement(form_makeOpenTag('a', array( 47037a1dc12Smichael 'class' => 'wikilink1', 47137a1dc12Smichael 'href' => wl($ID)))); 47237a1dc12Smichael $form->addElement($ID); 47337a1dc12Smichael $form->addElement(form_makeCloseTag('a')); 474652610a2Sandi 47537a1dc12Smichael $form->addElement(form_makeOpenTag('span', array('class' => 'sum'))); 47637a1dc12Smichael $form->addElement(' – '); 47737a1dc12Smichael $form->addElement(htmlspecialchars($INFO['sum'])); 47837a1dc12Smichael $form->addElement(form_makeCloseTag('span')); 479652610a2Sandi 48037a1dc12Smichael $form->addElement(form_makeOpenTag('span', array('class' => 'user'))); 48137a1dc12Smichael $form->addElement((empty($INFO['editor']))?('('.$lang['external_edit'].')'):editorinfo($INFO['editor'])); 48237a1dc12Smichael $form->addElement(form_makeCloseTag('span')); 48337a1dc12Smichael 48437a1dc12Smichael $form->addElement('('.$lang['current'].')'); 48537a1dc12Smichael $form->addElement(form_makeCloseTag('div')); 48637a1dc12Smichael $form->addElement(form_makeCloseTag('li')); 487f3f0262cSandi } 488f3f0262cSandi 489f3f0262cSandi foreach($revisions as $rev){ 490f2263577SAndreas Gohr $date = dformat($rev); 491fb53bfe2SBen Coburn $info = getRevisionInfo($ID,$rev,true); 492103c256aSChris Smith $exists = page_exists($ID,$rev); 493652610a2Sandi 49437a1dc12Smichael if ($info['type']===DOKU_CHANGE_TYPE_MINOR_EDIT) 49537a1dc12Smichael $form->addElement(form_makeOpenTag('li', array('class' => 'minor'))); 49637a1dc12Smichael else 49737a1dc12Smichael $form->addElement(form_makeOpenTag('li')); 49837a1dc12Smichael $form->addElement(form_makeOpenTag('div', array('class' => 'li'))); 49977707b04SAndreas Gohr if($exists){ 50037a1dc12Smichael $form->addElement(form_makeTag('input', array( 50137a1dc12Smichael 'type' => 'checkbox', 50237a1dc12Smichael 'name' => 'rev2[]', 50337a1dc12Smichael 'value' => $rev))); 50477707b04SAndreas Gohr }else{ 50537a1dc12Smichael $form->addElement(form_makeTag('img', array( 50637a1dc12Smichael 'src' => DOKU_BASE.'lib/images/blank.gif', 50737a1dc12Smichael 'width' => 14, 50837a1dc12Smichael 'height' => 11, 50937a1dc12Smichael 'alt' => ''))); 51041396b71SAndreas Gohr } 511f9b2fe70Sandi 51237a1dc12Smichael $form->addElement(form_makeOpenTag('span', array('class' => 'date'))); 51337a1dc12Smichael $form->addElement($date); 51437a1dc12Smichael $form->addElement(form_makeCloseTag('span')); 51537a1dc12Smichael 51637a1dc12Smichael if($exists){ 51737a1dc12Smichael $form->addElement(form_makeOpenTag('a', array('href' => wl($ID,"rev=$rev,do=diff", false, '&'), 'class' => 'diff_link'))); 51837a1dc12Smichael $form->addElement(form_makeTag('img', array( 51937a1dc12Smichael 'src' => DOKU_BASE.'lib/images/diff.png', 52037a1dc12Smichael 'width' => 15, 52137a1dc12Smichael 'height' => 11, 52237a1dc12Smichael 'title' => $lang['diff'], 52337a1dc12Smichael 'alt' => $lang['diff']))); 52437a1dc12Smichael $form->addElement(form_makeCloseTag('a')); 52537a1dc12Smichael 52637a1dc12Smichael $form->addElement(form_makeOpenTag('a', array('href' => wl($ID,"rev=$rev",false,'&'), 'class' => 'wikilink1'))); 52737a1dc12Smichael $form->addElement($ID); 52837a1dc12Smichael $form->addElement(form_makeCloseTag('a')); 52937a1dc12Smichael }else{ 53037a1dc12Smichael $form->addElement(form_makeTag('img', array( 53137a1dc12Smichael 'src' => DOKU_BASE.'lib/images/blank.gif', 53237a1dc12Smichael 'width' => '15', 53337a1dc12Smichael 'height' => '11', 53437a1dc12Smichael 'alt' => ''))); 53537a1dc12Smichael $form->addElement($ID); 53637a1dc12Smichael } 53737a1dc12Smichael 53837a1dc12Smichael $form->addElement(form_makeOpenTag('span', array('class' => 'sum'))); 53937a1dc12Smichael $form->addElement(' – '); 54037a1dc12Smichael $form->addElement(htmlspecialchars($info['sum'])); 54137a1dc12Smichael $form->addElement(form_makeCloseTag('span')); 54237a1dc12Smichael 54337a1dc12Smichael $form->addElement(form_makeOpenTag('span', array('class' => 'user'))); 54488f522e9Sandi if($info['user']){ 54537a1dc12Smichael $form->addElement(editorinfo($info['user'])); 546433efb25SAndreas Gohr if(auth_ismanager()){ 547433efb25SAndreas Gohr $form->addElement(' ('.$info['ip'].')'); 548433efb25SAndreas Gohr } 54988f522e9Sandi }else{ 55037a1dc12Smichael $form->addElement($info['ip']); 55188f522e9Sandi } 55237a1dc12Smichael $form->addElement(form_makeCloseTag('span')); 553652610a2Sandi 55437a1dc12Smichael $form->addElement(form_makeCloseTag('div')); 55537a1dc12Smichael $form->addElement(form_makeCloseTag('li')); 556f3f0262cSandi } 55737a1dc12Smichael $form->addElement(form_makeCloseTag('ul')); 55837a1dc12Smichael $form->addElement(form_makeButton('submit', 'diff', $lang['diff2'])); 55937a1dc12Smichael html_form('revisions', $form); 56071726d78SBen Coburn 56171726d78SBen Coburn print '<div class="pagenav">'; 56271726d78SBen Coburn $last = $first + $conf['recent']; 56371726d78SBen Coburn if ($first > 0) { 56471726d78SBen Coburn $first -= $conf['recent']; 56571726d78SBen Coburn if ($first < 0) $first = 0; 56671726d78SBen Coburn print '<div class="pagenav-prev">'; 567eeb83e57SBen Coburn print html_btn('newer',$ID,"p",array('do' => 'revisions', 'first' => $first)); 56871726d78SBen Coburn print '</div>'; 56971726d78SBen Coburn } 57071726d78SBen Coburn if ($hasNext) { 57171726d78SBen Coburn print '<div class="pagenav-next">'; 572eeb83e57SBen Coburn print html_btn('older',$ID,"n",array('do' => 'revisions', 'first' => $last)); 57371726d78SBen Coburn print '</div>'; 57471726d78SBen Coburn } 57571726d78SBen Coburn print '</div>'; 57671726d78SBen Coburn 577f3f0262cSandi} 578f3f0262cSandi 57915fae107Sandi/** 58015fae107Sandi * display recent changes 58115fae107Sandi * 58215fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 5835749f1ceSmatthiasgrimm * @author Matthias Grimm <matthiasgrimm@users.sourceforge.net> 58471726d78SBen Coburn * @author Ben Coburn <btcoburn@silicodon.net> 58515fae107Sandi */ 586a39955b0Smatthiasgrimmfunction html_recent($first=0){ 587f3f0262cSandi global $conf; 588cffcc403Sandi global $lang; 589dbb00abcSEsther Brunner global $ID; 5905749f1ceSmatthiasgrimm /* we need to get one additionally log entry to be able to 5915749f1ceSmatthiasgrimm * decide if this is the last page or is there another one. 5925749f1ceSmatthiasgrimm * This is the cheapest solution to get this information. 5935749f1ceSmatthiasgrimm */ 594b6912aeaSAndreas Gohr $recents = getRecents($first,$conf['recent'] + 1,getNS($ID)); 5955749f1ceSmatthiasgrimm if(count($recents) == 0 && $first != 0){ 5965749f1ceSmatthiasgrimm $first=0; 59771726d78SBen Coburn $recents = getRecents($first,$conf['recent'] + 1,getNS($ID)); 5985749f1ceSmatthiasgrimm } 59971726d78SBen Coburn $hasNext = false; 60071726d78SBen Coburn if (count($recents)>$conf['recent']) { 60171726d78SBen Coburn $hasNext = true; 60271726d78SBen Coburn array_pop($recents); // remove extra log entry 60371726d78SBen Coburn } 604f3f0262cSandi 605c112d578Sandi print p_locale_xhtml('recent'); 606e83cef14SGina Haeussge 607e83cef14SGina Haeussge if (getNS($ID) != '') 6089e561443SAndreas Gohr print '<div class="level1"><p>' . sprintf($lang['recent_global'], getNS($ID), wl('', 'do=recent')) . '</p></div>'; 609e83cef14SGina Haeussge 610e351c80dSAdrian Lang $form = new Doku_Form(array('id' => 'dw__recent', 'method' => 'GET')); 611abdcc39fSmichael $form->addHidden('sectok', null); 612abdcc39fSmichael $form->addHidden('do', 'recent'); 613abdcc39fSmichael $form->addHidden('id', $ID); 614abdcc39fSmichael $form->addElement(form_makeOpenTag('ul')); 615a39955b0Smatthiasgrimm 616d437bcc4SAndreas Gohr foreach($recents as $recent){ 617f2263577SAndreas Gohr $date = dformat($recent['date']); 618abdcc39fSmichael if ($recent['type']===DOKU_CHANGE_TYPE_MINOR_EDIT) 619abdcc39fSmichael $form->addElement(form_makeOpenTag('li', array('class' => 'minor'))); 620abdcc39fSmichael else 621abdcc39fSmichael $form->addElement(form_makeOpenTag('li')); 622cffcc403Sandi 623abdcc39fSmichael $form->addElement(form_makeOpenTag('div', array('class' => 'li'))); 624f9b2fe70Sandi 625abdcc39fSmichael $form->addElement(form_makeOpenTag('span', array('class' => 'date'))); 626abdcc39fSmichael $form->addElement($date); 627abdcc39fSmichael $form->addElement(form_makeCloseTag('span')); 628cffcc403Sandi 629cddd152cSmichael $form->addElement(form_makeOpenTag('a', array('class' => 'diff_link', 'href' => wl($recent['id'],"do=diff", false, '&')))); 630abdcc39fSmichael $form->addElement(form_makeTag('img', array( 631abdcc39fSmichael 'src' => DOKU_BASE.'lib/images/diff.png', 632abdcc39fSmichael 'width' => 15, 633abdcc39fSmichael 'height'=> 11, 634abdcc39fSmichael 'title' => $lang['diff'], 635abdcc39fSmichael 'alt' => $lang['diff'] 636abdcc39fSmichael ))); 637abdcc39fSmichael $form->addElement(form_makeCloseTag('a')); 638cffcc403Sandi 639cddd152cSmichael $form->addElement(form_makeOpenTag('a', array('class' => 'revisions_link', 'href' => wl($recent['id'],"do=revisions",false,'&')))); 640abdcc39fSmichael $form->addElement(form_makeTag('img', array( 641abdcc39fSmichael 'src' => DOKU_BASE.'lib/images/history.png', 642abdcc39fSmichael 'width' => 12, 643abdcc39fSmichael 'height'=> 14, 644abdcc39fSmichael 'title' => $lang['btn_revs'], 645abdcc39fSmichael 'alt' => $lang['btn_revs'] 646abdcc39fSmichael ))); 647abdcc39fSmichael $form->addElement(form_makeCloseTag('a')); 648b6912aeaSAndreas Gohr 649db959ae3SAndreas Gohr $form->addElement(html_wikilink(':'.$recent['id'],useHeading('navigation')?null:$recent['id'])); 650abdcc39fSmichael 651abdcc39fSmichael $form->addElement(form_makeOpenTag('span', array('class' => 'sum'))); 652abdcc39fSmichael $form->addElement(' – '.htmlspecialchars($recent['sum'])); 653abdcc39fSmichael $form->addElement(form_makeCloseTag('span')); 654abdcc39fSmichael 655abdcc39fSmichael $form->addElement(form_makeOpenTag('span', array('class' => 'user'))); 656d437bcc4SAndreas Gohr if($recent['user']){ 657abdcc39fSmichael $form->addElement(editorinfo($recent['user'])); 658433efb25SAndreas Gohr if(auth_ismanager()){ 659433efb25SAndreas Gohr $form->addElement(' ('.$recent['ip'].')'); 660433efb25SAndreas Gohr } 66188f522e9Sandi }else{ 662abdcc39fSmichael $form->addElement($recent['ip']); 66388f522e9Sandi } 664abdcc39fSmichael $form->addElement(form_makeCloseTag('span')); 665cffcc403Sandi 666abdcc39fSmichael $form->addElement(form_makeCloseTag('div')); 667abdcc39fSmichael $form->addElement(form_makeCloseTag('li')); 668f3f0262cSandi } 669abdcc39fSmichael $form->addElement(form_makeCloseTag('ul')); 670a39955b0Smatthiasgrimm 671abdcc39fSmichael $form->addElement(form_makeOpenTag('div', array('class' => 'pagenav'))); 6725749f1ceSmatthiasgrimm $last = $first + $conf['recent']; 673a39955b0Smatthiasgrimm if ($first > 0) { 674a39955b0Smatthiasgrimm $first -= $conf['recent']; 675a39955b0Smatthiasgrimm if ($first < 0) $first = 0; 676abdcc39fSmichael $form->addElement(form_makeOpenTag('div', array('class' => 'pagenav-prev'))); 677abdcc39fSmichael $form->addElement(form_makeTag('input', array( 678abdcc39fSmichael 'type' => 'submit', 679abdcc39fSmichael 'name' => 'first['.$first.']', 680cddd152cSmichael 'value' => $lang['btn_newer'], 681cddd152cSmichael 'accesskey' => 'n', 682f948eeabSMichael Klier 'title' => $lang['btn_newer'].' [N]', 68318d107cbSMichael Klier 'class' => 'button' 684abdcc39fSmichael ))); 685abdcc39fSmichael $form->addElement(form_makeCloseTag('div')); 686a39955b0Smatthiasgrimm } 68771726d78SBen Coburn if ($hasNext) { 688abdcc39fSmichael $form->addElement(form_makeOpenTag('div', array('class' => 'pagenav-next'))); 689abdcc39fSmichael $form->addElement(form_makeTag('input', array( 690abdcc39fSmichael 'type' => 'submit', 691abdcc39fSmichael 'name' => 'first['.$last.']', 692cddd152cSmichael 'value' => $lang['btn_older'], 693cddd152cSmichael 'accesskey' => 'p', 694f948eeabSMichael Klier 'title' => $lang['btn_older'].' [P]', 69518d107cbSMichael Klier 'class' => 'button' 696abdcc39fSmichael ))); 697abdcc39fSmichael $form->addElement(form_makeCloseTag('div')); 698a39955b0Smatthiasgrimm } 699abdcc39fSmichael $form->addElement(form_makeCloseTag('div')); 700abdcc39fSmichael html_form('recent', $form); 701f3f0262cSandi} 702f3f0262cSandi 70315fae107Sandi/** 70415fae107Sandi * Display page index 70515fae107Sandi * 70615fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 70715fae107Sandi */ 708f3f0262cSandifunction html_index($ns){ 709f3f0262cSandi global $conf; 710f3f0262cSandi global $ID; 711f3f0262cSandi $dir = $conf['datadir']; 712f3f0262cSandi $ns = cleanID($ns); 71330f1737dSandi #fixme use appropriate function 714f3f0262cSandi if(empty($ns)){ 715f3f0262cSandi $ns = dirname(str_replace(':','/',$ID)); 716f3f0262cSandi if($ns == '.') $ns =''; 717f3f0262cSandi } 71888d3a917Sandi $ns = utf8_encodeFN(str_replace(':','/',$ns)); 719f3f0262cSandi 720a06884abSAndreas Gohr echo p_locale_xhtml('index'); 721a06884abSAndreas Gohr echo '<div id="index__tree">'; 722f3f0262cSandi 723f3f0262cSandi $data = array(); 724f3f0262cSandi search($data,$conf['datadir'],'search_index',array('ns' => $ns)); 725a06884abSAndreas Gohr echo html_buildlist($data,'idx','html_list_index','html_li_index'); 726a06884abSAndreas Gohr 727a06884abSAndreas Gohr echo '</div>'; 728f3f0262cSandi} 729f3f0262cSandi 730f3f0262cSandi/** 73115fae107Sandi * Index item formatter 73215fae107Sandi * 733f3f0262cSandi * User function for html_buildlist() 73415fae107Sandi * 73515fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 736f3f0262cSandi */ 737f3f0262cSandifunction html_list_index($item){ 738d98d4540SBen Coburn global $ID; 739f3f0262cSandi $ret = ''; 740f3f0262cSandi $base = ':'.$item['id']; 741f3f0262cSandi $base = substr($base,strrpos($base,':')+1); 742f3f0262cSandi if($item['type']=='d'){ 7434a119027SAndreas Gohr $ret .= '<a href="'.wl($ID,'idx='.rawurlencode($item['id'])).'" class="idx_dir"><strong>'; 744f3f0262cSandi $ret .= $base; 745ed7ecb79SAnika Henke $ret .= '</strong></a>'; 746f3f0262cSandi }else{ 747f3f0262cSandi $ret .= html_wikilink(':'.$item['id']); 748f3f0262cSandi } 749f3f0262cSandi return $ret; 750f3f0262cSandi} 751f3f0262cSandi 752f3f0262cSandi/** 753cb70c441Sandi * Index List item 754cb70c441Sandi * 755cb70c441Sandi * This user function is used in html_build_lidt to build the 756cb70c441Sandi * <li> tags for namespaces when displaying the page index 757cb70c441Sandi * it gives different classes to opened or closed "folders" 758cb70c441Sandi * 759cb70c441Sandi * @author Andreas Gohr <andi@splitbrain.org> 760cb70c441Sandi */ 761cb70c441Sandifunction html_li_index($item){ 762cb70c441Sandi if($item['type'] == "f"){ 763cb70c441Sandi return '<li class="level'.$item['level'].'">'; 764cb70c441Sandi }elseif($item['open']){ 765cb70c441Sandi return '<li class="open">'; 766cb70c441Sandi }else{ 767cb70c441Sandi return '<li class="closed">'; 768cb70c441Sandi } 769cb70c441Sandi} 770cb70c441Sandi 771cb70c441Sandi/** 772cb70c441Sandi * Default List item 773cb70c441Sandi * 774cb70c441Sandi * @author Andreas Gohr <andi@splitbrain.org> 775cb70c441Sandi */ 776cb70c441Sandifunction html_li_default($item){ 777cb70c441Sandi return '<li class="level'.$item['level'].'">'; 778cb70c441Sandi} 779cb70c441Sandi 780cb70c441Sandi/** 78115fae107Sandi * Build an unordered list 78215fae107Sandi * 783f3f0262cSandi * Build an unordered list from the given $data array 784f3f0262cSandi * Each item in the array has to have a 'level' property 785f3f0262cSandi * the item itself gets printed by the given $func user 786cb70c441Sandi * function. The second and optional function is used to 787cb70c441Sandi * print the <li> tag. Both user function need to accept 788cb70c441Sandi * a single item. 78915fae107Sandi * 790c5a8fd96SAndreas Gohr * Both user functions can be given as array to point to 791c5a8fd96SAndreas Gohr * a member of an object. 792c5a8fd96SAndreas Gohr * 79315fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 794f3f0262cSandi */ 795cb70c441Sandifunction html_buildlist($data,$class,$func,$lifunc='html_li_default'){ 796f3f0262cSandi $level = 0; 797f3f0262cSandi $opens = 0; 798f3f0262cSandi $ret = ''; 799f3f0262cSandi 800f3f0262cSandi foreach ($data as $item){ 801f3f0262cSandi 802f3f0262cSandi if( $item['level'] > $level ){ 803f3f0262cSandi //open new list 804df52d0feSandi for($i=0; $i<($item['level'] - $level); $i++){ 805df52d0feSandi if ($i) $ret .= "<li class=\"clear\">\n"; 806f3f0262cSandi $ret .= "\n<ul class=\"$class\">\n"; 807df52d0feSandi } 808f3f0262cSandi }elseif( $item['level'] < $level ){ 809f3f0262cSandi //close last item 810f3f0262cSandi $ret .= "</li>\n"; 811f3f0262cSandi for ($i=0; $i<($level - $item['level']); $i++){ 812f3f0262cSandi //close higher lists 813f3f0262cSandi $ret .= "</ul>\n</li>\n"; 814f3f0262cSandi } 815f3f0262cSandi }else{ 816f3f0262cSandi //close last item 817f3f0262cSandi $ret .= "</li>\n"; 818f3f0262cSandi } 819f3f0262cSandi 820f3f0262cSandi //remember current level 821f3f0262cSandi $level = $item['level']; 822f3f0262cSandi 823f3f0262cSandi //print item 82434dbe711Schris $ret .= call_user_func($lifunc,$item); 8250c6b58a8SAndreas Gohr $ret .= '<div class="li">'; 82634dbe711Schris 82734dbe711Schris $ret .= call_user_func($func,$item); 8280c6b58a8SAndreas Gohr $ret .= '</div>'; 829f3f0262cSandi } 830f3f0262cSandi 831f3f0262cSandi //close remaining items and lists 832f3f0262cSandi for ($i=0; $i < $level; $i++){ 833f3f0262cSandi $ret .= "</li></ul>\n"; 834f3f0262cSandi } 835f3f0262cSandi 836f3f0262cSandi return $ret; 837f3f0262cSandi} 838f3f0262cSandi 83915fae107Sandi/** 84015fae107Sandi * display backlinks 84115fae107Sandi * 84215fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 84311df47ecSMichael Klier * @author Michael Klier <chi@chimeric.de> 84415fae107Sandi */ 845f3f0262cSandifunction html_backlinks(){ 846f3f0262cSandi global $ID; 847f3f0262cSandi global $conf; 84811df47ecSMichael Klier global $lang; 849f3f0262cSandi 850c112d578Sandi print p_locale_xhtml('backlinks'); 851f3f0262cSandi 85254f4c056SAndreas Gohr $data = ft_backlinks($ID); 853f3f0262cSandi 85411df47ecSMichael Klier if(!empty($data)) { 855f3f0262cSandi print '<ul class="idx">'; 85654f4c056SAndreas Gohr foreach($data as $blink){ 8570c6b58a8SAndreas Gohr print '<li><div class="li">'; 858db959ae3SAndreas Gohr print html_wikilink(':'.$blink,useHeading('navigation')?null:$blink); 8590c6b58a8SAndreas Gohr print '</div></li>'; 860f3f0262cSandi } 861f3f0262cSandi print '</ul>'; 86211df47ecSMichael Klier } else { 86311df47ecSMichael Klier print '<div class="level1"><p>' . $lang['nothingfound'] . '</p></div>'; 86411df47ecSMichael Klier } 865f3f0262cSandi} 866f3f0262cSandi 86715fae107Sandi/** 86815fae107Sandi * show diff 86915fae107Sandi * 87015fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 87115fae107Sandi */ 872f3f0262cSandifunction html_diff($text='',$intro=true){ 873f3f0262cSandi global $ID; 874f3f0262cSandi global $REV; 875f3f0262cSandi global $lang; 876f3f0262cSandi global $conf; 877e1bd90ffSAndreas Gohr 87877707b04SAndreas Gohr // we're trying to be clever here, revisions to compare can be either 87977707b04SAndreas Gohr // given as rev and rev2 parameters, with rev2 being optional. Or in an 88077707b04SAndreas Gohr // array in rev2. 88177707b04SAndreas Gohr $rev1 = $REV; 8827b3f8b16SAndreas Gohr 88377707b04SAndreas Gohr if(is_array($_REQUEST['rev2'])){ 88477707b04SAndreas Gohr $rev1 = (int) $_REQUEST['rev2'][0]; 88577707b04SAndreas Gohr $rev2 = (int) $_REQUEST['rev2'][1]; 88654041c77SAndreas Gohr 88754041c77SAndreas Gohr if(!$rev1){ 88854041c77SAndreas Gohr $rev1 = $rev2; 88954041c77SAndreas Gohr unset($rev2); 89054041c77SAndreas Gohr } 891f3f0262cSandi }else{ 89277707b04SAndreas Gohr $rev2 = (int) $_REQUEST['rev2']; 8934d58bd99Sandi } 8944d58bd99Sandi 89577707b04SAndreas Gohr if($text){ // compare text to the most current revision 89677707b04SAndreas Gohr $l_rev = ''; 89777707b04SAndreas Gohr $l_text = rawWiki($ID,''); 89877707b04SAndreas Gohr $l_head = '<a class="wikilink1" href="'.wl($ID).'">'. 899f2263577SAndreas Gohr $ID.' '.dformat((int) @filemtime(wikiFN($ID))).'</a> '. 90077707b04SAndreas Gohr $lang['current']; 90177707b04SAndreas Gohr 90277707b04SAndreas Gohr $r_rev = ''; 90377707b04SAndreas Gohr $r_text = cleanText($text); 90477707b04SAndreas Gohr $r_head = $lang['yours']; 905e1bd90ffSAndreas Gohr }else{ 90677707b04SAndreas Gohr if($rev1 && $rev2){ // two specific revisions wanted 90754041c77SAndreas Gohr // make sure order is correct (older on the left) 90877707b04SAndreas Gohr if($rev1 < $rev2){ 90977707b04SAndreas Gohr $l_rev = $rev1; 91077707b04SAndreas Gohr $r_rev = $rev2; 91177707b04SAndreas Gohr }else{ 91277707b04SAndreas Gohr $l_rev = $rev2; 91377707b04SAndreas Gohr $r_rev = $rev1; 914e1bd90ffSAndreas Gohr } 91577707b04SAndreas Gohr }elseif($rev1){ // single revision given, compare to current 91677707b04SAndreas Gohr $r_rev = ''; 91777707b04SAndreas Gohr $l_rev = $rev1; 91877707b04SAndreas Gohr }else{ // no revision was given, compare previous to current 91977707b04SAndreas Gohr $r_rev = ''; 92077707b04SAndreas Gohr $revs = getRevisions($ID, 0, 1); 92177707b04SAndreas Gohr $l_rev = $revs[0]; 9226f8e9f59SAndreas Gohr $REV = $l_rev; // store revision back in $REV 92377707b04SAndreas Gohr } 92477707b04SAndreas Gohr 9257b3f8b16SAndreas Gohr // when both revisions are empty then the page was created just now 9267b3f8b16SAndreas Gohr if(!$l_rev && !$r_rev){ 9277b3f8b16SAndreas Gohr $l_text = ''; 9287b3f8b16SAndreas Gohr }else{ 92977707b04SAndreas Gohr $l_text = rawWiki($ID,$l_rev); 9307b3f8b16SAndreas Gohr } 93177707b04SAndreas Gohr $r_text = rawWiki($ID,$r_rev); 93277707b04SAndreas Gohr 9337b3f8b16SAndreas Gohr if(!$l_rev){ 9347b3f8b16SAndreas Gohr $l_head = '—'; 9357b3f8b16SAndreas Gohr }else{ 936e5e61eb0SAnika Henke $l_info = getRevisionInfo($ID,$l_rev,true); 937db959ae3SAndreas Gohr if($l_info['user']){ 938db959ae3SAndreas Gohr $l_user = editorinfo($l_info['user']); 939e5e61eb0SAnika Henke if(auth_ismanager()) $l_user .= ' ('.$l_info['ip'].')'; 940db959ae3SAndreas Gohr } else { 941db959ae3SAndreas Gohr $l_user = $l_info['ip']; 942db959ae3SAndreas Gohr } 943e5e61eb0SAnika Henke $l_user = '<span class="user">'.$l_user.'</span>'; 944e5e61eb0SAnika Henke $l_sum = ($l_info['sum']) ? '<span class="sum">'.hsc($l_info['sum']).'</span>' : ''; 945e5e61eb0SAnika Henke if ($l_info['type']===DOKU_CHANGE_TYPE_MINOR_EDIT) $l_minor = 'class="minor"'; 946e5e61eb0SAnika Henke 94777707b04SAndreas Gohr $l_head = '<a class="wikilink1" href="'.wl($ID,"rev=$l_rev").'">'. 948f2263577SAndreas Gohr $ID.' ['.dformat($l_rev).']</a>'. 949e5e61eb0SAnika Henke '<br />'.$l_user.' '.$l_sum; 9507b3f8b16SAndreas Gohr } 95177707b04SAndreas Gohr 95277707b04SAndreas Gohr if($r_rev){ 953e5e61eb0SAnika Henke $r_info = getRevisionInfo($ID,$r_rev,true); 954db959ae3SAndreas Gohr if($r_info['user']){ 955db959ae3SAndreas Gohr $r_user = editorinfo($r_info['user']); 956e5e61eb0SAnika Henke if(auth_ismanager()) $r_user .= ' ('.$r_info['ip'].')'; 957db959ae3SAndreas Gohr } else { 958db959ae3SAndreas Gohr $r_user = $r_info['ip']; 959db959ae3SAndreas Gohr } 960e5e61eb0SAnika Henke $r_user = '<span class="user">'.$r_user.'</span>'; 961e5e61eb0SAnika Henke $r_sum = ($r_info['sum']) ? '<span class="sum">'.hsc($r_info['sum']).'</span>' : ''; 962e5e61eb0SAnika Henke if ($r_info['type']===DOKU_CHANGE_TYPE_MINOR_EDIT) $r_minor = 'class="minor"'; 963e5e61eb0SAnika Henke 96477707b04SAndreas Gohr $r_head = '<a class="wikilink1" href="'.wl($ID,"rev=$r_rev").'">'. 965f2263577SAndreas Gohr $ID.' ['.dformat($r_rev).']</a>'. 966e5e61eb0SAnika Henke '<br />'.$r_user.' '.$r_sum; 9677b3f8b16SAndreas Gohr }elseif($_rev = @filemtime(wikiFN($ID))){ 968e5e61eb0SAnika Henke $_info = getRevisionInfo($ID,$_rev,true); 969db959ae3SAndreas Gohr if($_info['user']){ 970db959ae3SAndreas Gohr $_user = editorinfo($_info['user']); 971e5e61eb0SAnika Henke if(auth_ismanager()) $_user .= ' ('.$_info['ip'].')'; 972db959ae3SAndreas Gohr } else { 973db959ae3SAndreas Gohr $_user = $_info['ip']; 974db959ae3SAndreas Gohr } 975e5e61eb0SAnika Henke $_user = '<span class="user">'.$_user.'</span>'; 976e5e61eb0SAnika Henke $_sum = ($_info['sum']) ? '<span class="sum">'.hsc($_info['sum']).'</span>' : ''; 977e5e61eb0SAnika Henke if ($_info['type']===DOKU_CHANGE_TYPE_MINOR_EDIT) $r_minor = 'class="minor"'; 978e5e61eb0SAnika Henke 97977707b04SAndreas Gohr $r_head = '<a class="wikilink1" href="'.wl($ID).'">'. 980f2263577SAndreas Gohr $ID.' ['.dformat($_rev).']</a> '. 981658b1aa0SAnika Henke '('.$lang['current'].')'. 982e5e61eb0SAnika Henke '<br />'.$_user.' '.$_sum; 9837b3f8b16SAndreas Gohr }else{ 984658b1aa0SAnika Henke $r_head = '— ('.$lang['current'].')'; 985f3f0262cSandi } 98677707b04SAndreas Gohr } 98777707b04SAndreas Gohr 98877707b04SAndreas Gohr $df = new Diff(explode("\n",htmlspecialchars($l_text)), 98977707b04SAndreas Gohr explode("\n",htmlspecialchars($r_text))); 99077707b04SAndreas Gohr 991f3f0262cSandi $tdf = new TableDiffFormatter(); 992c112d578Sandi if($intro) print p_locale_xhtml('diff'); 993f3f0262cSandi ?> 994daf4ca4eSAnika Henke <table class="diff"> 995f3f0262cSandi <tr> 996e5e61eb0SAnika Henke <th colspan="2" <?php echo $l_minor?>> 99777707b04SAndreas Gohr <?php echo $l_head?> 998daf4ca4eSAnika Henke </th> 999e5e61eb0SAnika Henke <th colspan="2" <?php echo $r_minor?>> 100077707b04SAndreas Gohr <?php echo $r_head?> 1001daf4ca4eSAnika Henke </th> 1002f3f0262cSandi </tr> 10034da078a3Smatthiasgrimm <?php echo $tdf->format($df)?> 1004f3f0262cSandi </table> 10054da078a3Smatthiasgrimm <?php 1006f3f0262cSandi} 1007f3f0262cSandi 100815fae107Sandi/** 100915fae107Sandi * show warning on conflict detection 101015fae107Sandi * 101115fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 101215fae107Sandi */ 1013f3f0262cSandifunction html_conflict($text,$summary){ 1014f3f0262cSandi global $ID; 1015f3f0262cSandi global $lang; 1016f3f0262cSandi 1017c112d578Sandi print p_locale_xhtml('conflict'); 1018e351c80dSAdrian Lang $form = new Doku_Form(array('id' => 'dw__editform')); 1019fdb8d77bSTom N Harris $form->addHidden('id', $ID); 1020fdb8d77bSTom N Harris $form->addHidden('wikitext', $text); 1021fdb8d77bSTom N Harris $form->addHidden('summary', $summary); 1022fdb8d77bSTom N Harris $form->addElement(form_makeButton('submit', 'save', $lang['btn_save'], array('accesskey'=>'s'))); 1023fdb8d77bSTom N Harris $form->addElement(form_makeButton('submit', 'cancel', $lang['btn_cancel'])); 1024fdb8d77bSTom N Harris html_form('conflict', $form); 1025fdb8d77bSTom N Harris print '<br /><br /><br /><br />'.NL; 1026f3f0262cSandi} 1027f3f0262cSandi 1028f3f0262cSandi/** 102915fae107Sandi * Prints the global message array 103015fae107Sandi * 103115fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 1032f3f0262cSandi */ 1033f3f0262cSandifunction html_msgarea(){ 1034f3f0262cSandi global $MSG; 1035f3f0262cSandi if(!isset($MSG)) return; 1036f3f0262cSandi 10374af9f0d4SAndreas Gohr $shown = array(); 1038f3f0262cSandi foreach($MSG as $msg){ 10394af9f0d4SAndreas Gohr $hash = md5($msg['msg']); 10404af9f0d4SAndreas Gohr if(isset($shown[$hash])) continue; // skip double messages 1041f3f0262cSandi print '<div class="'.$msg['lvl'].'">'; 1042f3f0262cSandi print $msg['msg']; 1043f3f0262cSandi print '</div>'; 10444af9f0d4SAndreas Gohr $shown[$hash] = 1; 1045f3f0262cSandi } 1046f3f0262cSandi} 1047f3f0262cSandi 1048f3f0262cSandi/** 1049f3f0262cSandi * Prints the registration form 105015fae107Sandi * 105115fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 1052f3f0262cSandi */ 1053f3f0262cSandifunction html_register(){ 1054f3f0262cSandi global $lang; 1055cab2716aSmatthias.grimm global $conf; 1056f3f0262cSandi global $ID; 1057f3f0262cSandi 1058c112d578Sandi print p_locale_xhtml('register'); 1059fdb8d77bSTom N Harris print '<div class="centeralign">'.NL; 1060e351c80dSAdrian Lang $form = new Doku_Form(array('id' => 'dw__register')); 1061fdb8d77bSTom N Harris $form->startFieldset($lang['register']); 1062fdb8d77bSTom N Harris $form->addHidden('do', 'register'); 1063fdb8d77bSTom N Harris $form->addHidden('save', '1'); 1064fdb8d77bSTom N Harris $form->addElement(form_makeTextField('login', $_POST['login'], $lang['user'], null, 'block', array('size'=>'50'))); 1065cab2716aSmatthias.grimm if (!$conf['autopasswd']) { 1066fdb8d77bSTom N Harris $form->addElement(form_makePasswordField('pass', $lang['pass'], '', 'block', array('size'=>'50'))); 1067fdb8d77bSTom N Harris $form->addElement(form_makePasswordField('passchk', $lang['passchk'], '', 'block', array('size'=>'50'))); 1068cab2716aSmatthias.grimm } 1069fdb8d77bSTom N Harris $form->addElement(form_makeTextField('fullname', $_POST['fullname'], $lang['fullname'], '', 'block', array('size'=>'50'))); 1070fdb8d77bSTom N Harris $form->addElement(form_makeTextField('email', $_POST['email'], $lang['email'], '', 'block', array('size'=>'50'))); 1071fdb8d77bSTom N Harris $form->addElement(form_makeButton('submit', '', $lang['register'])); 1072fdb8d77bSTom N Harris $form->endFieldset(); 1073fdb8d77bSTom N Harris html_form('register', $form); 1074cab2716aSmatthias.grimm 1075fdb8d77bSTom N Harris print '</div>'.NL; 1076f3f0262cSandi} 1077f3f0262cSandi 1078f3f0262cSandi/** 10798b06d178Schris * Print the update profile form 10808b06d178Schris * 10818b06d178Schris * @author Christopher Smith <chris@jalakai.co.uk> 10828b06d178Schris * @author Andreas Gohr <andi@splitbrain.org> 10838b06d178Schris */ 10848b06d178Schrisfunction html_updateprofile(){ 10858b06d178Schris global $lang; 10868b06d178Schris global $conf; 10878b06d178Schris global $ID; 10888b06d178Schris global $INFO; 108982fd59b6SAndreas Gohr global $auth; 10908b06d178Schris 10918b06d178Schris print p_locale_xhtml('updateprofile'); 10928b06d178Schris 10938b06d178Schris if (empty($_POST['fullname'])) $_POST['fullname'] = $INFO['userinfo']['name']; 10948b06d178Schris if (empty($_POST['email'])) $_POST['email'] = $INFO['userinfo']['mail']; 1095fdb8d77bSTom N Harris print '<div class="centeralign">'.NL; 1096e351c80dSAdrian Lang $form = new Doku_Form(array('id' => 'dw__register')); 1097fdb8d77bSTom N Harris $form->startFieldset($lang['profile']); 1098fdb8d77bSTom N Harris $form->addHidden('do', 'profile'); 1099fdb8d77bSTom N Harris $form->addHidden('save', '1'); 1100fdb8d77bSTom N Harris $form->addElement(form_makeTextField('fullname', $_SERVER['REMOTE_USER'], $lang['user'], '', 'block', array('size'=>'50', 'disabled'=>'disabled'))); 1101fdb8d77bSTom N Harris $attr = array('size'=>'50'); 1102fdb8d77bSTom N Harris if (!$auth->canDo('modName')) $attr['disabled'] = 'disabled'; 1103fdb8d77bSTom N Harris $form->addElement(form_makeTextField('fullname', $_POST['fullname'], $lang['fullname'], '', 'block', $attr)); 110439ba8890SAndreas Gohr $attr = array('size'=>'50'); 110539ba8890SAndreas Gohr if (!$auth->canDo('modMail')) $attr['disabled'] = 'disabled'; 1106fdb8d77bSTom N Harris $form->addElement(form_makeTextField('email', $_POST['email'], $lang['email'], '', 'block', $attr)); 1107fdb8d77bSTom N Harris $form->addElement(form_makeTag('br')); 1108fdb8d77bSTom N Harris if ($auth->canDo('modPass')) { 1109fdb8d77bSTom N Harris $form->addElement(form_makePasswordField('newpass', $lang['newpass'], '', 'block', array('size'=>'50'))); 1110fdb8d77bSTom N Harris $form->addElement(form_makePasswordField('passchk', $lang['passchk'], '', 'block', array('size'=>'50'))); 1111fdb8d77bSTom N Harris } 1112fdb8d77bSTom N Harris if ($conf['profileconfirm']) { 1113fdb8d77bSTom N Harris $form->addElement(form_makeTag('br')); 1114fdb8d77bSTom N Harris $form->addElement(form_makePasswordField('oldpass', $lang['oldpass'], '', 'block', array('size'=>'50'))); 1115fdb8d77bSTom N Harris } 1116fdb8d77bSTom N Harris $form->addElement(form_makeButton('submit', '', $lang['btn_save'])); 1117fdb8d77bSTom N Harris $form->addElement(form_makeButton('reset', '', $lang['btn_reset'])); 1118fdb8d77bSTom N Harris $form->endFieldset(); 1119fdb8d77bSTom N Harris html_form('updateprofile', $form); 1120fdb8d77bSTom N Harris print '</div>'.NL; 11218b06d178Schris} 11228b06d178Schris 11238b06d178Schris/** 11247c4635c4SAdrian Lang * Preprocess edit form data 112515fae107Sandi * 112615fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 11272ffea8f2SAdrian Lang * 11282ffea8f2SAdrian Lang * @triggers HTML_EDITFORM_OUTPUT 1129f3f0262cSandi */ 11305a932e77SAdrian Langfunction html_edit(){ 1131f3f0262cSandi global $ID; 1132f3f0262cSandi global $REV; 1133f3f0262cSandi global $DATE; 1134f3f0262cSandi global $PRE; 1135f3f0262cSandi global $SUF; 1136f3f0262cSandi global $INFO; 1137f3f0262cSandi global $SUM; 1138f3f0262cSandi global $lang; 1139f3f0262cSandi global $conf; 114045a99335SAdrian Lang global $TEXT; 1141d141c8dcSAdrian Lang global $RANGE; 1142f3f0262cSandi 11438fe3bb00STom N Harris if (isset($_REQUEST['changecheck'])) { 11448fe3bb00STom N Harris $check = $_REQUEST['changecheck']; 114545a99335SAdrian Lang } elseif(!$INFO['exists']){ 114645a99335SAdrian Lang // $TEXT has been loaded from page template 114745a99335SAdrian Lang $check = md5(''); 11488fe3bb00STom N Harris } else { 114945a99335SAdrian Lang $check = md5($TEXT); 11508fe3bb00STom N Harris } 115145a99335SAdrian Lang $mod = md5($TEXT) !== $check; 1152f3f0262cSandi 115327eb9321SAnika Henke $wr = $INFO['writable'] && !$INFO['locked']; 115445a99335SAdrian Lang $include = 'edit'; 1155f3f0262cSandi if($wr){ 1156ffde0ac9SAdrian Lang if ($REV) $include = 'editrev'; 1157f3f0262cSandi }else{ 1158409d7af7SAndreas Gohr // check pseudo action 'source' 1159409d7af7SAndreas Gohr if(!actionOK('source')){ 1160409d7af7SAndreas Gohr msg('Command disabled: source',-1); 1161409d7af7SAndreas Gohr return; 1162409d7af7SAndreas Gohr } 1163ffde0ac9SAdrian Lang $include = 'read'; 1164f3f0262cSandi } 11657c4635c4SAdrian Lang 11667c4635c4SAdrian Lang global $license; 116742c7abd6SAndreas Gohr 1168e351c80dSAdrian Lang $form = new Doku_Form(array('id' => 'dw__editform')); 1169fdb8d77bSTom N Harris $form->addHidden('id', $ID); 1170fdb8d77bSTom N Harris $form->addHidden('rev', $REV); 1171fdb8d77bSTom N Harris $form->addHidden('date', $DATE); 1172fdb8d77bSTom N Harris $form->addHidden('prefix', $PRE); 1173fdb8d77bSTom N Harris $form->addHidden('suffix', $SUF); 1174fdb8d77bSTom N Harris $form->addHidden('changecheck', $check); 11758e4da260SAdrian Lang 11762ffea8f2SAdrian Lang $data = array('form' => $form, 11772ffea8f2SAdrian Lang 'wr' => $wr, 11782ffea8f2SAdrian Lang 'media_manager' => true, 117912c96aceSAdrian Lang 'target' => (isset($_REQUEST['target']) && $wr && 118012c96aceSAdrian Lang $RANGE !== '') ? $_REQUEST['target'] : 'section', 11812ffea8f2SAdrian Lang 'intro_locale' => $include); 118212c96aceSAdrian Lang 118312c96aceSAdrian Lang if ($data['target'] !== 'section') { 118412c96aceSAdrian Lang // Only emit event if page is writable, section edit data is valid and 118512c96aceSAdrian Lang // edit target is not section. 11868e4da260SAdrian Lang trigger_event('HTML_EDIT_FORMSELECTION', $data, 'html_edit_form', true); 11872ffea8f2SAdrian Lang } else { 11882ffea8f2SAdrian Lang html_edit_form($data); 11892ffea8f2SAdrian Lang } 1190ffde0ac9SAdrian Lang if (isset($data['intro_locale'])) { 1191ffde0ac9SAdrian Lang echo p_locale_xhtml($data['intro_locale']); 1192ffde0ac9SAdrian Lang } 11938e4da260SAdrian Lang 1194b7eccc60SAdrian Lang $form->addHidden('target', $data['target']); 1195fdb8d77bSTom N Harris $form->addElement(form_makeOpenTag('div', array('id'=>'wiki__editbar'))); 1196fdb8d77bSTom N Harris $form->addElement(form_makeOpenTag('div', array('id'=>'size__ctl'))); 1197fdb8d77bSTom N Harris $form->addElement(form_makeCloseTag('div')); 1198fdb8d77bSTom N Harris if ($wr) { 1199fdb8d77bSTom N Harris $form->addElement(form_makeOpenTag('div', array('class'=>'editButtons'))); 1200fdb8d77bSTom N Harris $form->addElement(form_makeButton('submit', 'save', $lang['btn_save'], array('id'=>'edbtn__save', 'accesskey'=>'s', 'tabindex'=>'4'))); 1201fdb8d77bSTom N Harris $form->addElement(form_makeButton('submit', 'preview', $lang['btn_preview'], array('id'=>'edbtn__preview', 'accesskey'=>'p', 'tabindex'=>'5'))); 1202fdb8d77bSTom N Harris $form->addElement(form_makeButton('submit', 'draftdel', $lang['btn_cancel'], array('tabindex'=>'6'))); 1203fdb8d77bSTom N Harris $form->addElement(form_makeCloseTag('div')); 1204fdb8d77bSTom N Harris $form->addElement(form_makeOpenTag('div', array('class'=>'summary'))); 1205fdb8d77bSTom N Harris $form->addElement(form_makeTextField('summary', $SUM, $lang['summary'], 'edit__summary', 'nowrap', array('size'=>'50', 'tabindex'=>'2'))); 1206fdb8d77bSTom N Harris $elem = html_minoredit(); 1207fdb8d77bSTom N Harris if ($elem) $form->addElement($elem); 1208fdb8d77bSTom N Harris $form->addElement(form_makeCloseTag('div')); 1209fdb8d77bSTom N Harris } 1210fdb8d77bSTom N Harris $form->addElement(form_makeCloseTag('div')); 12115808bc54SAndreas Gohr if($wr && $conf['license']){ 1212066fee30SAndreas Gohr $form->addElement(form_makeOpenTag('div', array('class'=>'license'))); 1213066fee30SAndreas Gohr $out = $lang['licenseok']; 1214066fee30SAndreas Gohr $out .= '<a href="'.$license[$conf['license']]['url'].'" rel="license" class="urlextern"'; 121584645d8cSAndreas Gohr if(isset($conf['target']['extern'])) $out .= ' target="'.$conf['target']['extern'].'"'; 1216066fee30SAndreas Gohr $out .= '> '.$license[$conf['license']]['name'].'</a>'; 1217066fee30SAndreas Gohr $form->addElement($out); 1218066fee30SAndreas Gohr $form->addElement(form_makeCloseTag('div')); 1219066fee30SAndreas Gohr } 12208e4da260SAdrian Lang 12218e4da260SAdrian Lang if ($wr) { 12228e4da260SAdrian Lang // sets changed to true when previewed 12232e61e4dfSAdrian Lang echo '<script type="text/javascript" charset="utf-8"><!--//--><![CDATA[//><!--'. NL; 12248e4da260SAdrian Lang echo 'textChanged = ' . ($mod ? 'true' : 'false'); 12252e61e4dfSAdrian Lang echo '//--><!]]></script>' . NL; 12268e4da260SAdrian Lang } ?> 12278e4da260SAdrian Lang <div style="width:99%;"> 12288e4da260SAdrian Lang 12298e4da260SAdrian Lang <div class="toolbar"> 12308e4da260SAdrian Lang <div id="draft__status"><?php if(!empty($INFO['draft'])) echo $lang['draftdate'].' '.dformat();?></div> 12318e4da260SAdrian Lang <div id="tool__bar"><?php if ($wr && $data['media_manager']){?><a href="<?php echo DOKU_BASE?>lib/exe/mediamanager.php?ns=<?php echo $INFO['namespace']?>" 12328e4da260SAdrian Lang target="_blank"><?php echo $lang['mediaselect'] ?></a><?php }?></div> 12338e4da260SAdrian Lang 12348e4da260SAdrian Lang </div> 12358e4da260SAdrian Lang <?php 12368e4da260SAdrian Lang 1237fdb8d77bSTom N Harris html_form('edit', $form); 1238fdb8d77bSTom N Harris print '</div>'.NL; 1239f3f0262cSandi} 1240f3f0262cSandi 1241f3f0262cSandi/** 12428e4da260SAdrian Lang * Display the default edit form 12438e4da260SAdrian Lang * 12448e4da260SAdrian Lang * Is the default action for HTML_EDIT_FORMSELECTION. 12458e4da260SAdrian Lang */ 12468e4da260SAdrian Langfunction html_edit_form($param) { 124745a99335SAdrian Lang global $TEXT; 124812c96aceSAdrian Lang 124912c96aceSAdrian Lang if ($param['target'] !== 'section') { 125012c96aceSAdrian Lang msg('No editor for edit target ' . $param['target'] . ' found.', -1); 125112c96aceSAdrian Lang } 125212c96aceSAdrian Lang 12538e4da260SAdrian Lang $attr = array('tabindex'=>'1'); 125412c96aceSAdrian Lang if (!$param['wr']) $attr['readonly'] = 'readonly'; 125512c96aceSAdrian Lang 125612c96aceSAdrian Lang $param['form']->addElement(form_makeWikiText($TEXT, $attr)); 12578e4da260SAdrian Lang} 12588e4da260SAdrian Lang 12598e4da260SAdrian Lang/** 1260b6912aeaSAndreas Gohr * Adds a checkbox for minor edits for logged in users 1261b6912aeaSAndreas Gohr * 1262b1f92db2SAdrian Lang * @author Andreas Gohr <andi@splitbrain.org> 1263b6912aeaSAndreas Gohr */ 1264b6912aeaSAndreas Gohrfunction html_minoredit(){ 1265b6912aeaSAndreas Gohr global $conf; 1266b6912aeaSAndreas Gohr global $lang; 1267b6912aeaSAndreas Gohr // minor edits are for logged in users only 1268b6912aeaSAndreas Gohr if(!$conf['useacl'] || !$_SERVER['REMOTE_USER']){ 1269fdb8d77bSTom N Harris return false; 1270b6912aeaSAndreas Gohr } 1271b6912aeaSAndreas Gohr 1272b6912aeaSAndreas Gohr $p = array(); 1273b6912aeaSAndreas Gohr $p['tabindex'] = 3; 1274bb4866bdSchris if(!empty($_REQUEST['minor'])) $p['checked']='checked'; 1275fdb8d77bSTom N Harris return form_makeCheckboxField('minor', '1', $lang['minoredit'], 'minoredit', 'nowrap', $p); 1276b6912aeaSAndreas Gohr} 1277b6912aeaSAndreas Gohr 1278b6912aeaSAndreas Gohr/** 1279f3f0262cSandi * prints some debug info 128015fae107Sandi * 128115fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 1282f3f0262cSandi */ 1283f3f0262cSandifunction html_debug(){ 1284f3f0262cSandi global $conf; 1285d16a4edaSandi global $lang; 12865298a619SAndreas Gohr global $auth; 1287100a97e3SAndreas Gohr global $INFO; 1288100a97e3SAndreas Gohr 128928fb55ffSandi //remove sensitive data 129028fb55ffSandi $cnf = $conf; 129124297a69SAndreas Gohr debug_guard($cnf); 1292100a97e3SAndreas Gohr $nfo = $INFO; 129324297a69SAndreas Gohr debug_guard($nfo); 1294100a97e3SAndreas Gohr $ses = $_SESSION; 129524297a69SAndreas Gohr debug_guard($ses); 1296f3f0262cSandi 1297f3f0262cSandi print '<html><body>'; 1298f3f0262cSandi 1299f3f0262cSandi print '<p>When reporting bugs please send all the following '; 1300f3f0262cSandi print 'output as a mail to andi@splitbrain.org '; 1301f3f0262cSandi print 'The best way to do this is to save this page in your browser</p>'; 1302f3f0262cSandi 1303100a97e3SAndreas Gohr print '<b>$INFO:</b><pre>'; 1304100a97e3SAndreas Gohr print_r($nfo); 1305100a97e3SAndreas Gohr print '</pre>'; 1306100a97e3SAndreas Gohr 1307f3f0262cSandi print '<b>$_SERVER:</b><pre>'; 1308f3f0262cSandi print_r($_SERVER); 1309f3f0262cSandi print '</pre>'; 1310f3f0262cSandi 1311f3f0262cSandi print '<b>$conf:</b><pre>'; 131228fb55ffSandi print_r($cnf); 1313f3f0262cSandi print '</pre>'; 1314f3f0262cSandi 1315ed7b5f09Sandi print '<b>DOKU_BASE:</b><pre>'; 1316ed7b5f09Sandi print DOKU_BASE; 1317f3f0262cSandi print '</pre>'; 1318f3f0262cSandi 1319ed7b5f09Sandi print '<b>abs DOKU_BASE:</b><pre>'; 1320ed7b5f09Sandi print DOKU_URL; 1321ed7b5f09Sandi print '</pre>'; 1322ed7b5f09Sandi 1323ed7b5f09Sandi print '<b>rel DOKU_BASE:</b><pre>'; 1324f3f0262cSandi print dirname($_SERVER['PHP_SELF']).'/'; 1325f3f0262cSandi print '</pre>'; 1326f3f0262cSandi 1327f3f0262cSandi print '<b>PHP Version:</b><pre>'; 1328f3f0262cSandi print phpversion(); 1329f3f0262cSandi print '</pre>'; 1330f3f0262cSandi 1331f3f0262cSandi print '<b>locale:</b><pre>'; 1332f3f0262cSandi print setlocale(LC_ALL,0); 1333f3f0262cSandi print '</pre>'; 1334f3f0262cSandi 1335d16a4edaSandi print '<b>encoding:</b><pre>'; 1336d16a4edaSandi print $lang['encoding']; 1337d16a4edaSandi print '</pre>'; 1338d16a4edaSandi 13395298a619SAndreas Gohr if($auth){ 13405298a619SAndreas Gohr print '<b>Auth backend capabilities:</b><pre>'; 13415298a619SAndreas Gohr print_r($auth->cando); 13425298a619SAndreas Gohr print '</pre>'; 13435298a619SAndreas Gohr } 13445298a619SAndreas Gohr 13453aa54d7cSAndreas Gohr print '<b>$_SESSION:</b><pre>'; 1346100a97e3SAndreas Gohr print_r($ses); 13473aa54d7cSAndreas Gohr print '</pre>'; 13483aa54d7cSAndreas Gohr 1349f3f0262cSandi print '<b>Environment:</b><pre>'; 1350f3f0262cSandi print_r($_ENV); 1351f3f0262cSandi print '</pre>'; 1352f3f0262cSandi 1353f3f0262cSandi print '<b>PHP settings:</b><pre>'; 1354f3f0262cSandi $inis = ini_get_all(); 1355f3f0262cSandi print_r($inis); 1356f3f0262cSandi print '</pre>'; 1357f3f0262cSandi 1358f3f0262cSandi print '</body></html>'; 1359f3f0262cSandi} 1360f3f0262cSandi 136110271ce4SAndreas Gohr/** 136210271ce4SAndreas Gohr * List available Administration Tasks 136310271ce4SAndreas Gohr * 136410271ce4SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 136510271ce4SAndreas Gohr * @author Håkan Sandell <hakan.sandell@home.se> 136610271ce4SAndreas Gohr */ 1367c19fe9c0Sandifunction html_admin(){ 1368c19fe9c0Sandi global $ID; 1369f8cc712eSAndreas Gohr global $INFO; 1370c19fe9c0Sandi global $lang; 1371ca3a6df1SMatthias Grimm global $conf; 137210271ce4SAndreas Gohr global $auth; 1373c19fe9c0Sandi 137411e2ce22Schris // build menu of admin functions from the plugins that handle them 137511e2ce22Schris $pluginlist = plugin_list('admin'); 137611e2ce22Schris $menu = array(); 137711e2ce22Schris foreach ($pluginlist as $p) { 1378db959ae3SAndreas Gohr if($obj =& plugin_load('admin',$p) === null) continue; 1379f8cc712eSAndreas Gohr 1380f8cc712eSAndreas Gohr // check permissions 1381f8cc712eSAndreas Gohr if($obj->forAdminOnly() && !$INFO['isadmin']) continue; 1382f8cc712eSAndreas Gohr 138310271ce4SAndreas Gohr $menu[$p] = array('plugin' => $p, 138411e2ce22Schris 'prompt' => $obj->getMenuText($conf['lang']), 138511e2ce22Schris 'sort' => $obj->getMenuSort() 138611e2ce22Schris ); 138711e2ce22Schris } 138811e2ce22Schris 138910271ce4SAndreas Gohr print p_locale_xhtml('admin'); 139010271ce4SAndreas Gohr 139110271ce4SAndreas Gohr // Admin Tasks 139210271ce4SAndreas Gohr if($INFO['isadmin']){ 139310271ce4SAndreas Gohr ptln('<ul class="admin_tasks">'); 139410271ce4SAndreas Gohr 139576c65fd3SAndreas Gohr if($menu['usermanager'] && $auth && $auth->canDo('getUsers')){ 139610271ce4SAndreas Gohr ptln(' <li class="admin_usermanager"><div class="li">'. 139710271ce4SAndreas Gohr '<a href="'.wl($ID, array('do' => 'admin','page' => 'usermanager')).'">'. 139810271ce4SAndreas Gohr $menu['usermanager']['prompt'].'</a></div></li>'); 139910271ce4SAndreas Gohr } 140010271ce4SAndreas Gohr unset($menu['usermanager']); 140110271ce4SAndreas Gohr 140276c65fd3SAndreas Gohr if($menu['acl']){ 140310271ce4SAndreas Gohr ptln(' <li class="admin_acl"><div class="li">'. 140410271ce4SAndreas Gohr '<a href="'.wl($ID, array('do' => 'admin','page' => 'acl')).'">'. 140510271ce4SAndreas Gohr $menu['acl']['prompt'].'</a></div></li>'); 140676c65fd3SAndreas Gohr } 140710271ce4SAndreas Gohr unset($menu['acl']); 140810271ce4SAndreas Gohr 140976c65fd3SAndreas Gohr if($menu['plugin']){ 141010271ce4SAndreas Gohr ptln(' <li class="admin_plugin"><div class="li">'. 141110271ce4SAndreas Gohr '<a href="'.wl($ID, array('do' => 'admin','page' => 'plugin')).'">'. 141210271ce4SAndreas Gohr $menu['plugin']['prompt'].'</a></div></li>'); 141376c65fd3SAndreas Gohr } 141410271ce4SAndreas Gohr unset($menu['plugin']); 141510271ce4SAndreas Gohr 141676c65fd3SAndreas Gohr if($menu['config']){ 141710271ce4SAndreas Gohr ptln(' <li class="admin_config"><div class="li">'. 141810271ce4SAndreas Gohr '<a href="'.wl($ID, array('do' => 'admin','page' => 'config')).'">'. 141910271ce4SAndreas Gohr $menu['config']['prompt'].'</a></div></li>'); 142076c65fd3SAndreas Gohr } 142110271ce4SAndreas Gohr unset($menu['config']); 142210271ce4SAndreas Gohr } 142310271ce4SAndreas Gohr ptln('</ul>'); 142410271ce4SAndreas Gohr 142510271ce4SAndreas Gohr // Manager Tasks 142610271ce4SAndreas Gohr ptln('<ul class="admin_tasks">'); 142710271ce4SAndreas Gohr 142876c65fd3SAndreas Gohr if($menu['revert']){ 142910271ce4SAndreas Gohr ptln(' <li class="admin_revert"><div class="li">'. 143010271ce4SAndreas Gohr '<a href="'.wl($ID, array('do' => 'admin','page' => 'revert')).'">'. 143110271ce4SAndreas Gohr $menu['revert']['prompt'].'</a></div></li>'); 143276c65fd3SAndreas Gohr } 143310271ce4SAndreas Gohr unset($menu['revert']); 143410271ce4SAndreas Gohr 143576c65fd3SAndreas Gohr if($menu['popularity']){ 143610271ce4SAndreas Gohr ptln(' <li class="admin_popularity"><div class="li">'. 143710271ce4SAndreas Gohr '<a href="'.wl($ID, array('do' => 'admin','page' => 'popularity')).'">'. 143810271ce4SAndreas Gohr $menu['popularity']['prompt'].'</a></div></li>'); 143976c65fd3SAndreas Gohr } 144010271ce4SAndreas Gohr unset($menu['popularity']); 144110271ce4SAndreas Gohr 144210271ce4SAndreas Gohr ptln('</ul>'); 144310271ce4SAndreas Gohr 144410271ce4SAndreas Gohr // print the rest as sorted list 144510271ce4SAndreas Gohr if(count($menu)){ 1446746855cfSBen Coburn usort($menu, 'p_sort_modes'); 144711e2ce22Schris // output the menu 144810271ce4SAndreas Gohr ptln('<div class="clearer"></div>'); 144910271ce4SAndreas Gohr print p_locale_xhtml('adminplugins'); 145011e2ce22Schris ptln('<ul>'); 145111e2ce22Schris foreach ($menu as $item) { 145211e2ce22Schris if (!$item['prompt']) continue; 14530c6b58a8SAndreas Gohr ptln(' <li><div class="li"><a href="'.wl($ID, 'do=admin&page='.$item['plugin']).'">'.$item['prompt'].'</a></div></li>'); 145411e2ce22Schris } 145511e2ce22Schris ptln('</ul>'); 1456ca3a6df1SMatthias Grimm } 145710271ce4SAndreas Gohr} 1458c19fe9c0Sandi 14598b06d178Schris/** 14608b06d178Schris * Form to request a new password for an existing account 14618b06d178Schris * 14628b06d178Schris * @author Benoit Chesneau <benoit@bchesneau.info> 146311e2ce22Schris */ 14648b06d178Schrisfunction html_resendpwd() { 14658b06d178Schris global $lang; 14668b06d178Schris global $conf; 14678b06d178Schris global $ID; 1468c19fe9c0Sandi 14698b06d178Schris print p_locale_xhtml('resendpwd'); 1470fdb8d77bSTom N Harris print '<div class="centeralign">'.NL; 1471e351c80dSAdrian Lang $form = new Doku_Form(array('id' => 'dw__resendpwd')); 1472fdb8d77bSTom N Harris $form->startFieldset($lang['resendpwd']); 1473fdb8d77bSTom N Harris $form->addHidden('do', 'resendpwd'); 1474fdb8d77bSTom N Harris $form->addHidden('save', '1'); 1475fdb8d77bSTom N Harris $form->addElement(form_makeTag('br')); 1476fdb8d77bSTom N Harris $form->addElement(form_makeTextField('login', $_POST['login'], $lang['user'], '', 'block')); 1477fdb8d77bSTom N Harris $form->addElement(form_makeTag('br')); 1478fdb8d77bSTom N Harris $form->addElement(form_makeTag('br')); 1479fdb8d77bSTom N Harris $form->addElement(form_makeButton('submit', '', $lang['btn_resendpwd'])); 1480fdb8d77bSTom N Harris $form->endFieldset(); 1481fdb8d77bSTom N Harris html_form('resendpwd', $form); 1482fdb8d77bSTom N Harris print '</div>'.NL; 1483fdb8d77bSTom N Harris} 1484fdb8d77bSTom N Harris 1485fdb8d77bSTom N Harris/** 1486b8595a66SAndreas Gohr * Return the TOC rendered to XHTML 1487b8595a66SAndreas Gohr * 1488b8595a66SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 1489b8595a66SAndreas Gohr */ 1490b8595a66SAndreas Gohrfunction html_TOC($toc){ 1491b8595a66SAndreas Gohr if(!count($toc)) return ''; 1492b8595a66SAndreas Gohr global $lang; 1493b8595a66SAndreas Gohr $out = '<!-- TOC START -->'.DOKU_LF; 1494b8595a66SAndreas Gohr $out .= '<div class="toc">'.DOKU_LF; 1495b8595a66SAndreas Gohr $out .= '<div class="tocheader toctoggle" id="toc__header">'; 1496b8595a66SAndreas Gohr $out .= $lang['toc']; 1497b8595a66SAndreas Gohr $out .= '</div>'.DOKU_LF; 1498b8595a66SAndreas Gohr $out .= '<div id="toc__inside">'.DOKU_LF; 1499b8595a66SAndreas Gohr $out .= html_buildlist($toc,'toc','html_list_toc'); 1500b8595a66SAndreas Gohr $out .= '</div>'.DOKU_LF.'</div>'.DOKU_LF; 1501b8595a66SAndreas Gohr $out .= '<!-- TOC END -->'.DOKU_LF; 1502db959ae3SAndreas Gohr return $out; 1503db959ae3SAndreas Gohr} 1504b8595a66SAndreas Gohr 1505b8595a66SAndreas Gohr/** 1506b8595a66SAndreas Gohr * Callback for html_buildlist 1507b8595a66SAndreas Gohr */ 1508b8595a66SAndreas Gohrfunction html_list_toc($item){ 1509c66972f2SAdrian Lang if(isset($item['hid'])){ 15107d91652aSAndreas Gohr $link = '#'.$item['hid']; 15117d91652aSAndreas Gohr }else{ 15127d91652aSAndreas Gohr $link = $item['link']; 15137d91652aSAndreas Gohr } 15147d91652aSAndreas Gohr 15157d91652aSAndreas Gohr return '<span class="li"><a href="'.$link.'" class="toc">'. 1516b8595a66SAndreas Gohr hsc($item['title']).'</a></span>'; 1517b8595a66SAndreas Gohr} 1518b8595a66SAndreas Gohr 1519b8595a66SAndreas Gohr/** 1520b8595a66SAndreas Gohr * Helper function to build TOC items 1521b8595a66SAndreas Gohr * 1522b8595a66SAndreas Gohr * Returns an array ready to be added to a TOC array 1523b8595a66SAndreas Gohr * 1524b8595a66SAndreas Gohr * @param string $link - where to link (if $hash set to '#' it's a local anchor) 1525b8595a66SAndreas Gohr * @param string $text - what to display in the TOC 1526b8595a66SAndreas Gohr * @param int $level - nesting level 1527b8595a66SAndreas Gohr * @param string $hash - is prepended to the given $link, set blank if you want full links 1528b8595a66SAndreas Gohr */ 1529b8595a66SAndreas Gohrfunction html_mktocitem($link, $text, $level, $hash='#'){ 1530b8595a66SAndreas Gohr global $conf; 1531b8595a66SAndreas Gohr return array( 'link' => $hash.$link, 1532b8595a66SAndreas Gohr 'title' => $text, 1533b8595a66SAndreas Gohr 'type' => 'ul', 15342bb0d541Schris 'level' => $level); 1535b8595a66SAndreas Gohr} 1536b8595a66SAndreas Gohr 1537b8595a66SAndreas Gohr/** 1538fdb8d77bSTom N Harris * Output a Doku_Form object. 1539fdb8d77bSTom N Harris * Triggers an event with the form name: HTML_{$name}FORM_OUTPUT 1540fdb8d77bSTom N Harris * 1541fdb8d77bSTom N Harris * @author Tom N Harris <tnharris@whoopdedo.org> 1542fdb8d77bSTom N Harris */ 1543fdb8d77bSTom N Harrisfunction html_form($name, &$form) { 1544fdb8d77bSTom N Harris // Safety check in case the caller forgets. 1545fdb8d77bSTom N Harris $form->endFieldset(); 1546fdb8d77bSTom N Harris trigger_event('HTML_'.strtoupper($name).'FORM_OUTPUT', $form, 'html_form_output', false); 1547fdb8d77bSTom N Harris} 1548fdb8d77bSTom N Harris 1549fdb8d77bSTom N Harris/** 1550fdb8d77bSTom N Harris * Form print function. 1551fdb8d77bSTom N Harris * Just calls printForm() on the data object. 1552fdb8d77bSTom N Harris */ 1553fdb8d77bSTom N Harrisfunction html_form_output($data) { 1554fdb8d77bSTom N Harris $data->printForm(); 15558b06d178Schris} 1556340756e4Sandi 155707bf32b2SAndreas Gohr/** 155807bf32b2SAndreas Gohr * Embed a flash object in HTML 155907bf32b2SAndreas Gohr * 156007bf32b2SAndreas Gohr * This will create the needed HTML to embed a flash movie in a cross browser 156107bf32b2SAndreas Gohr * compatble way using valid XHTML 156207bf32b2SAndreas Gohr * 156307bf32b2SAndreas Gohr * The parameters $params, $flashvars and $atts need to be associative arrays. 156407bf32b2SAndreas Gohr * No escaping needs to be done for them. The alternative content *has* to be 156507bf32b2SAndreas Gohr * escaped because it is used as is. If no alternative content is given 156607bf32b2SAndreas Gohr * $lang['noflash'] is used. 156707bf32b2SAndreas Gohr * 156807bf32b2SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 156907bf32b2SAndreas Gohr * @link http://latrine.dgx.cz/how-to-correctly-insert-a-flash-into-xhtml 157007bf32b2SAndreas Gohr * 157107bf32b2SAndreas Gohr * @param string $swf - the SWF movie to embed 157207bf32b2SAndreas Gohr * @param int $width - width of the flash movie in pixels 157307bf32b2SAndreas Gohr * @param int $height - height of the flash movie in pixels 157407bf32b2SAndreas Gohr * @param array $params - additional parameters (<param>) 157507bf32b2SAndreas Gohr * @param array $flashvars - parameters to be passed in the flashvar parameter 157607bf32b2SAndreas Gohr * @param array $atts - additional attributes for the <object> tag 157707bf32b2SAndreas Gohr * @param string $alt - alternative content (is NOT automatically escaped!) 157807bf32b2SAndreas Gohr * @returns string - the XHTML markup 157907bf32b2SAndreas Gohr */ 158007bf32b2SAndreas Gohrfunction html_flashobject($swf,$width,$height,$params=null,$flashvars=null,$atts=null,$alt=''){ 158107bf32b2SAndreas Gohr global $lang; 158207bf32b2SAndreas Gohr 158307bf32b2SAndreas Gohr $out = ''; 158407bf32b2SAndreas Gohr 158507bf32b2SAndreas Gohr // prepare the object attributes 158607bf32b2SAndreas Gohr if(is_null($atts)) $atts = array(); 158707bf32b2SAndreas Gohr $atts['width'] = (int) $width; 1588d4c61e61SAndreas Gohr $atts['height'] = (int) $height; 158907bf32b2SAndreas Gohr if(!$atts['width']) $atts['width'] = 425; 159007bf32b2SAndreas Gohr if(!$atts['height']) $atts['height'] = 350; 159107bf32b2SAndreas Gohr 159207bf32b2SAndreas Gohr // add object attributes for standard compliant browsers 159307bf32b2SAndreas Gohr $std = $atts; 159407bf32b2SAndreas Gohr $std['type'] = 'application/x-shockwave-flash'; 159507bf32b2SAndreas Gohr $std['data'] = $swf; 159607bf32b2SAndreas Gohr 159707bf32b2SAndreas Gohr // add object attributes for IE 159807bf32b2SAndreas Gohr $ie = $atts; 159907bf32b2SAndreas Gohr $ie['classid'] = 'clsid:D27CDB6E-AE6D-11cf-96B8-444553540000'; 160007bf32b2SAndreas Gohr 160107bf32b2SAndreas Gohr // open object (with conditional comments) 160207bf32b2SAndreas Gohr $out .= '<!--[if !IE]> -->'.NL; 160307bf32b2SAndreas Gohr $out .= '<object '.buildAttributes($std).'>'.NL; 160407bf32b2SAndreas Gohr $out .= '<!-- <![endif]-->'.NL; 160507bf32b2SAndreas Gohr $out .= '<!--[if IE]>'.NL; 160607bf32b2SAndreas Gohr $out .= '<object '.buildAttributes($ie).'>'.NL; 160707bf32b2SAndreas Gohr $out .= ' <param name="movie" value="'.hsc($swf).'" />'.NL; 16089ae41cdcSAndreas Gohr $out .= '<!--><!-- -->'.NL; 160907bf32b2SAndreas Gohr 161007bf32b2SAndreas Gohr // print params 161107bf32b2SAndreas Gohr if(is_array($params)) foreach($params as $key => $val){ 161207bf32b2SAndreas Gohr $out .= ' <param name="'.hsc($key).'" value="'.hsc($val).'" />'.NL; 161307bf32b2SAndreas Gohr } 161407bf32b2SAndreas Gohr 161507bf32b2SAndreas Gohr // add flashvars 161607bf32b2SAndreas Gohr if(is_array($flashvars)){ 1617d4c61e61SAndreas Gohr $out .= ' <param name="FlashVars" value="'.buildURLparams($flashvars).'" />'.NL; 161807bf32b2SAndreas Gohr } 161907bf32b2SAndreas Gohr 162007bf32b2SAndreas Gohr // alternative content 162107bf32b2SAndreas Gohr if($alt){ 162207bf32b2SAndreas Gohr $out .= $alt.NL; 162307bf32b2SAndreas Gohr }else{ 162407bf32b2SAndreas Gohr $out .= $lang['noflash'].NL; 162507bf32b2SAndreas Gohr } 162607bf32b2SAndreas Gohr 162707bf32b2SAndreas Gohr // finish 162807bf32b2SAndreas Gohr $out .= '</object>'.NL; 162907bf32b2SAndreas Gohr $out .= '<!-- <![endif]-->'.NL; 163007bf32b2SAndreas Gohr 163107bf32b2SAndreas Gohr return $out; 163207bf32b2SAndreas Gohr} 163307bf32b2SAndreas Gohr 1634