/dokuwiki/lib/plugins/extension/helper/ |
H A D | list.php | 5 * @license GPL 2 http://www.gnu.org/licenses/gpl-2.0.html 106 * @param bool $returnonly whether to return html or print 128 * @param string $html The content 130 private function populateColumn($class, $html) 132 $this->form .= '<div class="'.$class.' col">'.$html.'</div>'.DOKU_LF; 168 $html = ' <a '. buildAttributes($param, true).'>'. variable 170 return $html; 205 $html = '<a href="'.$url.'" class="author" title="'.$this->getLang('author_hint').'" >'. variable 210 $html = '<span class="author">'.hsc($extension->getAuthor()).'</span>'; variable 212 $html variable 214 $html = '<em class="author">'.$this->getLang('unknown_author').'</em>'.DOKU_LF; global() variable 246 $html = '<div class="screenshot" >'.$img.'<span></span></div>'.DOKU_LF; global() variable 259 $html = '<div>'; global() variable 315 $html = '<div class="linkbar">'; global() variable 364 $html = ''; global() variable 429 $html = '<a href="'.hsc($url).'" class="urlextern">'.hsc($name).'</a>'; global() variable 442 $html = '<dl class="details">'; global() variable 509 $html = rtrim($html, ', '); global() variable 544 $html = ''; global() variable 562 $html = ''; global() variable 640 $html = '<button class="'.$classes.'" name="'.$name.'" type="submit" '.$title.'>'. global() variable [all...] |
/dokuwiki/inc/Menu/ |
H A D | MobileMenu.php | 61 $html = '<form action="' . script() . '" method="get" accept-charset="utf-8">'; variable 62 $html .= '<div class="no">'; 63 $html .= '<input type="hidden" name="id" value="' . $ID . '" />'; 64 if($REV) $html .= '<input type="hidden" name="rev" value="' . $REV . '" />'; 66 $html .= '<input type="hidden" name="sectok" value="' . getSecurityToken() . '" />'; 69 $html .= '<select name="do" class="edit quickselect" title="' . $lang['tools'] . '">'; 70 $html .= '<option value="">' . $empty . '</option>'; 74 $html .= '<optgroup label="' . $lang[$tools . '_tools'] . '">'; 77 $html .= '<option value="' . $params['do'] . '">'; 78 $html [all...] |
H A D | AbstractMenu.php | 81 $html = ''; variable 89 $html .= "<li$class>"; 90 $html .= $item->asHtmlLink(false, $svg); 91 $html .= '</li>'; 93 return $html;
|
/dokuwiki/inc/Ui/ |
H A D | PageView.php | 56 $html = html_secedit(p_render('xhtml', p_get_instructions($this->text), $info), $secedit); variable 57 if ($INFO['prependTOC']) $html = tpl_toc(true) . $html; 58 echo $html; 68 $html = p_wiki_xhtml($ID, $REV, true, $DATE_AT); variable 69 $html = html_secedit($html, $secedit); variable 70 if ($INFO['prependTOC']) $html = tpl_toc(true) . $html; 71 $html variable [all...] |
H A D | Recent.php | 79 $html = implode(' ', [ variable 89 $form->addHTML($html); 148 * @return array html 155 $html = '<div class="pagenav">'; variable 158 $html.= '<div class="pagenav-prev">'; 159 $html.= '<button type="submit" name="first['.$first.']" accesskey="n"' 163 $html.= '</div>'; 166 $html.= '<div class="pagenav-next">'; 167 $html.= '<button type="submit" name="first['.$last.']" accesskey="p"' 171 $html 220 $html = media_printicon($id); global() variable 222 $html = '<img class="icon" src="'.DOKU_BASE.'lib/images/fileicons/file.png" alt="'.$id.'" />'; global() variable 242 $html = '<span class="user">'; global() variable 260 $html = '<a href="'.$href.'" class="'.$class.'">'.$id.'</a>'; global() variable 262 $html = html_wikilink(':'.$id, (useHeading('navigation') ? null : $id)); global() variable 288 $html = '<a href="'.$href.'" class="diff_link">' global() variable 293 $html = '<img src="'.DOKU_BASE.'lib/images/blank.gif" width="15" height="11" alt="" />'; global() variable 308 $html = '<a href="'.$href.'" class="revisions_link">' global() variable [all...] |
H A D | Revisions.php | 94 $html = implode(' ', [ variable 105 $form->addHTML($html); 163 $html = implode(' ', [ variable 172 $form->addHTML($html); 285 * @return array html 291 $html = '<div class="pagenav">'; variable 295 $html.= '<div class="pagenav-prev">'; 297 $html.= html_btn('newer', $id, "p", media_managerURL(['first' => $first], '&', false, true)); 299 $html.= html_btn('newer', $id, "p" ,['do' => 'revisions', 'first' => $first]); 301 $html 360 $html = '<span class="user">'; global() variable 384 $html = '<a href="'.$href.'" class="wikilink1">'.$id.'</a>'; global() variable 387 $html = '<a href="'.$href.'" class="wikilink1">'.$id.'</a>'; global() variable 389 $html = $id; global() variable 398 $html = '<a href="'.$href.'" class="wikilink1">'.$display_name.'</a>'; global() variable 400 $html = $display_name; global() variable 416 $html = '<img src="'.DOKU_BASE.'lib/images/blank.gif" width="15" height="11" alt="" />'; global() variable 419 $html = '<a href="'.$href.'" class="diff_link">' global() variable 428 $html = '<img src="'.DOKU_BASE.'lib/images/blank.gif" width="15" height="11" alt="" />'; global() variable 431 $html = '<a href="'.$href.'" class="diff_link">' global() variable [all...] |
H A D | Index.php | 44 * Build html of sitemap, unordered list of pages under the namespace 62 $html = '<div id="index__tree" class="index__tree">' variable 65 return $html; 85 $html = ''; variable 91 $html .= '<a href="'. $link .'" title="'. $item['id'] .'" class="idx_dir"' . $nofollow .'><strong>'; 92 $html .= $base; 93 $html .= '</strong></a>'; 96 $html .= html_wikilink(':'.$item['id'], useHeading('navigation') ? null : noNS($item['id'])); 98 return $html; 111 * @return string html [all...] |
H A D | Search.php | 528 $html = '<div class="search_quickresult">'; variable 529 $html .= '<h2>' . $lang['quickhits'] . ':</h2>'; 530 $html .= '<ul class="search_quickhits">'; 542 $html .= '<li>' . implode('', $eventData['listItemContent']) . '</li>'; 544 $html .= '</ul> '; 546 $html .= '<div class="clearer"></div>'; 547 $html .= '</div>'; 549 return $html; 568 $html = '<div class="search_fulltextresult">'; variable 569 $html [all...] |
/dokuwiki/inc/Form/ |
H A D | OptGroup.php | 86 $html = '<optgroup '. buildAttributes($this->attrs()) . '>'; variable 87 $html .= $this->renderOptions(); 88 $html .= '</optgroup>'; 89 return $html; 98 $html = ''; variable 105 $html .= '<option' . $selected . ' value="' . hsc($key) . '" '.$attrs.'>'; 106 $html .= hsc($val['label']); 107 $html .= '</option>'; 109 return $html;
|
H A D | HTMLElement.php | 15 * @param string $html 17 public function __construct($html) 19 parent::__construct('html', $html);
|
H A D | FieldsetOpenElement.php | 35 $html = '<fieldset '.buildAttributes($this->attrs()).'>'; variable 37 if ($legend) $html .= DOKU_LF.'<legend>'.hsc($legend).'</legend>'; 38 return $html;
|
H A D | DropdownElement.php | 195 $html = '<select ' . buildAttributes($this->attrs()) . '>'; variable 196 $html = array_reduce( variable 198 function ($html, OptGroup $optGroup) { 199 return $html . $optGroup->toHTML(); 201 $html 203 $html .= '</select>'; 205 return $html;
|
H A D | Form.php | 307 * @param string $html 311 public function addButtonHTML($name, $html, $pos = -1) 313 return $this->addElement(new ButtonElement($name, $html), $pos); 356 * @param string $html 360 public function addHTML($html, $pos = -1) 362 return $this->addElement(new HTMLElement($html), $pos); 485 $html = '<form '. buildAttributes($this->attrs()) .'>'; variable 488 $html .= '<input type="hidden" name="'. $name .'" value="'. formText($value) .'" />'; 492 $html .= $element->toHTML(); 495 $html [all...] |
/dokuwiki/inc/ |
H A D | html.php | 5 * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) 55 * @return string html 113 * @return string html 132 $html = '<div class="secedit editbutton_'.$data['target'] .' editbutton_'.$secid .'">'; variable 133 $html.= html_btn('secedit', $ID, '', $params, 'post', $name); 134 $html.= '</div>'; 135 return $html; 143 * @return string html 148 $html = '<a class="nolink" href="#dokuwiki__top">' variable 152 return $html; 191 $html = '<form class="button btn_'.$name.'" method="'.$method.'" action="'.$script.'"><div class="no">'; global() variable 271 $html = @preg_replace_callback("/((<[^>]*)|$regex)/ui", function ($match) { global() variable 416 $html = ''; global() variable 467 $html = "\\n".'<ul class="'.$class.'">'."\\n".$html.'</ul>'."\\n"; global() variable [all...] |
H A D | Mailer.class.php | 26 protected $html = ''; variable 35 protected $replacements = array('text'=> array(), 'html' => array()); 192 * @param string $html the HTML body, leave null to create it from $text 195 public function setBody($text, $textrep = null, $htmlrep = null, $html = null, $wrap = true) { 201 if($html === null) { 202 $html = $text; variable 203 $html = hsc($html); variable 204 $html = preg_replace('/^----+$/m', '<hr >', $html); variable 205 $html = nl2br($html); global() variable 209 $html = preg_replace('/\\n-- <br \\/>.*$/s', '', $html); //strip signature global() variable 210 $html = str_replace('@EMAILSIGNATURE@', '', $html); //strip @EMAILSIGNATURE@ global() variable 211 $html = str_replace('@HTMLBODY@', $html, $wrapper); global() variable 229 $html = preg_replace_callback( global() variable 243 $html = str_replace('@'.strtoupper($key).'@', $substitution, $html); global() variable 260 $this->html = $html; global() variable 451 $this->html = str_replace('%%'.$media['embed'].'%%', 'cid:'.$cid, $this->html); global() variable 482 $this->html = ''; global() variable [all...] |
/dokuwiki/inc/Menu/Item/ |
H A D | AbstractItem.php | 157 $html = "<a $attr>"; variable 159 $html .= '<span>' . hsc($this->getLabel()) . '</span>'; 160 $html .= inlineSVG($this->getSvg()); 162 $html .= hsc($this->getLabel()); 164 $html .= "</a>"; 166 return $html;
|
/dokuwiki/lib/plugins/config/core/Setting/ |
H A D | SettingDisableactions.php | 11 public function html(\admin_plugin_config $plugin, $echo = false) { function 21 return parent::html($plugin, $echo);
|
H A D | SettingRenderer.php | 35 public function html(\admin_plugin_config $plugin, $echo = false) { function 54 return parent::html($plugin, $echo);
|
H A D | SettingPassword.php | 28 public function html(\admin_plugin_config $plugin, $echo = false) { function
|
H A D | SettingUndefined.php | 21 public function html(\admin_plugin_config $plugin, $echo = false) { function
|
/dokuwiki/lib/scripts/ |
H A D | page.js | 113 var content = $content.html().trim(); 115 dw_page.insituPopup(this, 'insitu__fn').html(content) 148 $clicky.html('<span>+</span>'); 152 $clicky.html('<span>−</span>');
|
/dokuwiki/lib/plugins/styling/ |
H A D | popup.php | 7 header('Content-Type: text/html; charset=utf-8'); 19 ?><!DOCTYPE html> 20 <html lang="<?php echo $conf['lang'] ?>" dir="<?php echo $lang['direction'] ?>"> 29 <?php $plugin->html() ?> 31 </html>
|
/dokuwiki/vendor/simplepie/simplepie/library/SimplePie/ |
H A D | Sanitize.php | 61 var $strip_htmltags = array('base', 'blink', 'body', 'doctype', 'embed', 'font', 'form', 'frame', 'frameset', 'html', 'iframe', 'input', 'marquee', 'meta', 'noscript', 'object', 'param', 'script', 'style'); 139 public function strip_htmltags($tags = array('base', 'blink', 'body', 'doctype', 'embed', 'font', 'form', 'frame', 'frameset', 'html', 'iframe', 'input', 'marquee', 'meta', 'noscript', 'object', 'param', 'script', 'style')) 403 protected function preprocess($html, $type) 406 $html = preg_replace('%</?(?:html|body)[^>]*?'.'>%is', '', $html); variable 410 // Note: No protection if $html contains a stray </div>! 411 $html = '<div>' . $html . '</div>'; variable 412 $ret .= '<!DOCTYPE html>'; [all...] |
/dokuwiki/lib/plugins/config/ |
H A D | admin.php | 5 * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) 69 * output appropriate html 71 public function html() { function 122 list($label, $input) = $setting->html($this, $this->hasErrors); 171 list($label, $input) = $setting->html($this);
|
/dokuwiki/inc/Extension/ |
H A D | AdminPlugin.php | 10 * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) 72 * Output html of the admin page 74 abstract public function html();
|