Remove unuse file
This commit is contained in:
parent
b01644a065
commit
ce30c50f35
@ -1,30 +0,0 @@
|
||||
<ul class="navigation">
|
||||
<?php
|
||||
$html = array();
|
||||
foreach ($this->container as $page)
|
||||
{
|
||||
$html[] = "<li>";
|
||||
$html[] = "<h3>" . $this->menu()->htmlify($page) . "</h3>" . PHP_EOL;
|
||||
if (!empty($page->pages))
|
||||
{
|
||||
$html[] = "<div>";
|
||||
$html[] = "<ul>";
|
||||
foreach ($page->pages as $subpage)
|
||||
{
|
||||
$html[] = "<li>";
|
||||
$href = $subpage->getHref();
|
||||
$html[] = "<a href=\"{$href}\">";
|
||||
$html[] = $subpage->getLabel();
|
||||
$html[] = "</a>";
|
||||
|
||||
$html[] = "</li>";
|
||||
}
|
||||
$html[] = "</ul>";
|
||||
$html[] = "</div>";
|
||||
}
|
||||
|
||||
$html[] = "</li>";
|
||||
}
|
||||
echo join(PHP_EOL, $html);
|
||||
?>
|
||||
</ul>
|
Loading…
Reference in New Issue
Block a user