/dokuwiki/inc/Menu/ |
H A D | MobileMenu.php | 62 $html .= '<div class="no">'; 70 $html .= '<option value="">' . $empty . '</option>'; 77 $html .= '<option value="' . $params['do'] . '">'; 78 $html .= hsc($item->getLabel()); 79 $html .= '</option>'; 81 $html .= '</optgroup>'; 85 $html .= '</select>'; 86 $html .= '<button type="submit">' . $button . '</button>'; 87 $html .= '</div>'; 88 $html .= '</form>'; [all …]
|
H A D | AbstractMenu.php | 81 $html = ''; 89 $html .= "<li$class>"; 90 $html .= $item->asHtmlLink(false, $svg); 91 $html .= '</li>'; 93 return $html;
|
/dokuwiki/lib/plugins/extension/helper/ |
H A D | list.php | 170 return $html; 212 $html = '<bdi>'.$html.'</bdi>'; 216 return $html; 247 return $html; 303 return $html; 353 return $html; 364 $html = ''; 430 return $html; 509 $html = rtrim($html, ', '); 533 return $html; [all …]
|
/dokuwiki/inc/Ui/ |
H A D | PageView.php | 56 … $html = html_secedit(p_render('xhtml', p_get_instructions($this->text), $info), $secedit); 57 if ($INFO['prependTOC']) $html = tpl_toc(true) . $html; 58 echo $html; 68 $html = p_wiki_xhtml($ID, $REV, true, $DATE_AT); 69 $html = html_secedit($html, $secedit); 70 if ($INFO['prependTOC']) $html = tpl_toc(true) . $html; 71 $html = html_hilight($html, $HIGH); 72 echo $html;
|
H A D | Revisions.php | 103 $html = '<div class="pagenav">'; 107 $html.= '<div class="pagenav-prev">'; 108 $html.= html_btn('newer', $this->id, "p", $callback($first)); 109 $html.= '</div>'; 112 $html.= '<div class="pagenav-next">'; 113 $html.= html_btn('older', $this->id, "n", $callback($last)); 114 $html.= '</div>'; 116 $html.= '</div>'; 117 return $html;
|
H A D | Index.php | 81 $html = ''; 87 …$html .= '<a href="'. $link .'" title="'. $item['id'] .'" class="idx_dir"' . $nofollow .'><strong>… 88 $html .= $base; 89 $html .= '</strong></a>'; 92 … $html .= html_wikilink(':'.$item['id'], useHeading('navigation') ? null : noNS($item['id'])); 94 return $html;
|
H A D | Recent.php | 85 $html = implode(' ', [ 95 $form->addHTML($html); 187 $html = '<div class="pagenav">'; 190 $html.= '<div class="pagenav-prev">'; 191 $html.= '<button type="submit" name="first['.$first.']" accesskey="n"' 195 $html.= '</div>'; 198 $html.= '<div class="pagenav-next">'; 199 $html.= '<button type="submit" name="first['.$last.']" accesskey="p"' 203 $html.= '</div>'; 205 $html.= '</div>'; [all …]
|
H A D | Search.php | 525 $html = '<div class="search_quickresult">'; 527 $html .= '<ul class="search_quickhits">'; 541 $html .= '</ul> '; 543 $html .= '<div class="clearer"></div>'; 544 $html .= '</div>'; 546 return $html; 568 $html .= '<dl class="search_results">'; 612 $html .= '</div>'; 614 $html .= '</dl>'; 616 $html .= '</div>'; [all …]
|
H A D | PageRevisions.php | 91 $html = implode(' ', [ 100 $form->addHTML($html);
|
/dokuwiki/inc/Form/ |
H A D | HTMLElement.php | 15 * @param string $html 17 public function __construct($html) argument 19 parent::__construct('html', $html);
|
H A D | OptGroup.php | 94 $html = '<optgroup ' . buildAttributes($this->attrs()) . '>'; 95 $html .= $this->renderOptions(); 96 $html .= '</optgroup>'; 97 return $html; 105 $html = ''; 112 $html .= '<option' . $selected . ' value="' . hsc($key) . '" ' . $attrs . '>'; 113 $html .= hsc($val['label']); 114 $html .= '</option>'; 116 return $html;
|
H A D | FieldsetOpenElement.php | 35 $html = '<fieldset '.buildAttributes($this->attrs()).'>'; 37 if ($legend) $html .= DOKU_LF.'<legend>'.hsc($legend).'</legend>'; 38 return $html;
|
H A D | DropdownElement.php | 189 $html = '<select ' . buildAttributes($attr) . '>'; 190 $html = array_reduce( 192 function ($html, OptGroup $optGroup) { 193 return $html . $optGroup->toHTML(); 195 $html 197 $html .= '</select>'; 199 return $html;
|
H A D | Form.php | 307 * @param string $html 311 public function addButtonHTML($name, $html, $pos = -1) argument 313 return $this->addElement(new ButtonElement($name, $html), $pos); 356 * @param string $html 360 public function addHTML($html, $pos = -1) argument 362 return $this->addElement(new HTMLElement($html), $pos); 485 $html = '<form '. buildAttributes($this->attrs()) .'>'; 488 $html .= '<input type="hidden" name="'. $name .'" value="'. formText($value) .'" />'; 492 $html .= $element->toHTML(); 495 $html .= '</form>'; [all …]
|
/dokuwiki/inc/ |
H A D | html.php | 151 $html.= '</div>'; 152 return $html; 228 $html .= '</button>'; 231 return $html; 273 * @param string $html 293 }, $html); 436 $html = ''; 475 $html .= '</div>'; 479 $html .= '</li>'."\n"; 487 $html = "\n".'<ul class="'.$class.'">'."\n".$html.'</ul>'."\n"; [all …]
|
H A D | Mailer.class.php | 26 protected $html = ''; variable in Mailer 203 if($html === null) { 204 $html = $text; 205 $html = hsc($html); 206 $html = preg_replace('/^----+$/m', '<hr >', $html); 207 $html = nl2br($html); 211 $html = preg_replace('/\n-- <br \/>.*$/s', '', $html); //strip signature 213 $html = str_replace('@HTMLBODY@', $html, $wrapper); 245 $html = str_replace('@'.strtoupper($key).'@', $substitution, $html); 259 * @param string $html [all …]
|
/dokuwiki/lib/plugins/config/core/Setting/ |
H A D | SettingDisableactions.php | 11 public function html(\admin_plugin_config $plugin, $echo = false) { function in dokuwiki\\plugin\\config\\core\\Setting\\SettingDisableactions 21 return parent::html($plugin, $echo);
|
H A D | SettingRenderer.php | 35 public function html(\admin_plugin_config $plugin, $echo = false) { function in dokuwiki\\plugin\\config\\core\\Setting\\SettingRenderer 54 return parent::html($plugin, $echo);
|
H A D | SettingUndefined.php | 21 public function html(\admin_plugin_config $plugin, $echo = false) { function in dokuwiki\\plugin\\config\\core\\Setting\\SettingUndefined
|
H A D | SettingString.php | 10 public function html(\admin_plugin_config $plugin, $echo = false) { function in dokuwiki\\plugin\\config\\core\\Setting\\SettingString
|
H A D | SettingPassword.php | 28 public function html(\admin_plugin_config $plugin, $echo = false) { function in dokuwiki\\plugin\\config\\core\\Setting\\SettingPassword
|
/dokuwiki/inc/Menu/Item/ |
H A D | AbstractItem.php | 157 $html = "<a $attr>"; 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/styling/ |
H A D | popup.php | 29 <?php $plugin->html() ?>
|
/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/inc/Extension/ |
H A D | AdminPlugin.php | 74 abstract public function html(); function in dokuwiki\\Extension\\AdminPlugin
|