Lines Matching refs:html

267         $html = $this->generateHeader($path ? $path : '/', $path);
272 $html .= "<section><h1>Nodes</h1>\n";
273 $html .= "<table class=\"nodeTable\">";
304 $html .= '<tr>';
305 …$html .= '<td class="nameColumn"><a href="' . $this->escapeHTML($subProps['fullPath']) . '"><span …
306 $html .= '<td class="typeColumn">' . $this->escapeHTML($type['string']) . '</td>';
307 $html .= '<td>';
309 $html .= $this->escapeHTML($subProps['{DAV:}getcontentlength'] . ' bytes');
311 $html .= '</td><td>';
314 $html .= $this->escapeHTML($lastMod->format('F j, Y, g:i a'));
316 $html .= '</td>';
324 $html .= '<td>' . $buttonActions . '</td>';
325 $html .= '</tr>';
328 $html .= '</table>';
332 $html .= "</section>";
333 $html .= "<section><h1>Properties</h1>";
334 $html .= "<table class=\"propTable\">";
344 $html .= $this->drawPropertyRow($propName, $propValue);
350 $html .= "</table>";
351 $html .= "</section>";
362 $html .= "<section><h1>Actions</h1>";
363 $html .= "<div class=\"actions\">\n";
364 $html .= $output;
365 $html .= "</div>\n";
366 $html .= "</section>\n";
369 $html .= $this->generateFooter();
373 return $html;
384 $html = $this->generateHeader('Plugins');
386 $html .= "<section><h1>Plugins</h1>";
387 $html .= "<table class=\"propTable\">";
390 $html .= '<tr><th>' . $info['name'] . '</th>';
391 $html .= '<td>' . $info['description'] . '</td>';
392 $html .= '<td>';
394 …$html .= '<a href="' . $this->escapeHTML($info['link']) . '"><span class="oi" data-glyph="book"></…
396 $html .= '</td></tr>';
398 $html .= "</table>";
399 $html .= "</section>";
403 $html .= $this->generateFooter();
405 return $html;
432 $html = <<<HTML
456 $html .= '<a href="' . $fullPath . '" class="btn">⇤ Go to parent</a>';
458 $html .= '<span class="btn disabled">⇤ Go to parent</span>';
461 …$html .= ' <a href="?sabreAction=plugins" class="btn"><span class="oi" data-glyph="puzzle-piece"><…
463 $html .= "</nav>";
465 return $html;
723 $html = new HtmlOutputHelper(
728 …return "<tr><th>" . $html->xmlName($name) . "</th><td>" . $this->drawPropertyValue($html, $value) …
735 * @param HtmlOutputHelper $html
739 private function drawPropertyValue($html, $value) { argument
742 return $html->h($value);
744 return $value->toHtml($html);
754 return "<pre>" . $html->h(implode("\n", $xml)) . "</pre>";