rosehill/templates/html/partials/menubar.inc

22 lines
492 B
PHP
Raw Normal View History

2014-08-18 20:17:49 +00:00
<?php
use Application\Models\Person;
?>
<nav>
<?php
$a = '<a href="%s">%s</a>';
$routes = [
'interment' => 'interments',
'cemetery' => 'cemeteries',
'deed' => 'deeds',
'person' => 'people',
'user' => 'users'
];
foreach ($routes as $singular=>$plural) {
if (Person::isAllowed($plural, 'index')) {
2014-08-18 20:26:14 +00:00
echo sprintf($a, BASE_URI.'/'.$plural, $this->_(["$singular", "$plural", 2]));
2014-08-18 20:17:49 +00:00
}
}
?>
</nav>