Play around with the rendering
This commit is contained in:
12
app/Template/routes.php
Normal file
12
app/Template/routes.php
Normal file
@ -0,0 +1,12 @@
|
||||
<?php /** @var $this \App\View\RouteView */ ?>
|
||||
|
||||
<?php
|
||||
foreach ($this->routes->getRoutes() as $route) {
|
||||
echo sprintf('<a href="%s">%s</a> - %s::%s<br>',
|
||||
$route->getRoute()->path,
|
||||
$route->getRoute()->path,
|
||||
$route->getController(),
|
||||
$route->getMethod()
|
||||
);
|
||||
}
|
||||
?>
|
Reference in New Issue
Block a user