Proyectos de Subversion LeadersLinked - Services

Rev

Rev 345 | Rev 353 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 345 Rev 352
Línea 1... Línea 1...
1
<?php
1
<?php
-
 
2
 
2
declare(strict_types = 1);
3
declare(strict_types=1);
-
 
4
 
3
namespace LeadersLinked;
5
namespace LeadersLinked;
Línea 4... Línea 6...
4
 
6
 
5
use Laminas\Router\Http\Literal;
7
use Laminas\Router\Http\Literal;
-
 
8
use Laminas\Router\Http\Segment;
6
use Laminas\Router\Http\Segment;
9
 
7
return [
10
return [
8
    'navigation' => [
11
    'navigation' => [
9
        'menu' => [],
12
        'menu' => [],
10
        'footer' => [
13
        'footer' => [
Línea 609... Línea 612...
609
                                        'action' => 'delete'
612
                                        'action' => 'delete'
610
                                    ]
613
                                    ]
611
                                ]
614
                                ]
612
                            ]
615
                            ]
613
                        ]
616
                        ]
614
                    ]
617
                    ],
-
 
618
                    'habit-reports' => [
-
 
619
                        'type' => Literal::class,
-
 
620
                        'options' => [
-
 
621
                            'route' => '/habit-reports',
-
 
622
                            'defaults' => [
-
 
623
                                'controller' => '\LeadersLinked\Controller\HabitReportController',
-
 
624
                                'action' => 'index'
-
 
625
                            ]
-
 
626
                        ],
-
 
627
                        'may_terminate' => true,
-
 
628
                        'child_routes' => []
-
 
629
                    ],
615
                ]
630
                ]
616
            ],
631
            ],
Línea 617... Línea 632...
617
 
632
 
618
            'post' => [
633
            'post' => [