Lines Matching refs:html

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">';
39 $html .= $this->notices();
40 $html .= '</div>';
42 $html .= '<div class="details">';
43 $html .= $this->details();
44 $html .= '</div>';
46 $html .= '<div class="actions">';
49 $html .= ' <div class="available">' . $this->getLang('available_version') . ' ' .
53 $html .= $this->actions();
54 $html .= '</div>';
57 $html .= '</section>';
59 return $html;
99 $html = '';
100 if ($link) $html .= '<a ' . buildAttributes($link) . '>';
101 $html .= '<img ' . buildAttributes($img) . ' />';
102 if ($link) $html .= '</a>';
104 return $html;
114 $html = '';
115 $html .= '<h2>';
116 $html .= '<div>';
117 …$html .= sprintf($this->getLang('extensionby'), hsc($this->extension->getDisplayName()), $this->au…
118 $html .= '</div>';
120 $html .= '<div class="version">';
122 $html .= hsc('<' . $this->getLang('status_bundled') . '>');
124 $html .= hsc($this->extension->getInstalledVersion());
126 $html .= '</div>';
127 $html .= '</h2>';
129 $html .= '<p>' . hsc($this->extension->getDescription()) . '</p>';
130 $html .= $this->mainLinks();
132 return $html;
144 $html = '<ul>';
155 $html .= '<li class="' . $type . '"><div class="li">' . $message . '</div></li>';
158 $html .= '</ul>';
159 return $html;
169 $html = '<div class="linkbar">';
175 … $html .= ' <a ' . buildAttributes($params, true) . '>' . $this->getLang('homepage_link') . '</a>';
181 … $html .= ' <a ' . buildAttributes($params, true) . '>' . $this->getLang('bugs_features') . '</a>';
186 … $html .= ' <a ' . buildAttributes($params, true) . '>' . $this->getLang('donate_action') . '</a>';
190 $html .= '</div>';
192 return $html;
202 $html = '<details>';
203 $html .= '<summary>' . $this->getLang('details') . '</summary>';
268 $html .= '<dl>';
270 $html .= '<dt>' . rtrim($this->getLang($key), ':') . '</dt>';
271 $html .= '<dd>' . $value . '</dd>';
273 $html .= '</dl>';
275 $html .= '</details>';
276 return $html;
301 … $html = '<a href="' . $url . '" class="author" title="' . $this->getLang('author_hint') . '" >' .
306 $html = '<span class="author">' . hsc($this->extension->getAuthor()) . '</span>';
308 return '<bdi>' . $html . '</bdi>';
348 $html = '';
379 …$html .= '<button ' . buildAttributes($attr) . '>' . $this->getLang('btn_' . $action) . '</button>…
382 return $html;
461 $html = '<a ' . buildAttributes($params, true) . '>' . hsc($name) . '</a>';
462 return $html;
475 $html = '';
477 $html .= '<bdi><a href="' .
481 return rtrim($html, ', ');