Home
last modified time | relevance | path

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

1234

/dokuwiki/_test/tests/inc/
H A Dhtml_hilight.test.php6 $html = 'Foo bar Foo';
9 html_hilight($html,'bar')
14 $html = 'Foo bar Foo php Foo';
17 html_hilight($html,array('bar','php'))
22 $html = 'Foo <b>bar</b> <i>Foo</i> php Foo';
25 html_hilight($html,array('bar','php'))
30 $html = 'Foo <font>font</font> Bar';
33 html_hilight($html,'font')
38 $html = 'foo bar foobar barfoo foobarfoo foo';
41 html_hilight($html,'bar*')
[all …]
/dokuwiki/lib/plugins/extension/
H A DGuiAdmin.php11 $html = '<div id="extension__manager">';
13 $html .= $this->tabNavigation();
17 $html .= $this->tabSearch();
20 $html .= $this->tabTemplates();
23 $html .= $this->tabInstall();
27 $html .= $this->tabPlugins();
30 $html .= '</div>';
31 return $html;
40 $html = '<ul class="tabs">';
48 $html .= '<li class="' . $tab . $class . '"><a href="' . $url . '">' .
[all …]
H A DGuiExtension.php25 $html = "<section class=\"$classes\" data-ext=\"{$this->extension->getId()}\">";
27 $html .= '<div class="screenshot">';
28 $html .= $this->thumbnail();
29 $html .= '<span class="id" title="' . hsc($this->extension->getBase()) . '">' .
31 $html .= $this->popularity();
32 $html .= '</div>';
34 $html .= '<div class="main">';
35 $html .= $this->main();
36 $html .= '</div>';
38 $html .= '<div class="notices">';
[all …]
/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 .= hsc($item->getLabel());
[all …]
H A DAbstractMenu.php87 $html = '';
95 $html .= "<li$class>";
96 $html .= $item->asHtmlLink(false, $svg);
97 $html .= '</li>';
99 return $html;
/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 = html_hilight($html, $HIGH);
71 echo $html;
H A DRevisions.php97 $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;
H A DIndex.php81 $html = '';
87 …$html .= '<a href="' . $link . '" title="' . $item['id'] . '" class="idx_dir"' . $nofollow . '><st…
88 $html .= $base;
89 $html .= '</strong></a>';
92 … $html .= html_wikilink(':' . $item['id'], useHeading('navigation') ? null : noNS($item['id']));
94 return $html;
H A DRecent.php85 $html = implode(' ', [
95 $form->addHTML($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 .= '</div>';
204 $html .= '</div>';
[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 .= '<h2>' . $lang['search_fullresults'] . ':</h2>';
[all …]
/dokuwiki/inc/Feed/
H A DFeedItemProcessor.php146 * @param string $html
149 protected function cleanHTML($html) argument
154 $html = preg_replace('/(<!-- TOC START -->).*(<!-- TOC END -->)/s', '', $html);
157 $html = preg_replace('/(<img .*?class="medialeft")/s', '\\1 align="left"', $html);
158 $html = preg_replace('/(<img .*?class="mediaright")/s', '\\1 align="right"', $html);
163 $html = preg_replace(
166 $html
170 return $html;
/dokuwiki/_test/tests/Form/
H A DInputElementTest.php14 $html = $form->toHTML();
15 $pq = (new Document())->html($html);
37 $html = $form->toHTML();
38 $pq = (new Document())->html($html);
52 $html = $form->toHTML();
53 $pq = (new Document())->html($html);
65 $html = $form->toHTML();
66 $pq = (new Document())->html($html);
H A DDropdownElementTest.php34 $html = $form->toHTML();
35 $pq = (new Document())->html($html);
74 $html = $form->toHTML();
75 $pq = (new Document())->html($html);;
124 $html = $form->toHTML();
125 $pq = (new Document())->html($html);
146 $html = $form->toHTML();
148 $pq = (new Document())->html($html);
177 $html = $form->toHTML();
178 $pq = (new Document())->html($html);
[all …]
H A DButtonElementTest.php16 $html = $form->toHTML();
17 $pq = (new Document())->html($html);
34 $html = $form->toHTML();
35 $pq = (new Document())->html($html);
H A DCheckableElementTest.php17 $html = $form->toHTML();
18 $pq = (new Document())->html($html);
46 $html = $form->toHTML();
47 $pq = (new Document())->html($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 .= '</form>';
[all …]
/dokuwiki/inc/
H A Dhtml.php163 $html = '<div class="secedit editbutton_' . $data['target'] . ' editbutton_' . $secid . '">';
164 $html .= html_btn('secedit', $ID, '', $params, 'post', $name);
165 $html .= '</div>';
166 return $html;
223 …$html = '<form class="button btn_' . $name . '" method="' . $method . '" action="' . $script . '">…
227 $html .= '<input type="hidden" name="' . $key . '" value="' . hsc($val) . '" />';
233 $html .= '<button type="submit" ';
236 $html .= 'accesskey="' . $akey . '" ';
238 $html .= 'title="' . $tip . '">';
240 $html .= '<span>' . hsc($label) . '</span>' . inlineSVG($svg);
[all …]
H A DMailer.class.php24 protected $html = ''; variable in Mailer
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) argument
209 if ($html === null) {
210 $html = $text;
211 $html = hsc($html);
212 $html = preg_replace('/^----+$/m', '<hr >', $html);
213 $html = nl2br($html);
217 $html = preg_replace('/\n-- <br \/>.*$/s', '', $html); //strip signature
218 $html = str_replace('@EMAILSIGNATURE@', '', $html); //strip @EMAILSIGNATURE@
[all …]
/dokuwiki/_test/tests/general/
H A Dgeneral_html.test.php37 * @param string $html
41 protected function validate($html) argument
/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);
/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;

1234