initial commit
This commit is contained in:
27
src/module/Application/config/routes/routes.index.php
Executable file
27
src/module/Application/config/routes/routes.index.php
Executable file
@@ -0,0 +1,27 @@
|
||||
<?php
|
||||
|
||||
namespace Application;
|
||||
|
||||
use Zend\Router\Http\Segment;
|
||||
|
||||
return array(
|
||||
'router' => [
|
||||
'routes' => [
|
||||
'data' => [
|
||||
'child_routes' => [
|
||||
'clock' => [
|
||||
'type' => Segment::class,
|
||||
'options' => [
|
||||
'route' => '/clock',
|
||||
'defaults' => [
|
||||
'controller' => Controller\IndexController::class,
|
||||
'action' => 'clock',
|
||||
'resource' => 'default',
|
||||
],
|
||||
],
|
||||
],
|
||||
],
|
||||
],
|
||||
],
|
||||
],
|
||||
);
|
||||
Reference in New Issue
Block a user