Searched refs:html (Results 1 – 25 of 92) sorted by relevance
1234
6 $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 …]
11 $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 …]
25 $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 …]
64 $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 …]
87 $html = '';95 $html .= "<li$class>";96 $html .= $item->asHtmlLink(false, $svg);97 $html .= '</li>';99 return $html;
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;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;
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;
81 $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;
85 $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 …]
507 $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 …]
146 * @param string $html149 protected function cleanHTML($html) argument154 $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 $html170 return $html;
14 $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);
34 $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 …]
16 $html = $form->toHTML();17 $pq = (new Document())->html($html);34 $html = $form->toHTML();35 $pq = (new Document())->html($html);
17 $html = $form->toHTML();18 $pq = (new Document())->html($html);46 $html = $form->toHTML();47 $pq = (new Document())->html($html);
15 * @param string $html17 public function __construct($html) argument19 parent::__construct('html', $html);
98 $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;
34 $html = '<fieldset ' . buildAttributes($this->attrs()) . '>';36 if ($legend) $html .= DOKU_LF . '<legend>' . hsc($legend) . '</legend>';37 return $html;
189 $html = '<select ' . buildAttributes($attr) . '>';190 $html = array_reduce(192 static fn($html, OptGroup $optGroup) => $html . $optGroup->toHTML(),193 $html195 $html .= '</select>';197 return $html;
307 * @param string $html311 public function addButtonHTML($name, $html, $pos = -1) argument313 return $this->addElement(new ButtonElement($name, $html), $pos);356 * @param string $html360 public function addHTML($html, $pos = -1) argument362 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 …]
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;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 …]
24 protected $html = ''; variable in Mailer199 * @param string $html the HTML body, leave null to create it from $text202 public function setBody($text, $textrep = null, $htmlrep = null, $html = null, $wrap = true) argument209 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 signature218 $html = str_replace('@EMAILSIGNATURE@', '', $html); //strip @EMAILSIGNATURE@[all …]
37 * @param string $html41 protected function validate($html) argument
11 public function html(\admin_plugin_config $plugin, $echo = false) function in dokuwiki\\plugin\\config\\core\\Setting\\SettingDisableactions22 return parent::html($plugin, $echo);
160 $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;