Home
last modified time | relevance | path

Searched refs:html (Results 1 – 25 of 65) sorted by relevance

123

/dokuwiki/inc/Menu/
H A DMobileMenu.php64 $html = '<form action="' . script() . '" method="get" accept-charset="utf-8">';
65 $html .= '<div class="no">';
66 $html .= '<input type="hidden" name="id" value="' . $ID . '" />';
67 if ($REV) $html .= '<input type="hidden" name="rev" value="' . $REV . '" />';
69 $html .= '<input type="hidden" name="sectok" value="' . getSecurityToken() . '" />';
72 $html .= '<select name="do" class="edit quickselect" title="' . $lang['tools'] . '">';
73 $html .= '<option value="">' . $empty . '</option>';
77 $html .= '<optgroup label="' . $lang[$tools . '_tools'] . '">';
80 $html .= '<option value="' . $params['do'] . '">';
81 $html
[all...]
H A DAbstractMenu.php82 $html = '';
90 $html .= "<li$class>";
91 $html .= $item->asHtmlLink(false, $svg);
92 $html .= '</li>';
94 return $html;
/dokuwiki/lib/plugins/extension/helper/
H A Dlist.php8 * @license GPL 2 http://www.gnu.org/licenses/gpl-2.0.html
108 * @param bool $returnonly whether to return html or print
130 * @param string $html The content argument
132 private function populateColumn($class, $html)
134 $this->form .= '<div class="' . $class . ' col">' . $html . '</div>' . DOKU_LF;
170 $html = ' <a ' . buildAttributes($param, true) . '>' .
172 return $html;
207 $html = '<a href="' . $url . '" class="author" title="' . $this->getLang('author_hint') . '" >' .
212 $html = '<span class="author">' . hsc($extension->getAuthor()) . '</span>';
214 $html
[all...]
/dokuwiki/inc/Ui/
H A DPageView.php56 $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;
67 $html = p_wiki_xhtml($ID, $REV, true, $DATE_AT);
68 $html = html_secedit($html, $secedit);
69 if ($INFO['prependTOC']) $html = tpl_toc(true) . $html;
70 $html
[all...]
H A DRevisions.php91 * @return string html
97 $html = '<div class="pagenav">';
101 $html .= '<div class="pagenav-prev">';
102 $html .= html_btn('newer', $this->id, "p", $callback($first));
103 $html .= '</div>';
106 $html .= '<div class="pagenav-next">';
107 $html .= html_btn('older', $this->id, "n", $callback($last));
108 $html .= '</div>';
110 $html .= '</div>';
111 return $html;
[all...]
H A DIndex.php41 * Build html of sitemap, unordered list of pages under the namespace
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;
105 * @return string html
H A DRecent.php85 $html = implode(' ', [
95 $form->addHTML($html);
179 * @return string html
186 $html = '<div class="pagenav">';
189 $html .= '<div class="pagenav-prev">';
190 $html .= '<button type="submit" name="first[' . $first . ']" accesskey="n"'
194 $html .= '</div>';
197 $html .= '<div class="pagenav-next">';
198 $html .= '<button type="submit" name="first[' . $last . ']" accesskey="p"'
202 $html
[all...]
H A DSearch.php507 $html = '<div class="search_quickresult">';
508 $html .= '<h2>' . $lang['quickhits'] . ':</h2>';
509 $html .= '<ul class="search_quickhits">';
521 $html .= '<li>' . implode('', $eventData['listItemContent']) . '</li>';
523 $html .= '</ul> ';
525 $html .= '<div class="clearer"></div>';
526 $html .= '</div>';
528 return $html;
547 $html = '<div class="search_fulltextresult">';
548 $html
[all...]
H A DMediaRevisions.php89 $html = implode(' ', [
100 $form->addHTML($html);
H A DPageRevisions.php91 $html = implode(' ', [
100 $form->addHTML($html);
/dokuwiki/inc/Form/
H A DHTMLElement.php15 * @param string $html
17 public function __construct($html) argument
19 parent::__construct('html', $html);
H A DOptGroup.php98 $html = '<optgroup ' . buildAttributes($this->attrs()) . '>';
99 $html .= $this->renderOptions();
100 $html .= '</optgroup>';
101 return $html;
109 $html = '';
116 $html .= '<option' . $selected . ' value="' . hsc($key) . '" ' . $attrs . '>';
117 $html .= hsc($val['label']);
118 $html .= '</option>';
120 return $html;
H A DFieldsetOpenElement.php34 $html = '<fieldset ' . buildAttributes($this->attrs()) . '>';
36 if ($legend) $html .= DOKU_LF . '<legend>' . hsc($legend) . '</legend>';
37 return $html;
H A DDropdownElement.php189 $html = '<select ' . buildAttributes($attr) . '>';
190 $html = array_reduce(
192 static fn($html, OptGroup $optGroup) => $html . $optGroup->toHTML(),
193 $html
195 $html .= '</select>';
197 return $html;
H A DForm.php307 * @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
[all...]
/dokuwiki/inc/
H A Dhtml.php6 * @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
143 * @return string html
163 $html = '<div class="secedit editbutton_' . $data['target'] . ' editbutton_' . $secid . '">';
164 $html .= html_btn('secedit', $ID, '', $params, 'post', $name);
165 $html .= '</div>';
166 return $html;
174 * @return string html
223 $html = '<form class="button btn_' . $name . '" method="' . $method . '" action="' . $script . '"><div class="no">';
227 $html .= '<input type="hidden" name="' . $key . '" value="' . hsc($val) . '" />';
233 $html
277 html_hilight($html, $phrases) global() argument
[all...]
H A DMailer.class.php24 protected $html = '';
33 protected $replacements = ['text' => [], 'html' => []];
199 * @param string $html the HTML body, leave null to create it from $text
202 public function setBody($text, $textrep = null, $htmlrep = null, $html = null, $wrap = true)
209 if ($html === null) {
210 $html = $text;
211 $html = hsc($html);
212 $html = preg_replace('/^----+$/m', '<hr >', $html);
21 protected $html = ''; global() variable in Mailer
192 setBody($text, $textrep = null, $htmlrep = null, $html = null, $wrap = true) global() argument
256 setHTML($html) global() argument
[all...]
/dokuwiki/lib/plugins/config/core/Setting/
H A DSettingDisableactions.php11 public function html(\admin_plugin_config $plugin, $echo = false) function in dokuwiki\\plugin\\config\\core\\Setting\\SettingDisableactions
22 return parent::html($plugin, $echo);
H A DSettingRenderer.php38 public function html(\admin_plugin_config $plugin, $echo = false)
58 return parent::html($plugin, $echo);
35 public function html(\admin_plugin_config $plugin, $echo = false) { global() function in dokuwiki\\plugin\\config\\core\\Setting\\SettingRenderer
H A DSettingUndefined.php22 public function html(\admin_plugin_config $plugin, $echo = false)
21 public function html(\admin_plugin_config $plugin, $echo = false) { global() function in dokuwiki\\plugin\\config\\core\\Setting\\SettingUndefined
H A DSettingString.php11 public function html(\admin_plugin_config $plugin, $echo = false)
10 public function html(\admin_plugin_config $plugin, $echo = false) { global() function in dokuwiki\\plugin\\config\\core\\Setting\\SettingString
/dokuwiki/inc/Menu/Item/
H A DAbstractItem.php160 $html = "<a $attr>";
162 $html .= '<span>' . hsc($this->getLabel()) . '</span>';
163 $html .= inlineSVG($this->getSvg());
165 $html .= hsc($this->getLabel());
167 $html .= "</a>";
169 return $html;
/dokuwiki/lib/scripts/
H A Dpage.js123 var content = $content.html().trim();
125 dw_page.insituPopup(this, 'insitu__fn').html(content)
158 $clicky.html('<span>+</span>');
162 $clicky.html('<span>−</span>');
/dokuwiki/lib/plugins/styling/
H A Dpopup.php7 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/inc/Extension/
H A DAdminPlugin.php10 * @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
71 * Output html of the admin page
73 abstract public function html();
74 abstract public function html(); global() function in dokuwiki\\Extension\\AdminPlugin

123