Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 7606 | Rev 7611 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 www 1
<?php
1089 geraldo 2
 
3
declare(strict_types=1);
4
 
1 www 5
namespace LeadersLinked;
6
 
7
use Laminas\Router\Http\Literal;
8
use Laminas\Router\Http\Segment;
9
use Laminas\ServiceManager\Factory\InvokableFactory;
1089 geraldo 10
 
1 www 11
return [
12
    'navigation' => [
13
        'menu' => [
14
        ],
15
        'footer' => [
16
        ]
17
    ],
18
    'router' => [
19
        'routes' => [
20
            'home' => [
21
                'type' => Literal::class,
22
                'options' => [
23
                    'route' => '/',
24
                    'defaults' => [
25
                        'controller' => '\LeadersLinked\Controller\AuthController',
26
                        'action' => 'index'
27
                    ]
28
                ]
29
            ],
30
            'signin-company' => [
31
                'type' => Literal::class,
32
                'options' => [
33
                    'route' => '/signin-company',
34
                    'defaults' => [
35
                        'controller' => '\LeadersLinked\Controller\AuthController',
36
                        'action' => 'signinCompany'
37
                    ]
38
                ],
39
                'may_terminate' => true,
40
            ],
41
            'signin-admin' => [
42
                'type' => Literal::class,
43
                'options' => [
44
                    'route' => '/signin-admin',
45
                    'defaults' => [
46
                        'controller' => '\LeadersLinked\Controller\AuthController',
47
                        'action' => 'signinAdmin'
48
                    ]
49
                ],
50
                'may_terminate' => true,
51
            ],
52
            'signout' => [
53
                'type' => Literal::class,
54
                'options' => [
55
                    'route' => '/signout',
56
                    'defaults' => [
57
                        'controller' => '\LeadersLinked\Controller\AuthController',
58
                        'action' => 'signout'
59
                    ]
60
                ],
61
                'may_terminate' => true,
62
            ],
63
            'dashboard' => [
64
                'type' => Literal::class,
65
                'options' => [
66
                    'route' => '/dashboard',
67
                    'defaults' => [
68
                        'controller' => '\LeadersLinked\Controller\DashboardController',
69
                        'action' => 'index'
70
                    ]
71
                ]
72
            ],
73
            'storage' => [
74
                'type' => Segment::class,
75
                'options' => [
76
                    'route' => '/storage/type/:type[/code/:code][/filename/:filename]',
77
                    'constraints' => [
1593 eleazar 78
                        'type' => 'user|user-profile|user-cover|company|company-cover|group|group-cover|job|chat|image|feed|post|post-type|microlearning-topic|microlearning-capsule|microlearning-slide|recruitment_selection',
1 www 79
                        'code' => '[A-Za-z0-9\-]+\=*',
80
                        'filename' => '[a-zA-Z0-9\-\_]+\.(jpg|jpeg|gif|png|mp3|mp4|flv|doc|pdf|docx|xls|ppt|pdf|xlsx|pptx)'
81
                    ],
82
                    'defaults' => [
83
                        'controller' => '\LeadersLinked\Controller\StorageController',
84
                        'action' => 'download'
85
                    ]
86
                ]
87
            ],
1089 geraldo 88
            /*             * *** START TEST **** */
66 efrain 89
            'test' => [
90
                'type' => Literal::class,
91
                'options' => [
92
                    'route' => '/test',
93
                    'defaults' => [
94
                        'controller' => '\LeadersLinked\Controller\TestController',
95
                        'action' => 'index'
96
                    ]
97
                ],
98
                'may_terminate' => true,
99
                'child_routes' => [
100
                    'method-one' => [
101
                        'type' => Literal::class,
102
                        'options' => [
103
                            'route' => '/method-one',
104
                            'defaults' => [
105
                                'controller' => '\LeadersLinked\Controller\TestController',
106
                                'action' => 'methodOne'
107
                            ]
108
                        ]
109
                    ],
110
                    'method-one' => [
111
                        'type' => Literal::class,
112
                        'options' => [
113
                            'route' => '/method-one',
114
                            'defaults' => [
115
                                'controller' => '\LeadersLinked\Controller\TestController',
116
                                'action' => 'methodOne'
117
                            ]
118
                        ]
119
                    ],
120
                    'method-two' => [
121
                        'type' => Literal::class,
122
                        'options' => [
123
                            'route' => '/method-two',
124
                            'defaults' => [
125
                                'controller' => '\LeadersLinked\Controller\TestController',
126
                                'action' => 'methodTwo'
127
                            ]
128
                        ]
129
                    ],
130
                    'method-three' => [
131
                        'type' => Literal::class,
132
                        'options' => [
133
                            'route' => '/method-three',
134
                            'defaults' => [
135
                                'controller' => '\LeadersLinked\Controller\TestController',
136
                                'action' => 'methodThree'
137
                            ]
138
                        ]
139
                    ],
140
                    'method-four' => [
141
                        'type' => Literal::class,
142
                        'options' => [
143
                            'route' => '/method-four',
144
                            'defaults' => [
145
                                'controller' => '\LeadersLinked\Controller\TestController',
146
                                'action' => 'methodFour'
147
                            ]
148
                        ]
149
                    ],
150
                ],
1089 geraldo 151
            ],
152
            /*             * *** END TEST **** */
153
 
154
            /*             * * START COMPANIES ** */
1 www 155
            'companies' => [
156
                'type' => Literal::class,
157
                'options' => [
158
                    'route' => '/companies',
159
                    'defaults' => [
160
                        'controller' => '\LeadersLinked\Controller\CompanyController',
161
                        'action' => 'index'
162
                    ]
163
                ],
164
                'may_terminate' => true,
165
                'child_routes' => [
166
                    'services' => [
167
                        'type' => Segment::class,
168
                        'options' => [
169
                            'route' => '/services/:id',
170
                            'constraints' => [
171
                                'id' => '[A-Za-z0-9\-]+\=*'
172
                            ],
173
                            'defaults' => [
174
                                'controller' => '\LeadersLinked\Controller\CompanyController',
175
                                'action' => 'services'
176
                            ]
177
                        ]
178
                    ],
179
                    'roles' => [
180
                        'type' => Segment::class,
181
                        'options' => [
182
                            'route' => '/roles/:id',
183
                            'constraints' => [
184
                                'id' => '[A-Za-z0-9\-]+\=*'
185
                            ],
186
                            'defaults' => [
187
                                'controller' => '\LeadersLinked\Controller\CompanyController',
188
                                'action' => 'roles'
189
                            ]
190
                        ]
191
                    ],
192
                    'edit' => [
193
                        'type' => Segment::class,
194
                        'options' => [
195
                            'route' => '/edit/:id',
196
                            'constraints' => [
197
                                'id' => '[A-Za-z0-9\-]+\=*'
198
                            ],
199
                            'defaults' => [
200
                                'controller' => '\LeadersLinked\Controller\CompanyController',
201
                                'action' => 'edit'
202
                            ]
203
                        ]
204
                    ],
205
                ],
1089 geraldo 206
            ],
207
            /*             * * START USERS ** */
1 www 208
            'users' => [
209
                'type' => Literal::class,
210
                'options' => [
211
                    'route' => '/users',
212
                    'defaults' => [
213
                        'controller' => '\LeadersLinked\Controller\UserController',
214
                        'action' => 'index'
215
                    ]
216
                ],
217
                'may_terminate' => true,
218
                'child_routes' => [
219
                    'change-password' => [
220
                        'type' => Segment::class,
221
                        'options' => [
222
                            'route' => '/change-password/:id',
223
                            'constraints' => [
224
                                'id' => '[A-Za-z0-9\-]+\=*'
225
                            ],
226
                            'defaults' => [
227
                                'controller' => '\LeadersLinked\Controller\UserController',
228
                                'action' => 'change-password'
229
                            ]
230
                        ]
231
                    ],
232
                    'unblock' => [
233
                        'type' => Segment::class,
234
                        'options' => [
235
                            'route' => '/unblock/:id',
236
                            'constraints' => [
237
                                'id' => '[A-Za-z0-9\-]+\=*'
238
                            ],
239
                            'defaults' => [
240
                                'controller' => '\LeadersLinked\Controller\UserController',
241
                                'action' => 'unblock'
242
                            ]
243
                        ]
244
                    ],
129 efrain 245
                    'email-verify' => [
246
                        'type' => Segment::class,
247
                        'options' => [
248
                            'route' => '/email-verify/:id',
249
                            'constraints' => [
250
                                'id' => '[A-Za-z0-9\-]+\=*'
251
                            ],
252
                            'defaults' => [
253
                                'controller' => '\LeadersLinked\Controller\UserController',
254
                                'action' => 'emailVerify'
255
                            ]
256
                        ]
257
                    ],
1 www 258
                    'invite' => [
259
                        'type' => Segment::class,
260
                        'options' => [
261
                            'route' => '/invite',
262
                            'defaults' => [
263
                                'controller' => '\LeadersLinked\Controller\UserController',
264
                                'action' => 'invite'
265
                            ]
266
                        ]
267
                    ],
268
                    'accept' => [
269
                        'type' => Segment::class,
270
                        'options' => [
271
                            'route' => '/accept/:id',
272
                            'constraints' => [
273
                                'id' => '[A-Za-z0-9\-]+\=*'
274
                            ],
275
                            'defaults' => [
276
                                'controller' => '\LeadersLinked\Controller\UserController',
277
                                'action' => 'accept'
278
                            ]
279
                        ]
280
                    ],
281
                    'cancel' => [
282
                        'type' => Segment::class,
283
                        'options' => [
284
                            'route' => '/cancel/:id',
285
                            'constraints' => [
286
                                'id' => '[A-Za-z0-9\-]+\=*'
287
                            ],
288
                            'defaults' => [
289
                                'controller' => '\LeadersLinked\Controller\UserController',
290
                                'action' => 'cancel'
291
                            ]
292
                        ]
293
                    ],
294
                    'reject' => [
295
                        'type' => Segment::class,
296
                        'options' => [
297
                            'route' => '/reject/:id',
298
                            'constraints' => [
299
                                'id' => '[A-Za-z0-9\-]+\=*'
300
                            ],
301
                            'defaults' => [
302
                                'controller' => '\LeadersLinked\Controller\UserController',
303
                                'action' => 'reject'
304
                            ]
305
                        ]
306
                    ],
307
                    'edit' => [
308
                        'type' => Segment::class,
309
                        'options' => [
310
                            'route' => '/edit/:id',
311
                            'constraints' => [
312
                                'id' => '[A-Za-z0-9\-]+\=*'
313
                            ],
314
                            'defaults' => [
315
                                'controller' => '\LeadersLinked\Controller\UserController',
316
                                'action' => 'edit'
317
                            ]
318
                        ]
319
                    ],
320
                    'upload' => [
321
                        'type' => Literal::class,
322
                        'options' => [
323
                            'route' => '/upload',
324
                            'defaults' => [
325
                                'controller' => '\LeadersLinked\Controller\UserController',
326
                                'action' => 'upload'
327
                            ]
328
                        ]
329
                    ],
330
                ]
1089 geraldo 331
            ],
332
            /** START FEEDS * */
1 www 333
            'feeds' => [
334
                'type' => Literal::class,
335
                'options' => [
336
                    'route' => '/feeds',
337
                    'defaults' => [
338
                        'controller' => '\LeadersLinked\Controller\FeedController',
339
                        'action' => 'index'
340
                    ]
341
                ],
342
                'may_terminate' => true,
343
                'child_routes' => [
344
                    'timeline' => [
7368 nelberth 345
                        'type' => Segment::class,
1 www 346
                        'options' => [
7377 nelberth 347
                            'route' => '/timeline/[:id]/[:type[/feed/:feed]]',
7346 nelberth 348
                            'constraints' => [
349
                                'id' => '[A-Za-z0-9\-]+\=*',
7407 nelberth 350
                                'type' => 'user|company|hptg',
7362 nelberth 351
                                'feed' => '[A-Za-z0-9\-]+\=*',
7346 nelberth 352
                            ],
1 www 353
                            'defaults' => [
354
                                'controller' => '\LeadersLinked\Controller\FeedController',
355
                                'action' => 'timeline'
356
                            ]
357
                        ]
358
                    ],
359
                    'delete' => [
360
                        'type' => Segment::class,
361
                        'options' => [
362
                            'route' => '/delete/:id',
363
                            'constraints' => [
364
                                'id' => '[A-Za-z0-9\-]+\=*',
365
                            ],
366
                            'defaults' => [
367
                                'controller' => '\LeadersLinked\Controller\FeedController',
368
                                'action' => 'delete'
369
                            ],
370
                        ]
371
                    ],
372
                    'comments' => [
373
                        'type' => Segment::class,
374
                        'options' => [
375
                            'route' => '/comments/:id',
376
                            'constraints' => [
377
                                'id' => '[A-Za-z0-9\-]+\=*',
378
                            ],
379
                            'defaults' => [
380
                                'controller' => '\LeadersLinked\Controller\FeedController',
381
                                'action' => 'comment'
382
                            ],
383
                        ],
384
                        'may_terminate' => true,
385
                        'child_routes' => [
386
                            'delete' => [
387
                                'type' => Segment::class,
388
                                'options' => [
389
                                    'route' => '/delete/:comment',
390
                                    'constraints' => [
391
                                        'comment' => '[A-Za-z0-9\-]+\=*',
392
                                    ],
393
                                    'defaults' => [
394
                                        'controller' => '\LeadersLinked\Controller\FeedController',
395
                                        'action' => 'commentDelete'
396
                                    ]
397
                                ]
398
                            ],
399
                        ]
400
                    ],
401
                    'add' => [
402
                        'type' => Segment::class,
403
                        'options' => [
7400 nelberth 404
                            'route' => '/add[/company/:company_id][/group/:group_id][/encoding/:encoding][/type/:type[/feed/:feed]]',
1 www 405
                            'constraints' => [
406
                                'company_id' => '[A-Za-z0-9\-]+\=*',
407
                                'group_id' => '[A-Za-z0-9\-]+\=*',
7411 nelberth 408
                                'type' => 'group|company|hptg',
1 www 409
                                'encoding' => 'base64'
410
                            ],
411
                            'defaults' => [
412
                                'controller' => '\LeadersLinked\Controller\FeedController',
413
                                'action' => 'add'
414
                            ]
415
                        ]
416
                    ],
417
                ],
1089 geraldo 418
            ],
419
            /** START JOBS * */
1 www 420
            'jobs' => [
421
                'type' => Literal::class,
422
                'options' => [
423
                    'route' => '/jobs',
424
                    'defaults' => [
425
                        'controller' => '\LeadersLinked\Controller\JobController',
426
                        'action' => 'index'
427
                    ]
428
                ],
429
                'may_terminate' => true,
430
                'child_routes' => [
431
                    'add' => [
432
                        'type' => Literal::class,
433
                        'options' => [
434
                            'route' => '/add',
435
                            'defaults' => [
436
                                'controller' => '\LeadersLinked\Controller\JobController',
437
                                'action' => 'add'
438
                            ]
439
                        ],
440
                    ],
441
                    'delete' => [
442
                        'type' => Segment::class,
443
                        'options' => [
444
                            'route' => '/delete/:id',
445
                            'constraints' => [
446
                                'id' => '[A-Za-z0-9\-]+\=*'
447
                            ],
448
                            'defaults' => [
449
                                'controller' => '\LeadersLinked\Controller\JobController',
450
                                'action' => 'delete'
451
                            ]
452
                        ],
453
                    ],
454
                    'users-who-applied' => [
455
                        'type' => Segment::class,
456
                        'options' => [
457
                            'route' => '/users-who-applied/:id',
458
                            'constraints' => [
459
                                'id' => '[A-Za-z0-9\-]+\=*'
460
                            ],
461
                            'defaults' => [
462
                                'controller' => '\LeadersLinked\Controller\JobController',
463
                                'action' => 'usersWhoApplied'
464
                            ]
465
                        ],
466
                    ],
467
                    'edit' => [
468
                        'type' => Segment::class,
469
                        'options' => [
470
                            'route' => '/edit/:id',
471
                            'constraints' => [
472
                                'id' => '[A-Za-z0-9\-]+\=*'
473
                            ],
474
                            'defaults' => [
475
                                'controller' => '\LeadersLinked\Controller\JobController',
476
                                'action' => 'edit'
477
                            ]
478
                        ],
479
                        'may_terminate' => true,
480
                        'child_routes' => [
481
                            'status' => [
482
                                'type' => Literal::class,
483
                                'options' => [
484
                                    'route' => '/status',
485
                                    'defaults' => [
486
                                        'controller' => '\LeadersLinked\Controller\JobController',
487
                                        'action' => 'status'
488
                                    ]
489
                                ],
490
                            ],
491
                            'title' => [
492
                                'type' => Literal::class,
493
                                'options' => [
494
                                    'route' => '/title',
495
                                    'defaults' => [
496
                                        'controller' => '\LeadersLinked\Controller\JobController',
497
                                        'action' => 'title'
498
                                    ]
499
                                ],
500
                            ],
501
                            'last-date-of-application' => [
502
                                'type' => Literal::class,
503
                                'options' => [
504
                                    'route' => '/last-date-of-application',
505
                                    'defaults' => [
506
                                        'controller' => '\LeadersLinked\Controller\JobController',
507
                                        'action' => 'lastDateOfApplication'
508
                                    ]
509
                                ],
510
                            ],
511
                            'experience' => [
512
                                'type' => Literal::class,
513
                                'options' => [
514
                                    'route' => '/experience',
515
                                    'defaults' => [
516
                                        'controller' => '\LeadersLinked\Controller\JobController',
517
                                        'action' => 'experience'
518
                                    ]
519
                                ],
520
                            ],
521
                            'employment-type' => [
522
                                'type' => Literal::class,
523
                                'options' => [
524
                                    'route' => '/employment-type',
525
                                    'defaults' => [
526
                                        'controller' => '\LeadersLinked\Controller\JobController',
527
                                        'action' => 'employmentType'
528
                                    ]
529
                                ],
530
                            ],
531
                            'job-category' => [
532
                                'type' => Literal::class,
533
                                'options' => [
534
                                    'route' => '/job-category',
535
                                    'defaults' => [
536
                                        'controller' => '\LeadersLinked\Controller\JobController',
537
                                        'action' => 'jobCategory'
538
                                    ]
539
                                ],
540
                            ],
541
                            'extended' => [
542
                                'type' => Literal::class,
543
                                'options' => [
544
                                    'route' => '/extended',
545
                                    'defaults' => [
546
                                        'controller' => '\LeadersLinked\Controller\JobController',
547
                                        'action' => 'extended'
548
                                    ]
549
                                ],
550
                            ],
551
                            'location' => [
552
                                'type' => Literal::class,
553
                                'options' => [
554
                                    'route' => '/location',
555
                                    'defaults' => [
556
                                        'controller' => '\LeadersLinked\Controller\JobController',
557
                                        'action' => 'location'
558
                                    ]
559
                                ],
560
                            ],
561
                            'salary' => [
562
                                'type' => Literal::class,
563
                                'options' => [
564
                                    'route' => '/salary',
565
                                    'defaults' => [
566
                                        'controller' => '\LeadersLinked\Controller\JobController',
567
                                        'action' => 'salary'
568
                                    ]
569
                                ],
570
                            ],
571
                            'degrees' => [
572
                                'type' => Literal::class,
573
                                'options' => [
574
                                    'route' => '/degrees',
575
                                    'defaults' => [
576
                                        'controller' => '\LeadersLinked\Controller\JobController',
577
                                        'action' => 'degree'
578
                                    ]
579
                                ],
580
                            ],
581
                            'languages' => [
582
                                'type' => Literal::class,
583
                                'options' => [
584
                                    'route' => '/languages',
585
                                    'defaults' => [
586
                                        'controller' => '\LeadersLinked\Controller\JobController',
587
                                        'action' => 'language'
588
                                    ]
589
                                ],
590
                            ],
591
                            'skills' => [
592
                                'type' => Literal::class,
593
                                'options' => [
594
                                    'route' => '/skills',
595
                                    'defaults' => [
596
                                        'controller' => '\LeadersLinked\Controller\JobController',
597
                                        'action' => 'skill'
598
                                    ]
599
                                ],
600
                            ],
601
                            'how-apply' => [
602
                                'type' => Literal::class,
603
                                'options' => [
604
                                    'route' => '/how-apply',
605
                                    'defaults' => [
606
                                        'controller' => '\LeadersLinked\Controller\JobController',
607
                                        'action' => 'howApply'
608
                                    ]
609
                                ],
610
                            ],
611
                        ],
612
                    ]
613
                ],
614
            ],
1089 geraldo 615
            /*             * * END JOB * */
616
 
617
            /*             * *** START PROFILE *** */
1 www 618
            'profile' => [
619
                'type' => Literal::class,
620
                'options' => [
621
                    'route' => '/profile',
622
                    'defaults' => [
623
                        'controller' => '\LeadersLinked\Controller\ProfileController',
624
                        'action' => 'index'
625
                    ]
626
                ],
627
                'may_terminate' => true,
628
                'child_routes' => [
629
                    'extended' => [
630
                        'type' => Segment::class,
631
                        'options' => [
632
                            'route' => '/extended',
633
                            'defaults' => [
634
                                'controller' => '\LeadersLinked\Controller\ProfileController',
635
                                'action' => 'extended'
636
                            ]
637
                        ]
638
                    ],
639
                    'image' => [
640
                        'type' => Segment::class,
641
                        'options' => [
642
                            'route' => '/image/:operation',
643
                            'constraints' => [
644
                                'operation' => 'upload|delete'
645
                            ],
646
                            'defaults' => [
647
                                'controller' => '\LeadersLinked\Controller\ProfileController',
648
                                'action' => 'image'
649
                            ]
650
                        ]
651
                    ],
652
                    'cover' => [
653
                        'type' => Segment::class,
654
                        'options' => [
655
                            'route' => '/cover/:operation',
656
                            'constraints' => [
657
                                'operation' => 'upload|delete'
658
                            ],
659
                            'defaults' => [
660
                                'controller' => '\LeadersLinked\Controller\ProfileController',
661
                                'action' => 'cover'
662
                            ]
663
                        ]
664
                    ],
768 geraldo 665
                    'header' => [
666
                        'type' => Segment::class,
667
                        'options' => [
668
                            'route' => '/header/:operation',
669
                            'constraints' => [
670
                                'operation' => 'upload|delete'
671
                            ],
672
                            'defaults' => [
673
                                'controller' => '\LeadersLinked\Controller\ProfileController',
674
                                'action' => 'header'
675
                            ]
676
                        ]
677
                    ],
678
                    'footer' => [
679
                        'type' => Segment::class,
680
                        'options' => [
681
                            'route' => '/footer/:operation',
682
                            'constraints' => [
683
                                'operation' => 'upload|delete'
684
                            ],
685
                            'defaults' => [
686
                                'controller' => '\LeadersLinked\Controller\ProfileController',
687
                                'action' => 'footer'
688
                            ]
689
                        ]
690
                    ],
1 www 691
                    'website' => [
692
                        'type' => Segment::class,
693
                        'options' => [
694
                            'route' => '/website',
695
                            'defaults' => [
696
                                'controller' => '\LeadersLinked\Controller\ProfileController',
697
                                'action' => 'website'
698
                            ]
699
                        ]
700
                    ],
701
                    'foundation_year' => [
702
                        'type' => Segment::class,
703
                        'options' => [
704
                            'route' => '/foundation_year',
705
                            'defaults' => [
706
                                'controller' => '\LeadersLinked\Controller\ProfileController',
707
                                'action' => 'foundationYear'
708
                            ]
709
                        ]
710
                    ],
711
                    'location' => [
712
                        'type' => Segment::class,
713
                        'options' => [
714
                            'route' => '/location/:operation[/:id]',
715
                            'constraints' => [
716
                                'operation' => 'add|edit|delete',
717
                                'id' => '[A-Za-z0-9\-]+\=*'
718
                            ],
719
                            'defaults' => [
720
                                'controller' => '\LeadersLinked\Controller\ProfileController',
721
                                'action' => 'location'
722
                            ]
723
                        ]
724
                    ],
725
                    'social-network' => [
726
                        'type' => Segment::class,
727
                        'options' => [
728
                            'route' => '/social-network',
729
                            'defaults' => [
730
                                'controller' => '\LeadersLinked\Controller\ProfileController',
731
                                'action' => 'socialNetwork'
732
                            ]
733
                        ]
734
                    ],
735
                    'industry' => [
736
                        'type' => Segment::class,
737
                        'options' => [
738
                            'route' => '/industry',
739
                            'defaults' => [
740
                                'controller' => '\LeadersLinked\Controller\ProfileController',
741
                                'action' => 'industry'
742
                            ]
743
                        ]
744
                    ],
745
                    'company-size' => [
746
                        'type' => Segment::class,
747
                        'options' => [
748
                            'route' => '/company-size',
749
                            'defaults' => [
750
                                'controller' => '\LeadersLinked\Controller\ProfileController',
751
                                'action' => 'companySize'
752
                            ]
753
                        ]
754
                    ]
755
                ],
756
            ],
1089 geraldo 757
            /*             * * END PROFILE * */
758
 
759
            /*             * *** START FOLLOWERS *** */
1 www 760
            'followers' => [
761
                'type' => Literal::class,
762
                'options' => [
763
                    'route' => '/followers',
764
                    'defaults' => [
765
                        'controller' => '\LeadersLinked\Controller\FollowerController',
766
                        'action' => 'index'
767
                    ]
768
                ],
769
                'may_terminate' => true,
770
                'child_routes' => [
771
                    'delete' => [
772
                        'type' => Segment::class,
773
                        'options' => [
774
                            'route' => '/delete/:id',
775
                            'constraints' => [
776
                                'id' => '[A-Za-z0-9\-]+\=*'
777
                            ],
778
                            'defaults' => [
779
                                'controller' => '\LeadersLinked\Controller\FollowerController',
780
                                'action' => 'delete'
781
                            ]
782
                        ]
783
                    ],
1089 geraldo 784
                ],
785
            ],
786
            /*             * *** END FOLLOWERS *** */
787
 
788
            /*             * * START MICRO_LEARNING ** */
1 www 789
            'microlearning' => [
790
                'type' => Literal::class,
791
                'options' => [
792
                    'route' => '/microlearning',
793
                    'defaults' => [
794
                        'controller' => '\LeadersLinked\Controller\MicrolearningController',
795
                        'action' => 'index'
796
                    ]
797
                ],
798
                'may_terminate' => true,
799
                'child_routes' => [
800
                    'overview' => [
801
                        'type' => Literal::class,
802
                        'options' => [
803
                            'route' => '/overview',
804
                            'defaults' => [
805
                                'controller' => '\LeadersLinked\Controller\MicrolearningReportsController',
806
                                'action' => 'overview'
807
                            ]
808
                        ],
1089 geraldo 809
                    ],
1 www 810
                    'reports' => [
811
                        'type' => Literal::class,
812
                        'options' => [
813
                            'route' => '/reports',
814
                            'defaults' => [
815
                                'controller' => '\LeadersLinked\Controller\MicrolearningReportsController',
2 efrain 816
                                'action' => 'index'
1 www 817
                            ]
818
                        ],
2 efrain 819
                        'may_terminate' => true,
820
                        'child_routes' => [
821
                            'progress' => [
822
                                'type' => Literal::class,
823
                                'options' => [
824
                                    'route' => '/progress',
825
                                    'defaults' => [
826
                                        'controller' => '\LeadersLinked\Controller\MicrolearningReportsController',
827
                                        'action' => 'progress'
828
                                    ]
829
                                ]
830
                            ],
187 efrain 831
                            'comments-for-capsule' => [
832
                                'type' => Literal::class,
833
                                'options' => [
834
                                    'route' => '/comments-for-capsule',
835
                                    'defaults' => [
836
                                        'controller' => '\LeadersLinked\Controller\MicrolearningReportsController',
837
                                        'action' => 'commentsForCapsule'
838
                                    ]
839
                                ]
840
                            ],
2 efrain 841
                            'devices' => [
842
                                'type' => Literal::class,
843
                                'options' => [
844
                                    'route' => '/devices',
845
                                    'defaults' => [
846
                                        'controller' => '\LeadersLinked\Controller\MicrolearningReportsController',
847
                                        'action' => 'devices'
848
                                    ]
849
                                ]
850
                            ],
1089 geraldo 851
                        ]
852
                    ],
1 www 853
                    'content' => [
854
                        'type' => Literal::class,
855
                        'options' => [
856
                            'route' => '/content',
857
                            'defaults' => [
858
                                'controller' => '\LeadersLinked\Controller\MicrolearningContentController',
859
                                'action' => 'index'
860
                            ]
861
                        ],
862
                        'may_terminate' => true,
863
                        'child_routes' => [
66 efrain 864
                            'quizzes' => [
865
                                'type' => Segment::class,
866
                                'options' => [
867
                                    'route' => '/quizzes',
868
                                    'defaults' => [
869
                                        'controller' => '\LeadersLinked\Controller\MicrolearningQuizController',
870
                                        'action' => 'index'
871
                                    ]
872
                                ],
873
                                'may_terminate' => true,
874
                                'child_routes' => [
875
                                    'add' => [
876
                                        'type' => Literal::class,
877
                                        'options' => [
878
                                            'route' => '/add',
879
                                            'defaults' => [
880
                                                'controller' => '\LeadersLinked\Controller\MicrolearningQuizController',
881
                                                'action' => 'add'
882
                                            ]
883
                                        ]
884
                                    ],
885
                                    'edit' => [
886
                                        'type' => Segment::class,
887
                                        'options' => [
888
                                            'route' => '/:quiz_id/edit',
889
                                            'constraints' => [
890
                                                'quiz_id' => '[A-Za-z0-9\-]+\=*'
891
                                            ],
892
                                            'defaults' => [
893
                                                'controller' => '\LeadersLinked\Controller\MicrolearningQuizController',
894
                                                'action' => 'edit'
895
                                            ]
896
                                        ]
897
                                    ],
898
                                    'delete' => [
899
                                        'type' => Segment::class,
900
                                        'options' => [
901
                                            'route' => '/:quiz_id/delete',
902
                                            'constraints' => [
903
                                                'quiz_id' => '[A-Za-z0-9\-]+\=*'
904
                                            ],
905
                                            'defaults' => [
906
                                                'controller' => '\LeadersLinked\Controller\MicrolearningQuizController',
907
                                                'action' => 'delete'
908
                                            ]
909
                                        ]
910
                                    ],
911
                                    'check' => [
912
                                        'type' => Segment::class,
913
                                        'options' => [
914
                                            'route' => '/:quiz_id/check',
915
                                            'constraints' => [
916
                                                'quiz_id' => '[A-Za-z0-9\-]+\=*'
917
                                            ],
918
                                            'defaults' => [
919
                                                'controller' => '\LeadersLinked\Controller\MicrolearningQuizController',
920
                                                'action' => 'check'
921
                                            ]
922
                                        ]
923
                                    ],
924
                                    'publish' => [
925
                                        'type' => Segment::class,
926
                                        'options' => [
927
                                            'route' => '/:quiz_id/publish',
928
                                            'constraints' => [
929
                                                'quiz_id' => '[A-Za-z0-9\-]+\=*'
930
                                            ],
931
                                            'defaults' => [
932
                                                'controller' => '\LeadersLinked\Controller\MicrolearningQuizController',
933
                                                'action' => 'publish'
934
                                            ]
935
                                        ]
936
                                    ],
937
                                    'copy' => [
938
                                        'type' => Segment::class,
939
                                        'options' => [
940
                                            'route' => '/:quiz_id/copy',
941
                                            'constraints' => [
942
                                                'quiz_id' => '[A-Za-z0-9\-]+\=*'
943
                                            ],
944
                                            'defaults' => [
945
                                                'controller' => '\LeadersLinked\Controller\MicrolearningQuizController',
946
                                                'action' => 'copy'
947
                                            ]
948
                                        ]
949
                                    ],
950
                                    'questions' => [
951
                                        'type' => Segment::class,
952
                                        'options' => [
953
                                            'route' => '/:quiz_id/questions',
954
                                            'constraints' => [
955
                                                'quiz_id' => '[A-Za-z0-9\-]+\=*'
956
                                            ],
957
                                            'defaults' => [
958
                                                'controller' => '\LeadersLinked\Controller\MicrolearningQuestionController',
959
                                                'action' => 'index'
960
                                            ]
961
                                        ],
962
                                        'may_terminate' => true,
963
                                        'child_routes' => [
964
                                            'add' => [
965
                                                'type' => Literal::class,
966
                                                'options' => [
967
                                                    'route' => '/add',
968
                                                    'defaults' => [
969
                                                        'controller' => '\LeadersLinked\Controller\MicrolearningQuestionController',
970
                                                        'action' => 'add'
971
                                                    ]
972
                                                ]
973
                                            ],
974
                                            'edit' => [
975
                                                'type' => Segment::class,
976
                                                'options' => [
977
                                                    'route' => '/:question_id/edit',
978
                                                    'constraints' => [
979
                                                        'question_id' => '[A-Za-z0-9\-]+\=*'
980
                                                    ],
981
                                                    'defaults' => [
982
                                                        'controller' => '\LeadersLinked\Controller\MicrolearningQuestionController',
983
                                                        'action' => 'edit'
984
                                                    ]
985
                                                ]
986
                                            ],
987
                                            'delete' => [
988
                                                'type' => Segment::class,
989
                                                'options' => [
990
                                                    'route' => '/:question_id/delete',
991
                                                    'constraints' => [
992
                                                        'question_id' => '[A-Za-z0-9\-]+\=*'
993
                                                    ],
994
                                                    'defaults' => [
995
                                                        'controller' => '\LeadersLinked\Controller\MicrolearningQuestionController',
996
                                                        'action' => 'delete'
997
                                                    ]
998
                                                ]
999
                                            ],
1000
                                            'answers' => [
1001
                                                'type' => Segment::class,
1002
                                                'options' => [
1003
                                                    'route' => '/:question_id/answers',
1004
                                                    'constraints' => [
1005
                                                        'question_id' => '[A-Za-z0-9\-]+\=*'
1006
                                                    ],
1007
                                                    'defaults' => [
1008
                                                        'controller' => '\LeadersLinked\Controller\MicrolearningAnswerController',
1009
                                                        'action' => 'index'
1010
                                                    ]
1011
                                                ],
1012
                                                'may_terminate' => true,
1013
                                                'child_routes' => [
1014
                                                    'add' => [
1015
                                                        'type' => Literal::class,
1016
                                                        'options' => [
1017
                                                            'route' => '/add',
1018
                                                            'defaults' => [
1019
                                                                'controller' => '\LeadersLinked\Controller\MicrolearningAnswerController',
1020
                                                                'action' => 'add'
1021
                                                            ]
1022
                                                        ]
1023
                                                    ],
1024
                                                    'edit' => [
1025
                                                        'type' => Segment::class,
1026
                                                        'options' => [
1027
                                                            'route' => '/:answer_id/edit',
1028
                                                            'constraints' => [
1029
                                                                'answer_id' => '[A-Za-z0-9\-]+\=*'
1030
                                                            ],
1031
                                                            'defaults' => [
1032
                                                                'controller' => '\LeadersLinked\Controller\MicrolearningAnswerController',
1033
                                                                'action' => 'edit'
1034
                                                            ]
1035
                                                        ]
1036
                                                    ],
1037
                                                    'delete' => [
1038
                                                        'type' => Segment::class,
1039
                                                        'options' => [
1040
                                                            'route' => '/:answer_id/delete',
1041
                                                            'constraints' => [
1042
                                                                'answer_id' => '[A-Za-z0-9\-]+\=*'
1043
                                                            ],
1044
                                                            'defaults' => [
1045
                                                                'controller' => '\LeadersLinked\Controller\MicrolearningAnswerController',
1046
                                                                'action' => 'delete'
1047
                                                            ]
1048
                                                        ]
1049
                                                    ],
1050
                                                ]
1051
                                            ],
1052
                                        ]
1053
                                    ],
1054
                                ]
1089 geraldo 1055
                            ],
1 www 1056
                            'topics' => [
1057
                                'type' => Literal::class,
1058
                                'options' => [
1059
                                    'route' => '/topics',
1060
                                    'defaults' => [
1061
                                        'controller' => '\LeadersLinked\Controller\MicrolearningTopicController',
1062
                                        'action' => 'index'
1063
                                    ]
1064
                                ],
1065
                                'may_terminate' => true,
1066
                                'child_routes' => [
1067
                                    'add' => [
1068
                                        'type' => Literal::class,
1069
                                        'options' => [
1070
                                            'route' => '/add',
1071
                                            'defaults' => [
1072
                                                'controller' => '\LeadersLinked\Controller\MicrolearningTopicController',
1073
                                                'action' => 'add'
1074
                                            ]
1075
                                        ]
1076
                                    ],
1077
                                    'edit' => [
1078
                                        'type' => Segment::class,
1079
                                        'options' => [
1080
                                            'route' => '/edit/:id',
1081
                                            'constraints' => [
1082
                                                'id' => '[A-Za-z0-9\-]+\=*'
1083
                                            ],
1084
                                            'defaults' => [
1085
                                                'controller' => '\LeadersLinked\Controller\MicrolearningTopicController',
1086
                                                'action' => 'edit'
1087
                                            ]
1088
                                        ]
1089
                                    ],
1090
                                    'delete' => [
1091
                                        'type' => Segment::class,
1092
                                        'options' => [
1093
                                            'route' => '/delete/:id',
1094
                                            'constraints' => [
1095
                                                'id' => '[A-Za-z0-9\-]+\=*'
1096
                                            ],
1097
                                            'defaults' => [
1098
                                                'controller' => '\LeadersLinked\Controller\MicrolearningTopicController',
1099
                                                'action' => 'delete'
1100
                                            ]
1101
                                        ]
1102
                                    ]
1103
                                ]
1104
                            ],
1105
                            'capsules' => [
1106
                                'type' => Literal::class,
1107
                                'options' => [
1108
                                    'route' => '/capsules',
1109
                                    'defaults' => [
1110
                                        'controller' => '\LeadersLinked\Controller\MicrolearningCapsuleController',
1111
                                        'action' => 'index'
1112
                                    ]
1113
                                ],
1114
                                'may_terminate' => true,
1115
                                'child_routes' => [
1116
                                    'add' => [
1117
                                        'type' => Segment::class,
1118
                                        'options' => [
1119
                                            'route' => '/add/topic/:topic_uuid',
1120
                                            'constraints' => [
1121
                                                'topic_uuid' => '[A-Za-z0-9\-]+\=*',
1122
                                            ],
1123
                                            'defaults' => [
1124
                                                'controller' => '\LeadersLinked\Controller\MicrolearningCapsuleController',
1125
                                                'action' => 'add'
1126
                                            ]
1127
                                        ]
1128
                                    ],
1129
                                    'edit' => [
1130
                                        'type' => Segment::class,
1131
                                        'options' => [
1132
                                            'route' => '/edit/topic/:topic_uuid/id/:capsule_uuid',
1133
                                            'constraints' => [
1134
                                                'topic_uuid' => '[A-Za-z0-9\-]+\=*',
1135
                                                'capsule_uuid' => '[A-Za-z0-9\-]+\=*',
1136
                                            ],
1137
                                            'defaults' => [
1138
                                                'controller' => '\LeadersLinked\Controller\MicrolearningCapsuleController',
1139
                                                'action' => 'edit'
1140
                                            ]
1141
                                        ]
1142
                                    ],
1143
                                    'delete' => [
1144
                                        'type' => Segment::class,
1145
                                        'options' => [
1146
                                            'route' => '/delete/topic/:topic_uuid/id/:capsule_uuid',
1147
                                            'constraints' => [
1148
                                                'topic_uuid' => '[A-Za-z0-9\-]+\=*',
1149
                                                'capsule_uuid' => '[A-Za-z0-9\-]+\=*',
1150
                                            ],
1151
                                            'defaults' => [
1152
                                                'controller' => '\LeadersLinked\Controller\MicrolearningCapsuleController',
1153
                                                'action' => 'delete'
1154
                                            ]
1155
                                        ]
1156
                                    ],
1157
                                    'users' => [
1158
                                        'type' => Segment::class,
1159
                                        'options' => [
1160
                                            'route' => '/users/topic/:topic_uuid/id/:capsule_uuid/type/:type',
1161
                                            'constraints' => [
1162
                                                'topic_uuid' => '[A-Za-z0-9\-]+\=*',
1163
                                                'capsule_uuid' => '[A-Za-z0-9\-]+\=*',
1164
                                                'type' => 'all|active',
1165
                                            ],
1166
                                            'defaults' => [
1167
                                                'controller' => '\LeadersLinked\Controller\MicrolearningCapsuleController',
1168
                                                'action' => 'users'
1169
                                            ]
1170
                                        ]
1171
                                    ],
1172
                                ]
1173
                            ],
1174
                            'slides' => [
1175
                                'type' => Literal::class,
1176
                                'options' => [
1177
                                    'route' => '/slides',
1178
                                    'defaults' => [
1179
                                        'controller' => '\LeadersLinked\Controller\MicrolearningSlideController',
1180
                                        'action' => 'index'
1181
                                    ]
1182
                                ],
1183
                                'may_terminate' => true,
1184
                                'child_routes' => [
1185
                                    'add' => [
1186
                                        'type' => Segment::class,
1187
                                        'options' => [
1188
                                            'route' => '/add/topic/:topic_uuid/capsule/:capsule_uuid',
1189
                                            'constraints' => [
1190
                                                'topic_uuid' => '[A-Za-z0-9\-]+\=*',
1191
                                            ],
1192
                                            'defaults' => [
1193
                                                'controller' => '\LeadersLinked\Controller\MicrolearningSlideController',
1194
                                                'action' => 'add'
1195
                                            ]
1196
                                        ]
1197
                                    ],
1198
                                    'edit' => [
1199
                                        'type' => Segment::class,
1200
                                        'options' => [
1201
                                            'route' => '/edit/topic/:topic_uuid/capsule/:capsule_uuid/slide/:slide_uuid',
1202
                                            'constraints' => [
1203
                                                'topic_uuid' => '[A-Za-z0-9\-]+\=*',
1204
                                                'capsule_uuid' => '[A-Za-z0-9\-]+\=*',
1205
                                                'slide_uuid' => '[A-Za-z0-9\-]+\=*',
1206
                                            ],
1207
                                            'defaults' => [
1208
                                                'controller' => '\LeadersLinked\Controller\MicrolearningSlideController',
1209
                                                'action' => 'edit'
1210
                                            ]
1211
                                        ]
1212
                                    ],
1213
                                    'delete' => [
1214
                                        'type' => Segment::class,
1215
                                        'options' => [
1216
                                            'route' => '/delete/topic/:topic_uuid/capsule/:capsule_uuid/slide/:slide_uuid',
1217
                                            'constraints' => [
1218
                                                'topic_uuid' => '[A-Za-z0-9\-]+\=*',
1219
                                                'capsule_uuid' => '[A-Za-z0-9\-]+\=*',
1220
                                                'slide_uuid' => '[A-Za-z0-9\-]+\=*',
1221
                                            ],
1222
                                            'defaults' => [
1223
                                                'controller' => '\LeadersLinked\Controller\MicrolearningSlideController',
1224
                                                'action' => 'delete'
1225
                                            ]
1226
                                        ]
1227
                                    ],
1228
                                    'text' => [
1229
                                        'type' => Segment::class,
1230
                                        'options' => [
1231
                                            'route' => '/text/topic/:topic_uuid/capsule/:capsule_uuid/slide/:slide_uuid',
1232
                                            'constraints' => [
1233
                                                'topic_uuid' => '[A-Za-z0-9\-]+\=*',
1234
                                                'capsule_uuid' => '[A-Za-z0-9\-]+\=*',
1235
                                                'slide_uuid' => '[A-Za-z0-9\-]+\=*',
1236
                                            ],
1237
                                            'defaults' => [
1238
                                                'controller' => '\LeadersLinked\Controller\MicrolearningSlideController',
1239
                                                'action' => 'text'
1240
                                            ]
1241
                                        ]
1242
                                    ],
1243
                                ]
1244
                            ],
1089 geraldo 1245
                        ],
1246
                    ],
1 www 1247
                    'students' => [
1248
                        'type' => Literal::class,
1249
                        'options' => [
1250
                            'route' => '/students',
1251
                            'defaults' => [
1252
                                'controller' => '\LeadersLinked\Controller\MicrolearningStudentsController',
1253
                                'action' => 'index'
1254
                            ]
1255
                        ],
1256
                        'may_terminate' => true,
1257
                        'child_routes' => [
1258
                            'edit' => [
1259
                                'type' => Segment::class,
1260
                                'options' => [
1261
                                    'route' => '/edit/:id',
1262
                                    'constraints' => [
1263
                                        'id' => '[A-Za-z0-9\-]+\=*',
1264
                                    ],
1265
                                    'defaults' => [
1266
                                        'controller' => '\LeadersLinked\Controller\MicrolearningStudentsController',
1267
                                        'action' => 'edit'
1268
                                    ]
1269
                                ]
1270
                            ],
1271
                            'timeline' => [
1272
                                'type' => Segment::class,
1273
                                'options' => [
1274
                                    'route' => '/timeline/:id',
1275
                                    'constraints' => [
1276
                                        'id' => '[A-Za-z0-9\-]+\=*',
1277
                                    ],
1278
                                    'defaults' => [
1279
                                        'controller' => '\LeadersLinked\Controller\MicrolearningStudentsController',
1280
                                        'action' => 'timeline'
1281
                                    ]
1282
                                ]
1283
                            ],
1284
                            'change-password' => [
1285
                                'type' => Segment::class,
1286
                                'options' => [
1287
                                    'route' => '/change-password/:id',
1288
                                    'constraints' => [
1289
                                        'id' => '[A-Za-z0-9\-]+\=*'
1290
                                    ],
1291
                                    'defaults' => [
1292
                                        'controller' => '\LeadersLinked\Controller\MicrolearningStudentsController',
1293
                                        'action' => 'change-password'
1294
                                    ]
1295
                                ]
1296
                            ],
1297
                            'unblock' => [
1298
                                'type' => Segment::class,
1299
                                'options' => [
1300
                                    'route' => '/unblock/:id',
1301
                                    'constraints' => [
1302
                                        'id' => '[A-Za-z0-9\-]+\=*'
1303
                                    ],
1304
                                    'defaults' => [
1305
                                        'controller' => '\LeadersLinked\Controller\MicrolearningStudentsController',
1306
                                        'action' => 'unblock'
1307
                                    ]
1308
                                ]
1309
                            ],
1089 geraldo 1310
                        ]
1311
                    ],
1 www 1312
                    'access-for-students' => [
1313
                        'type' => Literal::class,
1314
                        'options' => [
1315
                            'route' => '/access-for-students',
1316
                            'defaults' => [
1317
                                'controller' => '\LeadersLinked\Controller\MicrolearningAccessForStudentsController',
1318
                                'action' => 'index'
1319
                            ]
1320
                        ],
1321
                        'may_terminate' => true,
1322
                        'child_routes' => [
1323
                            'revoke' => [
1324
                                'type' => Segment::class,
1325
                                'options' => [
1326
                                    'route' => '/revoke/topic/:topic_uuid/capsule/:capsule_uuid/user_uuid/:user_uuid',
1327
                                    'constraints' => [
1328
                                        'topic_uuid' => '[A-Za-z0-9\-]+\=*',
1329
                                        'capsule_uuid' => '[A-Za-z0-9\-]+\=*',
1330
                                        'user_uuid' => '[A-Za-z0-9\-]+\=*',
1331
                                    ],
1332
                                    'defaults' => [
1333
                                        'controller' => '\LeadersLinked\Controller\MicrolearningAccessForStudentsController',
1334
                                        'action' => 'revoke'
1335
                                    ]
1336
                                ]
1337
                            ],
1338
                            'unlimit' => [
1339
                                'type' => Segment::class,
1340
                                'options' => [
1341
                                    'route' => '/unlimit/topic/:topic_uuid/capsule/:capsule_uuid/user_uuid/:user_uuid',
1342
                                    'constraints' => [
1343
                                        'topic_uuid' => '[A-Za-z0-9\-]+\=*',
1344
                                        'capsule_uuid' => '[A-Za-z0-9\-]+\=*',
1345
                                        'user_uuid' => '[A-Za-z0-9\-]+\=*',
1346
                                    ],
1347
                                    'defaults' => [
1348
                                        'controller' => '\LeadersLinked\Controller\MicrolearningAccessForStudentsController',
1349
                                        'action' => 'unlimit'
1350
                                    ]
1351
                                ]
1352
                            ],
1353
                            'upload' => [
1354
                                'type' => Segment::class,
1355
                                'options' => [
1356
                                    'route' => '/upload/topic/:topic_uuid/capsule/:capsule_uuid',
1357
                                    'constraints' => [
1358
                                        'topic_uuid' => '[A-Za-z0-9\-]+\=*',
1359
                                        'capsule_uuid' => '[A-Za-z0-9\-]+\=*',
1360
                                    ],
1361
                                    'defaults' => [
1362
                                        'controller' => '\LeadersLinked\Controller\MicrolearningAccessForStudentsController',
1363
                                        'action' => 'upload'
1364
                                    ]
1365
                                ]
1366
                            ],
1367
                            'notification' => [
1368
                                'type' => Segment::class,
1369
                                'options' => [
1370
                                    'route' => '/notification/topic/:topic_uuid/capsule/:capsule_uuid',
1371
                                    'constraints' => [
1372
                                        'topic_uuid' => '[A-Za-z0-9\-]+\=*',
1373
                                        'capsule_uuid' => '[A-Za-z0-9\-]+\=*',
1374
                                    ],
1375
                                    'defaults' => [
1376
                                        'controller' => '\LeadersLinked\Controller\MicrolearningAccessForStudentsController',
1377
                                        'action' => 'notification'
1378
                                    ]
1379
                                ]
1380
                            ],
1381
                        ],
1089 geraldo 1382
                    ],
1 www 1383
                    'settings' => [
1384
                        'type' => Literal::class,
1385
                        'options' => [
1386
                            'route' => '/settings',
1387
                            'defaults' => [
1388
                                'controller' => '\LeadersLinked\Controller\MicrolearningController',
1389
                                'action' => 'index'
1390
                            ]
1391
                        ],
1392
                        'may_terminate' => true,
1393
                        'child_routes' => [
1394
                            'student-types' => [
1395
                                'type' => Literal::class,
1396
                                'options' => [
1397
                                    'route' => '/student-types',
1398
                                    'defaults' => [
1399
                                        'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserStudentTypeController',
1400
                                        'action' => 'index'
1401
                                    ]
1402
                                ],
1403
                                'may_terminate' => true,
1404
                                'child_routes' => [
1405
                                    'add' => [
1406
                                        'type' => Literal::class,
1407
                                        'options' => [
1408
                                            'route' => '/add',
1409
                                            'defaults' => [
1410
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserStudentTypeController',
1411
                                                'action' => 'add'
1412
                                            ]
1413
                                        ]
1414
                                    ],
1415
                                    'edit' => [
1416
                                        'type' => Segment::class,
1417
                                        'options' => [
1418
                                            'route' => '/edit/:id',
1419
                                            'constraints' => [
1420
                                                'id' => '[A-Za-z0-9\-]+\=*'
1421
                                            ],
1422
                                            'defaults' => [
1423
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserStudentTypeController',
1424
                                                'action' => 'edit'
1425
                                            ]
1426
                                        ]
1427
                                    ],
1428
                                    'delete' => [
1429
                                        'type' => Segment::class,
1430
                                        'options' => [
1431
                                            'route' => '/delete/:id',
1432
                                            'constraints' => [
1433
                                                'id' => '[A-Za-z0-9\-]+\=*'
1434
                                            ],
1435
                                            'defaults' => [
1436
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserStudentTypeController',
1437
                                                'action' => 'delete'
1438
                                            ]
1439
                                        ]
1440
                                    ]
1441
                                ]
1442
                            ],
1443
                            'functions' => [
1444
                                'type' => Literal::class,
1445
                                'options' => [
1446
                                    'route' => '/functions',
1447
                                    'defaults' => [
1448
                                        'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserFunctionController',
1449
                                        'action' => 'index'
1450
                                    ]
1451
                                ],
1452
                                'may_terminate' => true,
1453
                                'child_routes' => [
1454
                                    'add' => [
1455
                                        'type' => Literal::class,
1456
                                        'options' => [
1457
                                            'route' => '/add',
1458
                                            'defaults' => [
1459
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserFunctionController',
1460
                                                'action' => 'add'
1461
                                            ]
1462
                                        ]
1463
                                    ],
1464
                                    'edit' => [
1465
                                        'type' => Segment::class,
1466
                                        'options' => [
1467
                                            'route' => '/edit/:id',
1468
                                            'constraints' => [
1469
                                                'id' => '[A-Za-z0-9\-]+\=*'
1470
                                            ],
1471
                                            'defaults' => [
1472
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserFunctionController',
1473
                                                'action' => 'edit'
1474
                                            ]
1475
                                        ]
1476
                                    ],
1477
                                    'delete' => [
1478
                                        'type' => Segment::class,
1479
                                        'options' => [
1480
                                            'route' => '/delete/:id',
1481
                                            'constraints' => [
1482
                                                'id' => '[A-Za-z0-9\-]+\=*'
1483
                                            ],
1484
                                            'defaults' => [
1485
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserFunctionController',
1486
                                                'action' => 'delete'
1487
                                            ]
1488
                                        ]
1489
                                    ]
1490
                                ]
1491
                            ],
1492
                            'sectors' => [
1493
                                'type' => Literal::class,
1494
                                'options' => [
1495
                                    'route' => '/sectors',
1496
                                    'defaults' => [
1497
                                        'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserSectorController',
1498
                                        'action' => 'index'
1499
                                    ]
1500
                                ],
1501
                                'may_terminate' => true,
1502
                                'child_routes' => [
1503
                                    'add' => [
1504
                                        'type' => Literal::class,
1505
                                        'options' => [
1506
                                            'route' => '/add',
1507
                                            'defaults' => [
1508
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserSectorController',
1509
                                                'action' => 'add'
1510
                                            ]
1511
                                        ]
1512
                                    ],
1513
                                    'edit' => [
1514
                                        'type' => Segment::class,
1515
                                        'options' => [
1516
                                            'route' => '/edit/:id',
1517
                                            'constraints' => [
1518
                                                'id' => '[A-Za-z0-9\-]+\=*'
1519
                                            ],
1520
                                            'defaults' => [
1521
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserSectorController',
1522
                                                'action' => 'edit'
1523
                                            ]
1524
                                        ]
1525
                                    ],
1526
                                    'delete' => [
1527
                                        'type' => Segment::class,
1528
                                        'options' => [
1529
                                            'route' => '/delete/:id',
1530
                                            'constraints' => [
1531
                                                'id' => '[A-Za-z0-9\-]+\=*'
1532
                                            ],
1533
                                            'defaults' => [
1534
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserSectorController',
1535
                                                'action' => 'delete'
1536
                                            ]
1537
                                        ]
1538
                                    ]
1539
                                ]
1540
                            ],
1541
                            'programs' => [
1542
                                'type' => Literal::class,
1543
                                'options' => [
1544
                                    'route' => '/programs',
1545
                                    'defaults' => [
1546
                                        'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserProgramController',
1547
                                        'action' => 'index'
1548
                                    ]
1549
                                ],
1550
                                'may_terminate' => true,
1551
                                'child_routes' => [
1552
                                    'add' => [
1553
                                        'type' => Literal::class,
1554
                                        'options' => [
1555
                                            'route' => '/add',
1556
                                            'defaults' => [
1557
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserProgramController',
1558
                                                'action' => 'add'
1559
                                            ]
1560
                                        ]
1561
                                    ],
1562
                                    'edit' => [
1563
                                        'type' => Segment::class,
1564
                                        'options' => [
1565
                                            'route' => '/edit/:id',
1566
                                            'constraints' => [
1567
                                                'id' => '[A-Za-z0-9\-]+\=*'
1568
                                            ],
1569
                                            'defaults' => [
1570
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserProgramController',
1571
                                                'action' => 'edit'
1572
                                            ]
1573
                                        ]
1574
                                    ],
1575
                                    'delete' => [
1576
                                        'type' => Segment::class,
1577
                                        'options' => [
1578
                                            'route' => '/delete/:id',
1579
                                            'constraints' => [
1580
                                                'id' => '[A-Za-z0-9\-]+\=*'
1581
                                            ],
1582
                                            'defaults' => [
1583
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserProgramController',
1584
                                                'action' => 'delete'
1585
                                            ]
1586
                                        ]
1587
                                    ]
1588
                                ]
1589
                            ],
1590
                            'groups' => [
1591
                                'type' => Literal::class,
1592
                                'options' => [
1593
                                    'route' => '/groups',
1594
                                    'defaults' => [
1595
                                        'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserGroupController',
1596
                                        'action' => 'index'
1597
                                    ]
1598
                                ],
1599
                                'may_terminate' => true,
1600
                                'child_routes' => [
1601
                                    'add' => [
1602
                                        'type' => Literal::class,
1603
                                        'options' => [
1604
                                            'route' => '/add',
1605
                                            'defaults' => [
1606
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserGroupController',
1607
                                                'action' => 'add'
1608
                                            ]
1609
                                        ]
1610
                                    ],
1611
                                    'edit' => [
1612
                                        'type' => Segment::class,
1613
                                        'options' => [
1614
                                            'route' => '/edit/:id',
1615
                                            'constraints' => [
1616
                                                'id' => '[A-Za-z0-9\-]+\=*'
1617
                                            ],
1618
                                            'defaults' => [
1619
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserGroupController',
1620
                                                'action' => 'edit'
1621
                                            ]
1622
                                        ]
1623
                                    ],
1624
                                    'delete' => [
1625
                                        'type' => Segment::class,
1626
                                        'options' => [
1627
                                            'route' => '/delete/:id',
1628
                                            'constraints' => [
1629
                                                'id' => '[A-Za-z0-9\-]+\=*'
1630
                                            ],
1631
                                            'defaults' => [
1632
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserGroupController',
1633
                                                'action' => 'delete'
1634
                                            ]
1635
                                        ]
1636
                                    ]
1637
                                ]
1638
                            ],
1639
                            'companies' => [
1640
                                'type' => Literal::class,
1641
                                'options' => [
1642
                                    'route' => '/companies',
1643
                                    'defaults' => [
1644
                                        'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserCompanyController',
1645
                                        'action' => 'index'
1646
                                    ]
1647
                                ],
1648
                                'may_terminate' => true,
1649
                                'child_routes' => [
1650
                                    'add' => [
1651
                                        'type' => Literal::class,
1652
                                        'options' => [
1653
                                            'route' => '/add',
1654
                                            'defaults' => [
1655
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserCompanyController',
1656
                                                'action' => 'add'
1657
                                            ]
1658
                                        ]
1659
                                    ],
1660
                                    'edit' => [
1661
                                        'type' => Segment::class,
1662
                                        'options' => [
1663
                                            'route' => '/edit/:id',
1664
                                            'constraints' => [
1665
                                                'id' => '[A-Za-z0-9\-]+\=*'
1666
                                            ],
1667
                                            'defaults' => [
1668
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserCompanyController',
1669
                                                'action' => 'edit'
1670
                                            ]
1671
                                        ]
1672
                                    ],
1673
                                    'delete' => [
1674
                                        'type' => Segment::class,
1675
                                        'options' => [
1676
                                            'route' => '/delete/:id',
1677
                                            'constraints' => [
1678
                                                'id' => '[A-Za-z0-9\-]+\=*'
1679
                                            ],
1680
                                            'defaults' => [
1681
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserCompanyController',
1682
                                                'action' => 'delete'
1683
                                            ]
1684
                                        ]
1685
                                    ]
1686
                                ]
1687
                            ],
1688
                            'partners' => [
1689
                                'type' => Literal::class,
1690
                                'options' => [
1691
                                    'route' => '/partners',
1692
                                    'defaults' => [
1693
                                        'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserPartnerController',
1694
                                        'action' => 'index'
1695
                                    ]
1696
                                ],
1697
                                'may_terminate' => true,
1698
                                'child_routes' => [
1699
                                    'add' => [
1700
                                        'type' => Literal::class,
1701
                                        'options' => [
1702
                                            'route' => '/add',
1703
                                            'defaults' => [
1704
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserPartnerController',
1705
                                                'action' => 'add'
1706
                                            ]
1707
                                        ]
1708
                                    ],
1709
                                    'edit' => [
1710
                                        'type' => Segment::class,
1711
                                        'options' => [
1712
                                            'route' => '/edit/:id',
1713
                                            'constraints' => [
1714
                                                'id' => '[A-Za-z0-9\-]+\=*'
1715
                                            ],
1716
                                            'defaults' => [
1717
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserPartnerController',
1718
                                                'action' => 'edit'
1719
                                            ]
1720
                                        ]
1721
                                    ],
1722
                                    'delete' => [
1723
                                        'type' => Segment::class,
1724
                                        'options' => [
1725
                                            'route' => '/delete/:id',
1726
                                            'constraints' => [
1727
                                                'id' => '[A-Za-z0-9\-]+\=*'
1728
                                            ],
1729
                                            'defaults' => [
1730
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserPartnerController',
1731
                                                'action' => 'delete'
1732
                                            ]
1733
                                        ]
1734
                                    ]
1735
                                ]
1736
                            ],
1737
                            'institutions' => [
1738
                                'type' => Literal::class,
1739
                                'options' => [
1740
                                    'route' => '/institutions',
1741
                                    'defaults' => [
1742
                                        'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserInstitutionController',
1743
                                        'action' => 'index'
1744
                                    ]
1745
                                ],
1746
                                'may_terminate' => true,
1747
                                'child_routes' => [
1748
                                    'add' => [
1749
                                        'type' => Literal::class,
1750
                                        'options' => [
1751
                                            'route' => '/add',
1752
                                            'defaults' => [
1753
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserInstitutionController',
1754
                                                'action' => 'add'
1755
                                            ]
1756
                                        ]
1757
                                    ],
1758
                                    'edit' => [
1759
                                        'type' => Segment::class,
1760
                                        'options' => [
1761
                                            'route' => '/edit/:id',
1762
                                            'constraints' => [
1763
                                                'id' => '[A-Za-z0-9\-]+\=*'
1764
                                            ],
1765
                                            'defaults' => [
1766
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserInstitutionController',
1767
                                                'action' => 'edit'
1768
                                            ]
1769
                                        ]
1770
                                    ],
1771
                                    'delete' => [
1772
                                        'type' => Segment::class,
1773
                                        'options' => [
1774
                                            'route' => '/delete/:id',
1775
                                            'constraints' => [
1776
                                                'id' => '[A-Za-z0-9\-]+\=*'
1777
                                            ],
1778
                                            'defaults' => [
1779
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserInstitutionController',
1780
                                                'action' => 'delete'
1781
                                            ]
1782
                                        ]
1783
                                    ]
1784
                                ]
1785
                            ],
1786
                        ]
1089 geraldo 1787
                    ],
1 www 1788
                ],
1089 geraldo 1789
            ],
1790
            /*             * * START PUBLICATIONS ** */
1 www 1791
            'publications' => [
1792
                'type' => Literal::class,
1793
                'options' => [
1794
                    'route' => '/publications',
1795
                    'defaults' => [
1796
                        'controller' => '\LeadersLinked\Controller\DashboardController',
1797
                        'action' => 'index'
1798
                    ]
1799
                ],
1800
                'may_terminate' => true,
1801
                'child_routes' => [
1802
                    'pages' => [
1803
                        'type' => Literal::class,
1804
                        'options' => [
1805
                            'route' => '/pages',
1806
                            'defaults' => [
1807
                                'controller' => '\LeadersLinked\Controller\PageController',
1808
                                'action' => 'index'
1809
                            ]
1810
                        ],
1811
                        'may_terminate' => true,
1812
                        'child_routes' => [
1813
                            'add' => [
1814
                                'type' => Literal::class,
1815
                                'options' => [
1816
                                    'route' => '/add',
1817
                                    'defaults' => [
1818
                                        'controller' => '\LeadersLinked\Controller\PageController',
1819
                                        'action' => 'add'
1820
                                    ]
1821
                                ]
1822
                            ],
1823
                            'edit' => [
1824
                                'type' => Segment::class,
1825
                                'options' => [
1826
                                    'route' => '/edit/:id',
1827
                                    'constraints' => [
1828
                                        'id' => '[A-Za-z0-9\-]+\=*'
1829
                                    ],
1830
                                    'defaults' => [
1831
                                        'controller' => '\LeadersLinked\Controller\PageController',
1832
                                        'action' => 'edit'
1833
                                    ]
1834
                                ]
1835
                            ],
1836
                            'delete' => [
1837
                                'type' => Segment::class,
1838
                                'options' => [
1839
                                    'route' => '/delete/:id',
1840
                                    'constraints' => [
1841
                                        'id' => '[A-Za-z0-9\-]+\=*'
1842
                                    ],
1843
                                    'defaults' => [
1844
                                        'controller' => '\LeadersLinked\Controller\PageController',
1845
                                        'action' => 'delete'
1846
                                    ]
1847
                                ]
1848
                            ]
1849
                        ]
1850
                    ],
1851
                    'posts' => [
1852
                        'type' => Literal::class,
1853
                        'options' => [
1854
                            'route' => '/posts',
1855
                            'defaults' => [
1856
                                'controller' => '\LeadersLinked\Controller\PostController',
1857
                                'action' => 'index'
1858
                            ]
1859
                        ],
1860
                        'may_terminate' => true,
1861
                        'child_routes' => [
1862
                            'add' => [
1863
                                'type' => Literal::class,
1864
                                'options' => [
1865
                                    'route' => '/add',
1866
                                    'defaults' => [
1867
                                        'controller' => '\LeadersLinked\Controller\PostController',
1868
                                        'action' => 'add'
1869
                                    ]
1870
                                ]
1871
                            ],
1872
                            'edit' => [
1873
                                'type' => Segment::class,
1874
                                'options' => [
1875
                                    'route' => '/edit/:id',
1876
                                    'constraints' => [
1877
                                        'id' => '[A-Za-z0-9\-]+\=*'
1878
                                    ],
1879
                                    'defaults' => [
1880
                                        'controller' => '\LeadersLinked\Controller\PostController',
1881
                                        'action' => 'edit'
1882
                                    ]
1883
                                ]
1884
                            ],
1885
                            'delete' => [
1886
                                'type' => Segment::class,
1887
                                'options' => [
1888
                                    'route' => '/delete/:id',
1889
                                    'constraints' => [
1890
                                        'id' => '[A-Za-z0-9\-]+\=*'
1891
                                    ],
1892
                                    'defaults' => [
1893
                                        'controller' => '\LeadersLinked\Controller\PostController',
1894
                                        'action' => 'delete'
1895
                                    ]
1896
                                ]
1897
                            ]
1898
                        ]
1899
                    ],
1900
                ]
1089 geraldo 1901
            ],
1902
            /*             * * START SELF EVALUATION ** */
114 efrain 1903
            'self-evaluation' => [
1904
                'type' => Literal::class,
1905
                'options' => [
1906
                    'route' => '/self-evaluation',
1907
                    'defaults' => [
115 efrain 1908
                        'controller' => '\LeadersLinked\Controller\SelfEvaluationController',
114 efrain 1909
                        'action' => 'index'
1910
                    ]
1911
                ],
1912
                'may_terminate' => true,
1913
                'child_routes' => [
1914
                    'forms' => [
1915
                        'type' => Literal::class,
1916
                        'options' => [
1917
                            'route' => '/forms',
1918
                            'defaults' => [
115 efrain 1919
                                'controller' => '\LeadersLinked\Controller\SelfEvaluationFormController',
114 efrain 1920
                                'action' => 'index'
1921
                            ]
1922
                        ],
1923
                        'may_terminate' => true,
1924
                        'child_routes' => [
1925
                            'add' => [
1926
                                'type' => Literal::class,
1927
                                'options' => [
1928
                                    'route' => '/add',
1929
                                    'defaults' => [
115 efrain 1930
                                        'controller' => '\LeadersLinked\Controller\SelfEvaluationFormController',
114 efrain 1931
                                        'action' => 'add'
1932
                                    ]
1933
                                ]
1934
                            ],
1935
                            'edit' => [
1936
                                'type' => Segment::class,
1937
                                'options' => [
1938
                                    'route' => '/edit/:id',
1939
                                    'constraints' => [
1940
                                        'id' => '[A-Za-z0-9\-]+\=*'
1941
                                    ],
1942
                                    'defaults' => [
115 efrain 1943
                                        'controller' => '\LeadersLinked\Controller\SelfEvaluationFormController',
114 efrain 1944
                                        'action' => 'edit'
1945
                                    ]
1946
                                ]
1947
                            ],
1948
                            'delete' => [
1949
                                'type' => Segment::class,
1950
                                'options' => [
1951
                                    'route' => '/delete/:id',
1952
                                    'constraints' => [
1953
                                        'id' => '[A-Za-z0-9\-]+\=*'
1954
                                    ],
1955
                                    'defaults' => [
115 efrain 1956
                                        'controller' => '\LeadersLinked\Controller\SelfEvaluationFormController',
114 efrain 1957
                                        'action' => 'delete'
1958
                                    ]
1959
                                ]
1960
                            ]
1961
                        ]
1962
                    ],
115 efrain 1963
                    'users' => [
1964
                        'type' => Literal::class,
1965
                        'options' => [
1966
                            'route' => '/users',
1967
                            'defaults' => [
1968
                                'controller' => '\LeadersLinked\Controller\SelfEvaluationFormUserController',
1969
                                'action' => 'index'
1970
                            ]
1971
                        ],
1972
                        'may_terminate' => true,
1973
                        'child_routes' => [
1974
                            'add' => [
1975
                                'type' => Segment::class,
1976
                                'options' => [
1977
                                    'route' => '/add/:form_id/:user_id',
1978
                                    'constraints' => [
1979
                                        'form_id' => '[A-Za-z0-9\-]+\=*',
1980
                                        'user_id' => '[A-Za-z0-9\-]+\=*'
1981
                                    ],
1982
                                    'defaults' => [
1983
                                        'controller' => '\LeadersLinked\Controller\SelfEvaluationFormUserController',
1984
                                        'action' => 'add'
1985
                                    ]
1986
                                ]
1987
                            ],
1988
                            'delete' => [
1989
                                'type' => Segment::class,
1990
                                'options' => [
1991
                                    'route' => '/delete/:form_id/:user_id',
1992
                                    'constraints' => [
1993
                                        'form_id' => '[A-Za-z0-9\-]+\=*',
1994
                                        'user_id' => '[A-Za-z0-9\-]+\=*'
1995
                                    ],
1996
                                    'defaults' => [
1997
                                        'controller' => '\LeadersLinked\Controller\SelfEvaluationFormUserController',
1998
                                        'action' => 'delete'
1999
                                    ]
2000
                                ]
2001
                            ]
2002
                        ]
2003
                    ],
114 efrain 2004
                    'reviews' => [
2005
                        'type' => Literal::class,
2006
                        'options' => [
2007
                            'route' => '/reviews',
2008
                            'defaults' => [
115 efrain 2009
                                'controller' => '\LeadersLinked\Controller\SelfEvaluationReviewController',
114 efrain 2010
                                'action' => 'index'
2011
                            ]
2012
                        ],
2013
                        'may_terminate' => true,
2014
                        'child_routes' => [
2015
                            'edit' => [
2016
                                'type' => Segment::class,
2017
                                'options' => [
2018
                                    'route' => '/edit/:id',
2019
                                    'constraints' => [
2020
                                        'id' => '[A-Za-z0-9\-]+\=*'
2021
                                    ],
2022
                                    'defaults' => [
115 efrain 2023
                                        'controller' => '\LeadersLinked\Controller\SelfEvaluationReviewController',
486 geraldo 2024
                                        'action' => 'edit'
114 efrain 2025
                                    ]
2026
                                ]
2027
                            ],
469 geraldo 2028
                            'report' => [
2029
                                'type' => Segment::class,
2030
                                'options' => [
2031
                                    'route' => '/report/:id',
2032
                                    'constraints' => [
2033
                                        'id' => '[A-Za-z0-9\-]+\=*'
2034
                                    ],
2035
                                    'defaults' => [
2036
                                        'controller' => '\LeadersLinked\Controller\SelfEvaluationReviewController',
487 geraldo 2037
                                        'action' => 'report'
469 geraldo 2038
                                    ]
2039
                                ]
2040
                            ],
114 efrain 2041
                        ]
2042
                    ],
2043
                ]
1089 geraldo 2044
            ],
2045
            /*             * * END SELF EVALUATION ** */
946 geraldo 2046
 
1089 geraldo 2047
            /*             * * START PERFOMANCE EVALUATION ** */
946 geraldo 2048
            'performance-evaluation' => [
2049
                'type' => Literal::class,
2050
                'options' => [
2051
                    'route' => '/performance-evaluation',
2052
                    'defaults' => [
980 geraldo 2053
                        'controller' => '\LeadersLinked\Controller\SelfEvaluationController',
946 geraldo 2054
                        'action' => 'index'
2055
                    ]
2056
                ],
2057
                'may_terminate' => true,
2058
                'child_routes' => [
2059
                    'forms' => [
2060
                        'type' => Literal::class,
2061
                        'options' => [
2062
                            'route' => '/forms',
2063
                            'defaults' => [
977 geraldo 2064
                                'controller' => '\LeadersLinked\Controller\PerformanceEvaluationFormController',
946 geraldo 2065
                                'action' => 'index'
2066
                            ]
2067
                        ],
2068
                        'may_terminate' => true,
2069
                        'child_routes' => [
2070
                            'add' => [
2071
                                'type' => Literal::class,
2072
                                'options' => [
2073
                                    'route' => '/add',
2074
                                    'defaults' => [
977 geraldo 2075
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationFormController',
946 geraldo 2076
                                        'action' => 'add'
2077
                                    ]
2078
                                ]
2079
                            ],
2080
                            'edit' => [
2081
                                'type' => Segment::class,
2082
                                'options' => [
2083
                                    'route' => '/edit/:id',
2084
                                    'constraints' => [
2085
                                        'id' => '[A-Za-z0-9\-]+\=*'
2086
                                    ],
2087
                                    'defaults' => [
986 geraldo 2088
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationFormController',
946 geraldo 2089
                                        'action' => 'edit'
2090
                                    ]
2091
                                ]
2092
                            ],
2093
                            'delete' => [
2094
                                'type' => Segment::class,
2095
                                'options' => [
2096
                                    'route' => '/delete/:id',
2097
                                    'constraints' => [
2098
                                        'id' => '[A-Za-z0-9\-]+\=*'
2099
                                    ],
2100
                                    'defaults' => [
986 geraldo 2101
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationFormController',
946 geraldo 2102
                                        'action' => 'delete'
2103
                                    ]
2104
                                ]
1263 geraldo 2105
                                    ],
2106
                            'report' => [
2107
                                'type' => Segment::class,
2108
                                'options' => [
2109
                                    'route' => '/report/:id',
2110
                                    'constraints' => [
2111
                                        'id' => '[A-Za-z0-9\-]+\=*'
2112
                                    ],
2113
                                    'defaults' => [
2114
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationFormController',
2115
                                        'action' => 'report'
2116
                                    ]
2117
                                ]
2118
                            ],
946 geraldo 2119
                        ]
2120
                    ],
1383 efrain 2121
                    'evaluations' => [
946 geraldo 2122
                        'type' => Literal::class,
2123
                        'options' => [
1383 efrain 2124
                            'route' => '/evaluations',
946 geraldo 2125
                            'defaults' => [
1383 efrain 2126
                                'controller' => '\LeadersLinked\Controller\PerformanceEvaluationEvaluationController',
946 geraldo 2127
                                'action' => 'index'
2128
                            ]
2129
                        ],
2130
                        'may_terminate' => true,
2131
                        'child_routes' => [
1383 efrain 2132
                            'add' => [
1320 efrain 2133
                                'type' => Literal::class,
946 geraldo 2134
                                'options' => [
1383 efrain 2135
                                    'route' => '/add',
946 geraldo 2136
                                    'defaults' => [
1383 efrain 2137
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationEvaluationController',
2138
                                        'action' => 'add'
946 geraldo 2139
                                    ]
1383 efrain 2140
                                ]
2141
                            ],
2142
                            'edit' => [
2143
                                'type' => Segment::class,
2144
                                'options' => [
2145
                                    'route' => '/edit/:id',
2146
                                    'constraints' => [
2147
                                        'id' => '[A-Za-z0-9\-]+\=*',
1320 efrain 2148
                                    ],
1383 efrain 2149
                                    'defaults' => [
2150
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationEvaluationController',
2151
                                        'action' => 'edit'
1320 efrain 2152
                                    ]
946 geraldo 2153
                                ]
1383 efrain 2154
                            ],
2155
                            'delete' => [
2156
                                'type' => Segment::class,
2157
                                'options' => [
2158
                                    'route' => '/delete/:id',
2159
                                    'constraints' => [
2160
                                        'id' => '[A-Za-z0-9\-]+\=*',
2161
                                    ],
2162
                                    'defaults' => [
2163
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationEvaluationController',
2164
                                        'action' => 'delete'
2165
                                    ]
2166
                                ]
2167
                            ],
2168
                            'users' => [
1320 efrain 2169
                                'type' => Literal::class,
946 geraldo 2170
                                'options' => [
1383 efrain 2171
                                    'route' => '/users',
946 geraldo 2172
                                    'defaults' => [
1383 efrain 2173
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationEvaluationController',
2174
                                        'action' => 'users'
946 geraldo 2175
                                    ]
2176
                                ]
1383 efrain 2177
                            ],
2178
 
2179
 
1320 efrain 2180
 
946 geraldo 2181
                        ]
2182
                    ],
2183
                ]
1089 geraldo 2184
            ],
2185
            /*             * * END PERFORMANCE EVALUATION ** */
2186
 
2187
            /*             * * START SETTINGS ** */
1 www 2188
            'settings' => [
2189
                'type' => Literal::class,
2190
                'options' => [
2191
                    'route' => '/settings',
2192
                    'defaults' => [
2193
                        'controller' => '\LeadersLinked\Controller\DashboardController',
2194
                        'action' => 'index'
2195
                    ]
2196
                ],
2197
                'may_terminate' => true,
2198
                'child_routes' => [
2199
                    'company-sizes' => [
2200
                        'type' => Literal::class,
2201
                        'options' => [
2202
                            'route' => '/company-sizes',
2203
                            'defaults' => [
2204
                                'controller' => '\LeadersLinked\Controller\CompanySizeController',
2205
                                'action' => 'index'
2206
                            ]
2207
                        ],
2208
                        'may_terminate' => true,
2209
                        'child_routes' => [
2210
                            'add' => [
2211
                                'type' => Literal::class,
2212
                                'options' => [
2213
                                    'route' => '/add',
2214
                                    'defaults' => [
2215
                                        'controller' => '\LeadersLinked\Controller\CompanySizeController',
2216
                                        'action' => 'add'
2217
                                    ]
2218
                                ]
2219
                            ],
2220
                            'edit' => [
2221
                                'type' => Segment::class,
2222
                                'options' => [
2223
                                    'route' => '/edit/:id',
2224
                                    'constraints' => [
2225
                                        'id' => '[A-Za-z0-9\-]+\=*'
2226
                                    ],
2227
                                    'defaults' => [
2228
                                        'controller' => '\LeadersLinked\Controller\CompanySizeController',
2229
                                        'action' => 'edit'
2230
                                    ]
2231
                                ]
2232
                            ],
2233
                            'delete' => [
2234
                                'type' => Segment::class,
2235
                                'options' => [
2236
                                    'route' => '/delete/:id',
2237
                                    'constraints' => [
2238
                                        'id' => '[A-Za-z0-9\-]+\=*'
2239
                                    ],
2240
                                    'defaults' => [
2241
                                        'controller' => '\LeadersLinked\Controller\CompanySizeController',
2242
                                        'action' => 'delete'
2243
                                    ]
2244
                                ]
2245
                            ]
2246
                        ]
2247
                    ],
2248
                    'competency-types' => [
2249
                        'type' => Literal::class,
2250
                        'options' => [
2251
                            'route' => '/competency-types',
2252
                            'defaults' => [
2253
                                'controller' => '\LeadersLinked\Controller\CompetencyTypeController',
2254
                                'action' => 'index'
2255
                            ]
2256
                        ],
2257
                        'may_terminate' => true,
2258
                        'child_routes' => [
2259
                            'add' => [
2260
                                'type' => Literal::class,
2261
                                'options' => [
2262
                                    'route' => '/add',
2263
                                    'defaults' => [
2264
                                        'controller' => '\LeadersLinked\Controller\CompetencyTypeController',
2265
                                        'action' => 'add'
2266
                                    ]
2267
                                ]
2268
                            ],
2269
                            'edit' => [
2270
                                'type' => Segment::class,
2271
                                'options' => [
2272
                                    'route' => '/edit/:id',
2273
                                    'constraints' => [
2274
                                        'id' => '[A-Za-z0-9\-]+\=*'
2275
                                    ],
2276
                                    'defaults' => [
2277
                                        'controller' => '\LeadersLinked\Controller\CompetencyTypeController',
2278
                                        'action' => 'edit'
2279
                                    ]
2280
                                ]
2281
                            ],
2282
                            'delete' => [
2283
                                'type' => Segment::class,
2284
                                'options' => [
2285
                                    'route' => '/delete/:id',
2286
                                    'constraints' => [
2287
                                        'id' => '[A-Za-z0-9\-]+\=*'
2288
                                    ],
2289
                                    'defaults' => [
2290
                                        'controller' => '\LeadersLinked\Controller\CompetencyTypeController',
2291
                                        'action' => 'delete'
2292
                                    ]
2293
                                ]
28 efrain 2294
                            ],
2295
                            'import' => [
2296
                                'type' => Literal::class,
2297
                                'options' => [
2298
                                    'route' => '/import',
2299
                                    'defaults' => [
2300
                                        'controller' => '\LeadersLinked\Controller\CompetencyTypeController',
2301
                                        'action' => 'import'
2302
                                    ]
2303
                                ]
2304
                            ],
1 www 2305
                        ]
2306
                    ],
1104 geraldo 2307
                    'behaviors' => [
2308
                        'type' => Literal::class,
2309
                        'options' => [
2310
                            'route' => '/behaviors',
2311
                            'defaults' => [
2312
                                'controller' => '\LeadersLinked\Controller\BehaviorsController',
2313
                                'action' => 'index'
2314
                            ]
2315
                        ],
2316
                        'may_terminate' => true,
2317
                        'child_routes' => [
2318
                            'add' => [
2319
                                'type' => Literal::class,
2320
                                'options' => [
2321
                                    'route' => '/add',
2322
                                    'defaults' => [
2323
                                        'controller' => '\LeadersLinked\Controller\BehaviorsController',
2324
                                        'action' => 'add'
2325
                                    ]
2326
                                ]
1115 geraldo 2327
                            ],
2328
                            'edit' => [
2329
                                'type' => Segment::class,
2330
                                'options' => [
2331
                                    'route' => '/edit/:id',
2332
                                    'constraints' => [
2333
                                        'id' => '[A-Za-z0-9\-]+\=*'
2334
                                    ],
2335
                                    'defaults' => [
2336
                                        'controller' => '\LeadersLinked\Controller\BehaviorsController',
2337
                                        'action' => 'edit'
2338
                                    ]
2339
                                ]
2340
                            ],
1104 geraldo 2341
                        ]
2342
                    ],
1 www 2343
                    'competencies' => [
2344
                        'type' => Literal::class,
2345
                        'options' => [
2346
                            'route' => '/competencies',
2347
                            'defaults' => [
2348
                                'controller' => '\LeadersLinked\Controller\CompetencyController',
2349
                                'action' => 'index'
2350
                            ]
2351
                        ],
2352
                        'may_terminate' => true,
2353
                        'child_routes' => [
2354
                            'add' => [
2355
                                'type' => Literal::class,
2356
                                'options' => [
2357
                                    'route' => '/add',
2358
                                    'defaults' => [
2359
                                        'controller' => '\LeadersLinked\Controller\CompetencyController',
2360
                                        'action' => 'add'
2361
                                    ]
2362
                                ]
2363
                            ],
2364
                            'edit' => [
2365
                                'type' => Segment::class,
2366
                                'options' => [
2367
                                    'route' => '/edit/:id',
2368
                                    'constraints' => [
2369
                                        'id' => '[A-Za-z0-9\-]+\=*'
2370
                                    ],
2371
                                    'defaults' => [
2372
                                        'controller' => '\LeadersLinked\Controller\CompetencyController',
2373
                                        'action' => 'edit'
2374
                                    ]
2375
                                ]
2376
                            ],
2377
                            'delete' => [
2378
                                'type' => Segment::class,
2379
                                'options' => [
2380
                                    'route' => '/delete/:id',
2381
                                    'constraints' => [
2382
                                        'id' => '[A-Za-z0-9\-]+\=*'
2383
                                    ],
2384
                                    'defaults' => [
2385
                                        'controller' => '\LeadersLinked\Controller\CompetencyController',
2386
                                        'action' => 'delete'
2387
                                    ]
2388
                                ]
28 efrain 2389
                            ],
2390
                            'import' => [
2391
                                'type' => Literal::class,
2392
                                'options' => [
2393
                                    'route' => '/import',
2394
                                    'defaults' => [
2395
                                        'controller' => '\LeadersLinked\Controller\CompetencyController',
2396
                                        'action' => 'import'
2397
                                    ]
2398
                                ]
2399
                            ],
1 www 2400
                        ]
2401
                    ],
2402
                    'degrees' => [
2403
                        'type' => Literal::class,
2404
                        'options' => [
2405
                            'route' => '/degrees',
2406
                            'defaults' => [
2407
                                'controller' => '\LeadersLinked\Controller\DegreeController',
2408
                                'action' => 'index'
2409
                            ]
2410
                        ],
2411
                        'may_terminate' => true,
2412
                        'child_routes' => [
2413
                            'add' => [
2414
                                'type' => Literal::class,
2415
                                'options' => [
2416
                                    'route' => '/add',
2417
                                    'defaults' => [
2418
                                        'controller' => '\LeadersLinked\Controller\DegreeController',
2419
                                        'action' => 'add'
2420
                                    ]
2421
                                ]
2422
                            ],
2423
                            'edit' => [
2424
                                'type' => Segment::class,
2425
                                'options' => [
2426
                                    'route' => '/edit/:id',
2427
                                    'constraints' => [
2428
                                        'id' => '[A-Za-z0-9\-]+\=*'
2429
                                    ],
2430
                                    'defaults' => [
2431
                                        'controller' => '\LeadersLinked\Controller\DegreeController',
2432
                                        'action' => 'edit'
2433
                                    ]
2434
                                ]
2435
                            ],
2436
                            'delete' => [
2437
                                'type' => Segment::class,
2438
                                'options' => [
2439
                                    'route' => '/delete/:id',
2440
                                    'constraints' => [
2441
                                        'id' => '[A-Za-z0-9\-]+\=*'
2442
                                    ],
2443
                                    'defaults' => [
2444
                                        'controller' => '\LeadersLinked\Controller\DegreeController',
2445
                                        'action' => 'delete'
2446
                                    ]
2447
                                ]
2448
                            ]
2449
                        ]
2450
                    ],
2451
                    'group-types' => [
2452
                        'type' => Literal::class,
2453
                        'options' => [
2454
                            'route' => '/competency-types',
2455
                            'defaults' => [
2456
                                'controller' => '\LeadersLinked\Controller\GroupTypeController',
2457
                                'action' => 'index'
2458
                            ]
2459
                        ],
2460
                        'may_terminate' => true,
2461
                        'child_routes' => [
2462
                            'add' => [
2463
                                'type' => Literal::class,
2464
                                'options' => [
2465
                                    'route' => '/add',
2466
                                    'defaults' => [
2467
                                        'controller' => '\LeadersLinked\Controller\GroupTypeController',
2468
                                        'action' => 'add'
2469
                                    ]
2470
                                ]
2471
                            ],
2472
                            'edit' => [
2473
                                'type' => Segment::class,
2474
                                'options' => [
2475
                                    'route' => '/edit/:id',
2476
                                    'constraints' => [
2477
                                        'id' => '[A-Za-z0-9\-]+\=*'
2478
                                    ],
2479
                                    'defaults' => [
2480
                                        'controller' => '\LeadersLinked\Controller\GroupTypeController',
2481
                                        'action' => 'edit'
2482
                                    ]
2483
                                ]
2484
                            ],
2485
                            'delete' => [
2486
                                'type' => Segment::class,
2487
                                'options' => [
2488
                                    'route' => '/delete/:id',
2489
                                    'constraints' => [
2490
                                        'id' => '[A-Za-z0-9\-]+\=*'
2491
                                    ],
2492
                                    'defaults' => [
2493
                                        'controller' => '\LeadersLinked\Controller\GroupTypeController',
2494
                                        'action' => 'delete'
2495
                                    ]
2496
                                ]
2497
                            ]
2498
                        ]
2499
                    ],
2500
                    'industries' => [
2501
                        'type' => Literal::class,
2502
                        'options' => [
2503
                            'route' => '/industries',
2504
                            'defaults' => [
2505
                                'controller' => '\LeadersLinked\Controller\IndustryController',
2506
                                'action' => 'index'
2507
                            ]
2508
                        ],
2509
                        'may_terminate' => true,
2510
                        'child_routes' => [
2511
                            'add' => [
2512
                                'type' => Literal::class,
2513
                                'options' => [
2514
                                    'route' => '/add',
2515
                                    'defaults' => [
2516
                                        'controller' => '\LeadersLinked\Controller\IndustryController',
2517
                                        'action' => 'add'
2518
                                    ]
2519
                                ]
2520
                            ],
2521
                            'edit' => [
2522
                                'type' => Segment::class,
2523
                                'options' => [
2524
                                    'route' => '/edit/:id',
2525
                                    'constraints' => [
2526
                                        'id' => '[A-Za-z0-9\-]+\=*'
2527
                                    ],
2528
                                    'defaults' => [
2529
                                        'controller' => '\LeadersLinked\Controller\IndustryController',
2530
                                        'action' => 'edit'
2531
                                    ]
2532
                                ]
2533
                            ],
2534
                            'delete' => [
2535
                                'type' => Segment::class,
2536
                                'options' => [
2537
                                    'route' => '/delete/:id',
2538
                                    'constraints' => [
2539
                                        'id' => '[A-Za-z0-9\-]+\=*'
2540
                                    ],
2541
                                    'defaults' => [
2542
                                        'controller' => '\LeadersLinked\Controller\IndustryController',
2543
                                        'action' => 'delete'
2544
                                    ]
2545
                                ]
2546
                            ]
2547
                        ]
2548
                    ],
2549
                    'group-types' => [
2550
                        'type' => Literal::class,
2551
                        'options' => [
2552
                            'route' => '/group-types',
2553
                            'defaults' => [
2554
                                'controller' => '\LeadersLinked\Controller\GroupTypeController',
2555
                                'action' => 'index'
2556
                            ]
2557
                        ],
2558
                        'may_terminate' => true,
2559
                        'child_routes' => [
2560
                            'add' => [
2561
                                'type' => Literal::class,
2562
                                'options' => [
2563
                                    'route' => '/add',
2564
                                    'defaults' => [
2565
                                        'controller' => '\LeadersLinked\Controller\GroupTypeController',
2566
                                        'action' => 'add'
2567
                                    ]
2568
                                ]
2569
                            ],
2570
                            'edit' => [
2571
                                'type' => Segment::class,
2572
                                'options' => [
2573
                                    'route' => '/edit/:id',
2574
                                    'constraints' => [
2575
                                        'id' => '[A-Za-z0-9\-]+\=*'
2576
                                    ],
2577
                                    'defaults' => [
2578
                                        'controller' => '\LeadersLinked\Controller\GroupTypeController',
2579
                                        'action' => 'edit'
2580
                                    ]
2581
                                ]
2582
                            ],
2583
                            'delete' => [
2584
                                'type' => Segment::class,
2585
                                'options' => [
2586
                                    'route' => '/delete/:id',
2587
                                    'constraints' => [
2588
                                        'id' => '[A-Za-z0-9\-]+\=*'
2589
                                    ],
2590
                                    'defaults' => [
2591
                                        'controller' => '\LeadersLinked\Controller\GroupTypeController',
2592
                                        'action' => 'delete'
2593
                                    ]
2594
                                ]
2595
                            ]
2596
                        ]
2597
                    ],
2598
                    'job-categories' => [
2599
                        'type' => Literal::class,
2600
                        'options' => [
2601
                            'route' => '/job-categories',
2602
                            'defaults' => [
2603
                                'controller' => '\LeadersLinked\Controller\JobCategoryController',
2604
                                'action' => 'index'
2605
                            ]
2606
                        ],
2607
                        'may_terminate' => true,
2608
                        'child_routes' => [
2609
                            'add' => [
2610
                                'type' => Literal::class,
2611
                                'options' => [
2612
                                    'route' => '/add',
2613
                                    'defaults' => [
2614
                                        'controller' => '\LeadersLinked\Controller\JobCategoryController',
2615
                                        'action' => 'add'
2616
                                    ]
2617
                                ]
2618
                            ],
2619
                            'edit' => [
2620
                                'type' => Segment::class,
2621
                                'options' => [
2622
                                    'route' => '/edit/:id',
2623
                                    'constraints' => [
2624
                                        'id' => '[A-Za-z0-9\-]+\=*'
2625
                                    ],
2626
                                    'defaults' => [
2627
                                        'controller' => '\LeadersLinked\Controller\JobCategoryController',
2628
                                        'action' => 'edit'
2629
                                    ]
2630
                                ]
2631
                            ],
2632
                            'delete' => [
2633
                                'type' => Segment::class,
2634
                                'options' => [
2635
                                    'route' => '/delete/:id',
2636
                                    'constraints' => [
2637
                                        'id' => '[A-Za-z0-9\-]+\=*'
2638
                                    ],
2639
                                    'defaults' => [
2640
                                        'controller' => '\LeadersLinked\Controller\JobCategoryController',
2641
                                        'action' => 'delete'
2642
                                    ]
2643
                                ]
2644
                            ]
2645
                        ]
2646
                    ],
28 efrain 2647
                    'jobs-description' => [
2648
                        'type' => Literal::class,
2649
                        'options' => [
2650
                            'route' => '/jobs-description',
2651
                            'defaults' => [
2652
                                'controller' => '\LeadersLinked\Controller\JobDescriptionController',
2653
                                'action' => 'index'
2654
                            ]
2655
                        ],
2656
                        'may_terminate' => true,
2657
                        'child_routes' => [
2658
                            'add' => [
2659
                                'type' => Literal::class,
2660
                                'options' => [
2661
                                    'route' => '/add',
2662
                                    'defaults' => [
2663
                                        'controller' => '\LeadersLinked\Controller\JobDescriptionController',
2664
                                        'action' => 'add'
2665
                                    ]
2666
                                ]
2667
                            ],
2668
                            'edit' => [
2669
                                'type' => Segment::class,
2670
                                'options' => [
2671
                                    'route' => '/edit/:id',
2672
                                    'constraints' => [
2673
                                        'id' => '[A-Za-z0-9\-]+\=*'
2674
                                    ],
2675
                                    'defaults' => [
2676
                                        'controller' => '\LeadersLinked\Controller\JobDescriptionController',
2677
                                        'action' => 'edit'
2678
                                    ]
2679
                                ]
2680
                            ],
2681
                            'delete' => [
2682
                                'type' => Segment::class,
2683
                                'options' => [
2684
                                    'route' => '/delete/:id',
2685
                                    'constraints' => [
2686
                                        'id' => '[A-Za-z0-9\-]+\=*'
2687
                                    ],
2688
                                    'defaults' => [
2689
                                        'controller' => '\LeadersLinked\Controller\JobDescriptionController',
2690
                                        'action' => 'delete'
2691
                                    ]
2692
                                ]
559 geraldo 2693
                            ],
2694
                            'report' => [
2695
                                'type' => Segment::class,
2696
                                'options' => [
2697
                                    'route' => '/report/:id',
2698
                                    'constraints' => [
2699
                                        'id' => '[A-Za-z0-9\-]+\=*'
2700
                                    ],
2701
                                    'defaults' => [
2702
                                        'controller' => '\LeadersLinked\Controller\JobDescriptionController',
2703
                                        'action' => 'report'
2704
                                    ]
2705
                                ]
2706
                            ],
846 geraldo 2707
                            'import' => [
2708
                                'type' => Literal::class,
2709
                                'options' => [
2710
                                    'route' => '/import',
2711
                                    'defaults' => [
2712
                                        'controller' => '\LeadersLinked\Controller\JobDescriptionController',
2713
                                        'action' => 'import'
2714
                                    ]
2715
                                ]
2716
                            ],
28 efrain 2717
                        ]
2718
                    ],
1 www 2719
                    'email-templates' => [
2720
                        'type' => Literal::class,
2721
                        'options' => [
2722
                            'route' => '/email-templates',
2723
                            'defaults' => [
2724
                                'controller' => '\LeadersLinked\Controller\EmailTemplateController',
2725
                                'action' => 'index'
2726
                            ]
2727
                        ],
2728
                        'may_terminate' => true,
2729
                        'child_routes' => [
2730
                            'edit' => [
2731
                                'type' => Segment::class,
2732
                                'options' => [
2733
                                    'route' => '/edit/:id',
2734
                                    'constraints' => [
2735
                                        'id' => '[A-Za-z0-9\-]+\=*'
2736
                                    ],
2737
                                    'defaults' => [
2738
                                        'controller' => '\LeadersLinked\Controller\EmailTemplateController',
2739
                                        'action' => 'edit'
2740
                                    ]
2741
                                ]
2742
                            ],
2743
                        ]
2744
                    ],
67 efrain 2745
                    'positions' => [
2746
                        'type' => Literal::class,
2747
                        'options' => [
2748
                            'route' => '/positions',
2749
                            'defaults' => [
2750
                                'controller' => '\LeadersLinked\Controller\PositionController',
2751
                                'action' => 'index'
2752
                            ]
2753
                        ],
2754
                        'may_terminate' => true,
2755
                        'child_routes' => [
2756
                            'add' => [
2757
                                'type' => Literal::class,
2758
                                'options' => [
2759
                                    'route' => '/add',
2760
                                    'defaults' => [
2761
                                        'controller' => '\LeadersLinked\Controller\PositionController',
2762
                                        'action' => 'add'
2763
                                    ]
2764
                                ]
2765
                            ],
2766
                            'edit' => [
2767
                                'type' => Segment::class,
2768
                                'options' => [
2769
                                    'route' => '/edit/:id',
2770
                                    'constraints' => [
2771
                                        'id' => '[A-Za-z0-9\-]+\=*'
2772
                                    ],
2773
                                    'defaults' => [
2774
                                        'controller' => '\LeadersLinked\Controller\PositionController',
2775
                                        'action' => 'edit'
2776
                                    ]
2777
                                ]
2778
                            ],
2779
                            'delete' => [
2780
                                'type' => Segment::class,
2781
                                'options' => [
2782
                                    'route' => '/delete/:id',
2783
                                    'constraints' => [
2784
                                        'id' => '[A-Za-z0-9\-]+\=*'
2785
                                    ],
2786
                                    'defaults' => [
2787
                                        'controller' => '\LeadersLinked\Controller\PositionController',
2788
                                        'action' => 'delete'
2789
                                    ]
2790
                                ]
2791
                            ],
1320 efrain 2792
                            'subordinates' => [
2793
                                'type' => Segment::class,
2794
                                'options' => [
2795
                                    'route' => '/subordinates/:job_description_id',
2796
                                    'constraints' => [
2797
                                        'job_description_id' => '[A-Za-z0-9\-]+\=*'
2798
                                    ],
2799
                                    'defaults' => [
2800
                                        'controller' => '\LeadersLinked\Controller\PositionController',
2801
                                        'action' => 'subordinates'
2802
                                    ]
2803
                                ]
2804
                            ],
67 efrain 2805
                        ]
2806
                    ],
1 www 2807
                    'push-templates' => [
2808
                        'type' => Literal::class,
2809
                        'options' => [
2810
                            'route' => '/push-templates',
2811
                            'defaults' => [
2812
                                'controller' => '\LeadersLinked\Controller\PushTemplateController',
2813
                                'action' => 'index'
2814
                            ]
2815
                        ],
2816
                        'may_terminate' => true,
2817
                        'child_routes' => [
2818
                            'edit' => [
2819
                                'type' => Segment::class,
2820
                                'options' => [
2821
                                    'route' => '/edit/:id',
2822
                                    'constraints' => [
2823
                                        'id' => '[A-Za-z0-9\-]+\=*'
2824
                                    ],
2825
                                    'defaults' => [
2826
                                        'controller' => '\LeadersLinked\Controller\PushTemplateController',
2827
                                        'action' => 'edit'
2828
                                    ]
2829
                                ]
2830
                            ],
2831
                        ]
2832
                    ],
2833
                    'skills' => [
2834
                        'type' => Literal::class,
2835
                        'options' => [
2836
                            'route' => '/skills',
2837
                            'defaults' => [
2838
                                'controller' => '\LeadersLinked\Controller\SkillController',
2839
                                'action' => 'index'
2840
                            ]
2841
                        ],
2842
                        'may_terminate' => true,
2843
                        'child_routes' => [
2844
                            'add' => [
2845
                                'type' => Literal::class,
2846
                                'options' => [
2847
                                    'route' => '/add',
2848
                                    'defaults' => [
2849
                                        'controller' => '\LeadersLinked\Controller\SkillController',
2850
                                        'action' => 'add'
2851
                                    ]
2852
                                ]
2853
                            ],
2854
                            'edit' => [
2855
                                'type' => Segment::class,
2856
                                'options' => [
2857
                                    'route' => '/edit/:id',
2858
                                    'constraints' => [
2859
                                        'id' => '[A-Za-z0-9\-]+\=*'
2860
                                    ],
2861
                                    'defaults' => [
2862
                                        'controller' => '\LeadersLinked\Controller\SkillController',
2863
                                        'action' => 'edit'
2864
                                    ]
2865
                                ]
2866
                            ],
2867
                            'delete' => [
2868
                                'type' => Segment::class,
2869
                                'options' => [
2870
                                    'route' => '/delete/:id',
2871
                                    'constraints' => [
2872
                                        'id' => '[A-Za-z0-9\-]+\=*'
2873
                                    ],
2874
                                    'defaults' => [
2875
                                        'controller' => '\LeadersLinked\Controller\SkillController',
2876
                                        'action' => 'delete'
2877
                                    ]
2878
                                ]
2879
                            ]
2880
                        ]
2881
                    ],
1089 geraldo 2882
                ]
1 www 2883
            ],
1089 geraldo 2884
        /*         * * FIN SETTINGS ** */
1333 efrain 2885
 
2886
            'own-professional-network' => [
2887
                'type' => Literal::class,
2888
                'options' => [
2889
                    'route' => '/own-professional-network',
2890
                    'defaults' => [
2891
                        'controller' => '\LeadersLinked\Controller\UnknownController',
2892
                        'action' => 'index'
2893
                    ]
2894
                ],
2895
                'may_terminate' => true,
2896
                'child_routes' => [
2897
                ]
2898
            ],
2899
 
2900
            'organizational-design' => [
2901
                'type' => Literal::class,
2902
                'options' => [
2903
                    'route' => '/organizational-design',
2904
                    'defaults' => [
2905
                        'controller' => '\LeadersLinked\Controller\UnknownController',
2906
                        'action' => 'index'
2907
                    ]
2908
                ],
2909
                'may_terminate' => true,
2910
                'child_routes' => [
2911
                ]
2912
            ],
2913
 
2914
            'planning-objectives-and-goals' => [
2915
                'type' => Literal::class,
2916
                'options' => [
2917
                    'route' => '/planning-objectives-and-goals',
2918
                    'defaults' => [
2235 nelberth 2919
                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsController',
1951 nelberth 2920
                        'action' => 'index'
1333 efrain 2921
                    ]
2922
                ],
2923
                'may_terminate' => true,
2924
                'child_routes' => [
2238 nelberth 2925
                    'objectives' => [
2250 nelberth 2926
                        'type' => Literal::class,
1914 nelberth 2927
                        'options' => [
2248 nelberth 2928
                            'route' => '/objectives',
1914 nelberth 2929
                            'defaults' => [
2228 nelberth 2930
                                'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController',
2238 nelberth 2931
                                'action' => 'index'
1914 nelberth 2932
                            ]
2251 nelberth 2933
                        ],
2934
 
2935
                        'may_terminate' => true,
2936
                        'child_routes' => [
2324 nelberth 2937
 
2251 nelberth 2938
                            'add' => [
2939
                                'type' => Literal::class,
2940
                                'options' => [
2941
                                    'route' => '/add',
2942
                                    'defaults' => [
2943
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController',
2944
                                        'action' => 'add'
2945
                                    ]
2946
                                ]
2947
                            ],
2948
                            'edit' => [
2949
                                'type' => Segment::class,
2950
                                'options' => [
2951
                                    'route' => '/edit/:id',
2952
                                    'constraints' => [
2953
                                        'id' => '[A-Za-z0-9\-]+\=*'
2954
                                    ],
2955
                                    'defaults' => [
2956
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController',
2957
                                        'action' => 'edit'
2958
                                    ]
2959
                                ]
2960
                            ],
2961
                            'delete' => [
2962
                                'type' => Segment::class,
2963
                                'options' => [
2964
                                    'route' => '/delete/:id',
2965
                                    'constraints' => [
2966
                                        'id' => '[A-Za-z0-9\-]+\=*'
2967
                                    ],
2968
                                    'defaults' => [
2969
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController',
2970
                                        'action' => 'delete'
2971
                                    ]
2972
                                ]
2324 nelberth 2973
                            ],
3462 nelberth 2974
                            'report' => [
2975
                                'type' => Segment::class,
2976
                                'options' => [
2977
                                    'route' => '/report/:id',
2978
                                    'constraints' => [
2979
                                        'id' => '[A-Za-z0-9\-]+\=*'
2980
                                    ],
2981
                                    'defaults' => [
2982
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController',
2983
                                        'action' => 'report'
2984
                                    ]
2985
                                ]
3986 nelberth 2986
                            ],
2987
                            'reportall' => [
2988
                                'type' => Literal::class,
2989
                                'options' => [
2990
                                    'route' => '/reportall',
2991
                                    'defaults' => [
2992
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController',
2993
                                        'action' => 'reportall'
2994
                                    ]
2995
                                ]
3462 nelberth 2996
                            ],
4041 nelberth 2997
 
2998
                            'matriz' => [
2999
                                'type' => Literal::class,
3000
                                'options' => [
3001
                                    'route' => '/matriz',
3002
                                    'defaults' => [
3003
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController',
3004
                                        'action' => 'matriz'
3005
                                    ]
3006
                                ]
3007
                            ],
2324 nelberth 3008
                            'goals' => [
2336 nelberth 3009
                                'type' => Segment::class,
2324 nelberth 3010
                                'options' => [
2426 nelberth 3011
                                    'route' => '/:uuid_objective/goals',
2324 nelberth 3012
                                    'constraints' => [
3013
                                        'id' => '[A-Za-z0-9\-]+\=*'
3014
                                    ],
3015
                                    'defaults' => [
3016
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsGoalsController',
3017
                                        'action' => 'index'
3018
                                    ]
2369 nelberth 3019
                                ],
2370 nelberth 3020
 
3021
                                'may_terminate' => true,
3022
                                'child_routes' => [
3023
                                    'add' => [
3024
                                        'type' => Literal::class,
3025
                                        'options' => [
3026
                                            'route' => '/add',
3027
                                            'defaults' => [
3028
                                                'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsGoalsController',
3029
                                                'action' => 'add'
3030
                                            ]
2369 nelberth 3031
                                        ]
2370 nelberth 3032
                                    ],
3033
                                    'edit' => [
3034
                                        'type' => Segment::class,
3035
                                        'options' => [
3036
                                            'route' => '/edit/:id',
3037
                                            'constraints' => [
3038
                                                'id' => '[A-Za-z0-9\-]+\=*'
3039
                                            ],
3040
                                            'defaults' => [
3041
                                                'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsGoalsController',
3042
                                                'action' => 'edit'
3043
                                            ]
2369 nelberth 3044
                                        ]
2370 nelberth 3045
                                    ],
3046
                                    'delete' => [
3047
                                        'type' => Segment::class,
3048
                                        'options' => [
3049
                                            'route' => '/delete/:id',
3050
                                            'constraints' => [
3051
                                                'id' => '[A-Za-z0-9\-]+\=*'
3052
                                            ],
3053
                                            'defaults' => [
3054
                                                'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsGoalsController',
3055
                                                'action' => 'delete'
3056
                                            ]
3057
                                        ]
3058
                                    ],
2517 nelberth 3059
                                    'task' => [
3060
                                        'type' => Segment::class,
3061
                                        'options' => [
2527 nelberth 3062
                                            'route' => '/:uuid_goals/task',
2517 nelberth 3063
                                            'constraints' => [
3064
                                                'id' => '[A-Za-z0-9\-]+\=*'
3065
                                            ],
3066
                                            'defaults' => [
3067
                                                'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController',
3068
                                                'action' => 'index'
3069
                                            ]
3070
                                        ],
3071
 
3072
                                        'may_terminate' => true,
3073
                                        'child_routes' => [
3074
                                            'add' => [
3075
                                                'type' => Literal::class,
3076
                                                'options' => [
3077
                                                    'route' => '/add',
3078
                                                    'defaults' => [
3079
                                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController',
3080
                                                        'action' => 'add'
3081
                                                    ]
3082
                                                ]
3083
                                            ],
3084
                                            'edit' => [
3085
                                                'type' => Segment::class,
3086
                                                'options' => [
3087
                                                    'route' => '/edit/:id',
3088
                                                    'constraints' => [
3089
                                                        'id' => '[A-Za-z0-9\-]+\=*'
3090
                                                    ],
3091
                                                    'defaults' => [
3092
                                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController',
3093
                                                        'action' => 'edit'
3094
                                                    ]
3095
                                                ]
3096
                                            ],
3097
                                            'delete' => [
3098
                                                'type' => Segment::class,
3099
                                                'options' => [
3100
                                                    'route' => '/delete/:id',
3101
                                                    'constraints' => [
3102
                                                        'id' => '[A-Za-z0-9\-]+\=*'
3103
                                                    ],
3104
                                                    'defaults' => [
3105
                                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController',
3106
                                                        'action' => 'delete'
3107
                                                    ]
3108
                                                ]
3109
                                            ],
2822 nelberth 3110
                                            'view' => [
3111
                                                'type' => Segment::class,
3112
                                                'options' => [
3113
                                                    'route' => '/view/:id',
3114
                                                    'constraints' => [
3115
                                                        'id' => '[A-Za-z0-9\-]+\=*'
3116
                                                    ],
3117
                                                    'defaults' => [
3118
                                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController',
3119
                                                        'action' => 'view'
3120
                                                    ]
3121
                                                ]
3122
                                            ],
2517 nelberth 3123
                                    ]
3124
                                ],
2369 nelberth 3125
                            ]
2370 nelberth 3126
                        ],
1914 nelberth 3127
                        ]
2246 nelberth 3128
                    ]
2238 nelberth 3129
 
1333 efrain 3130
                ]
3131
            ],
3132
 
3133
            'development-and-training' => [
3134
                'type' => Literal::class,
3135
                'options' => [
3136
                    'route' => '/development-and-training',
3137
                    'defaults' => [
3138
                        'controller' => '\LeadersLinked\Controller\UnknownController',
3139
                        'action' => 'index'
3140
                    ]
3141
                ],
3142
                'may_terminate' => true,
3143
                'child_routes' => [
3144
                ]
3145
            ],
1477 efrain 3146
 
1333 efrain 3147
 
1477 efrain 3148
            'recruitment-and-selection' => [
1333 efrain 3149
                'type' => Literal::class,
3150
                'options' => [
1477 efrain 3151
                    'route' => '/recruitment-and-selection',
1333 efrain 3152
                    'defaults' => [
1477 efrain 3153
                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionController',
1333 efrain 3154
                        'action' => 'index'
3155
                    ]
3156
                ],
3157
                'may_terminate' => true,
3158
                'child_routes' => [
1477 efrain 3159
                    'vacancies' => [
1345 eleazar 3160
                        'type' => Literal::class,
3161
                        'options' => [
1477 efrain 3162
                            'route' => '/vacancies',
1345 eleazar 3163
                            'defaults' => [
1385 eleazar 3164
                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionVacancyController',
1345 eleazar 3165
                                'action' => 'index'
3166
                            ]
3167
                        ],
3168
                        'may_terminate' => true,
3169
                        'child_routes' => [
3170
                            'add' => [
3171
                                'type' => Literal::class,
3172
                                'options' => [
3173
                                    'route' => '/add',
3174
                                    'defaults' => [
1385 eleazar 3175
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionVacancyController',
1345 eleazar 3176
                                        'action' => 'add'
3177
                                    ]
3178
                                ]
3179
                            ],
3180
                            'edit' => [
3181
                                'type' => Segment::class,
3182
                                'options' => [
3183
                                    'route' => '/edit/:id',
3184
                                    'constraints' => [
3185
                                        'id' => '[A-Za-z0-9\-]+\=*'
3186
                                    ],
3187
                                    'defaults' => [
1385 eleazar 3188
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionVacancyController',
1345 eleazar 3189
                                        'action' => 'edit'
3190
                                    ]
3191
                                ]
3192
                            ],
3193
                            'delete' => [
3194
                                'type' => Segment::class,
3195
                                'options' => [
3196
                                    'route' => '/delete/:id',
3197
                                    'constraints' => [
3198
                                        'id' => '[A-Za-z0-9\-]+\=*'
3199
                                    ],
3200
                                    'defaults' => [
1385 eleazar 3201
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionVacancyController',
1345 eleazar 3202
                                        'action' => 'delete'
3203
                                    ]
3204
                                ]
3205
                            ]
3206
                        ]
3207
                    ],
1459 eleazar 3208
                    'candidates' => [
3209
                        'type' => Segment::class,
3210
                        'options' => [
1501 eleazar 3211
                            'route' => '/candidates[/:vacancy_uuid]',
1459 eleazar 3212
                            'constraints' => [
1508 eleazar 3213
                                'vacancy_uuid' => '[A-Za-z0-9\-]+\=*'
1459 eleazar 3214
                            ],
3215
                            'defaults' => [
3216
                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
1502 eleazar 3217
                                'action' => 'index',
1503 eleazar 3218
                                'vacancy_uuid' => '',
1459 eleazar 3219
                            ]
3220
                        ],
3221
                        'may_terminate' => true,
3222
                        'child_routes' => [
3223
                            'add' => [
3224
                                'type' => Literal::class,
3225
                                'options' => [
1506 eleazar 3226
                                    'route' => '/add',
1459 eleazar 3227
                                    'defaults' => [
3228
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
3229
                                        'action' => 'add'
3230
                                    ]
3231
                                ]
3232
                            ],
3233
                            'edit' => [
3234
                                'type' => Segment::class,
3235
                                'options' => [
3236
                                    'route' => '/edit/:id',
3237
                                    'constraints' => [
3238
                                        'id' => '[A-Za-z0-9\-]+\=*'
3239
                                    ],
3240
                                    'defaults' => [
3241
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
3242
                                        'action' => 'edit'
3243
                                    ]
3244
                                ]
3245
                            ],
3246
                            'delete' => [
3247
                                'type' => Segment::class,
3248
                                'options' => [
3249
                                    'route' => '/delete/:id',
3250
                                    'constraints' => [
3251
                                        'id' => '[A-Za-z0-9\-]+\=*'
3252
                                    ],
3253
                                    'defaults' => [
3254
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
3255
                                        'action' => 'delete'
3256
                                    ]
3257
                                ]
1630 eleazar 3258
                            ],
3259
                            'email' => [
3260
                                'type' => Literal::class,
3261
                                'options' => [
3262
                                    'route' => '/email',
3263
                                    'defaults' => [
3264
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
3265
                                        'action' => 'email'
3266
                                    ]
3267
                                ]
3268
                            ],
1459 eleazar 3269
                        ]
3270
                    ],
1635 eleazar 3271
                    'user-by-email' => [
3272
                        'type' => Literal::class,
3273
                        'options' => [
3274
                            'route' => '/user-by-email',
3275
                            'defaults' => [
3276
                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
3277
                                'action' => 'email'
3278
                            ]
3279
                        ]
1709 eleazar 3280
                    ],
3281
                    'interview' => [
3282
                        'type' => Segment::class,
3283
                        'options' => [
3284
                            'route' => '/interview',
3285
                            'defaults' => [
3286
                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewController',
3287
                                'action' => 'index',
3288
                            ],
3289
                        ],
3290
                        'may_terminate' => true,
3291
                        'child_routes' => [
3292
                            'form' => [
4351 eleazar 3293
                                'type' => Segment::class,
1709 eleazar 3294
                                'options' => [
4349 eleazar 3295
                                    'route' => '/form[/:vacancy_uuid]',
3296
                                    'constraints' => [
3297
                                        'vacancy_uuid' => '[A-Za-z0-9\-]+\=*'
3298
                                    ],
1709 eleazar 3299
                                    'defaults' => [
1711 eleazar 3300
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
2029 eleazar 3301
                                        'action' => 'index',
4352 eleazar 3302
                                        'vacancy_uuid' => '',
1709 eleazar 3303
                                    ],
3304
                                ],
3305
                                'may_terminate' => true,
3306
                                'child_routes' => [
3307
                                    'add' => [
2059 eleazar 3308
                                        'type' => Segment::class,
1709 eleazar 3309
                                        'options' => [
3563 eleazar 3310
                                            'route' => '/add',
1709 eleazar 3311
                                            'defaults' => [
1899 eleazar 3312
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
1709 eleazar 3313
                                                'action' => 'add'
3314
                                            ],
3315
                                        ],
3316
                                    ],
3317
                                    'edit' => [
2775 eleazar 3318
                                        'type' => Segment::class,
1709 eleazar 3319
                                        'options' => [
2764 eleazar 3320
                                            'route' => '/edit/:interview_uuid',
2765 eleazar 3321
                                            'constraints' => [
3322
                                                'interview_uuid' => '[A-Za-z0-9\-]+\=*'
3323
                                            ],
1709 eleazar 3324
                                            'defaults' => [
1944 eleazar 3325
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
1709 eleazar 3326
                                                'action' => 'edit'
3327
                                            ],
3328
                                        ],
3329
                                    ],
3330
                                    'delete' => [
2775 eleazar 3331
                                        'type' => Segment::class,
1709 eleazar 3332
                                        'options' => [
2764 eleazar 3333
                                            'route' => '/delete/:interview_uuid',
2765 eleazar 3334
                                            'constraints' => [
3335
                                                'interview_uuid' => '[A-Za-z0-9\-]+\=*'
3336
                                            ],
1709 eleazar 3337
                                            'defaults' => [
2766 eleazar 3338
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
1709 eleazar 3339
                                                'action' => 'delete'
3340
                                            ],
3341
                                        ],
3342
                                    ],
3343
                                ],
3344
                            ],
3345
                            'report' =>[
3346
                                'type' => Segment::class,
3347
                                'options' => [
2864 eleazar 3348
                                    'route' => '/report/:interview_uuid',
3349
                                    'constraints' => [
3350
                                        'interview_uuid' => '[A-Za-z0-9\-]+\=*'
3351
                                    ],
1709 eleazar 3352
                                    'defaults' => [
2864 eleazar 3353
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
3354
                                        'action' => 'report',
1709 eleazar 3355
                                    ],
3356
                                ],
3357
                            ],
3571 eleazar 3358
                            'vacancy' =>[
3359
                                'type' => Segment::class,
3360
                                'options' => [
3361
                                    'route' => '/vacancy/:vacancy_uuid',
3362
                                    'constraints' => [
3363
                                        'vacancy_uuid' => '[A-Za-z0-9\-]+\=*'
3364
                                    ],
3365
                                    'defaults' => [
3366
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
3367
                                        'action' => 'vacancy',
3368
                                    ],
3369
                                ],
3370
                            ],
4367 eleazar 3371
                            'type' =>[
4365 eleazar 3372
                                'type' => Segment::class,
3373
                                'options' => [
4367 eleazar 3374
                                    'route' => '/type/:candidate_uuid',
4365 eleazar 3375
                                    'constraints' => [
3376
                                        'candidate_uuid' => '[A-Za-z0-9\-]+\=*'
3377
                                    ],
3378
                                    'defaults' => [
3379
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
4367 eleazar 3380
                                        'action' => 'type',
4365 eleazar 3381
                                    ],
3382
                                ],
3383
                            ],
1709 eleazar 3384
                        ],
3385
                    ],
1459 eleazar 3386
                ],
1333 efrain 3387
            ],
3388
 
3389
            'induction' => [
3390
                'type' => Literal::class,
3391
                'options' => [
3392
                    'route' => '/induction',
3393
                    'defaults' => [
3394
                        'controller' => '\LeadersLinked\Controller\UnknownController',
3395
                        'action' => 'index'
3396
                    ]
3397
                ],
3398
                'may_terminate' => true,
3399
                'child_routes' => [
3400
                ]
3401
            ],
3402
 
3403
            'organizational-climate' => [
3404
                'type' => Literal::class,
3405
                'options' => [
3406
                    'route' => '/organizational-climate',
3407
                    'defaults' => [
7218 eleazar 3408
                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateController',
1333 efrain 3409
                        'action' => 'index'
3410
                    ]
3411
                ],
3412
                'may_terminate' => true,
3413
                'child_routes' => [
7218 eleazar 3414
                    'add' => [
3415
                        'type' => Segment::class,
3416
                        'options' => [
3417
                            'route' => '/add',
3418
                            'defaults' => [
7295 eleazar 3419
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateController',
7218 eleazar 3420
                                'action' => 'add'
3421
                            ],
3422
                        ],
3423
                    ],
3424
                    'edit' => [
3425
                        'type' => Segment::class,
3426
                        'options' => [
3427
                            'route' => '/edit/:id',
3428
                            'defaults' => [
7295 eleazar 3429
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateController',
7218 eleazar 3430
                                'action' => 'edit'
3431
                            ],
3432
                        ],
3433
                    ],
3434
                    'delete' => [
3435
                        'type' => Segment::class,
3436
                        'options' => [
3437
                            'route' => '/delete/:id',
3438
                            'defaults' => [
7295 eleazar 3439
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateController',
7218 eleazar 3440
                                'action' => 'delete'
3441
                            ],
3442
                        ],
3443
                    ],
3444
                    'segment' => [
3445
                        'type' => Segment::class,
3446
                        'options' => [
3447
                            'route' => '/segment/:id',
3448
                            'defaults' => [
7295 eleazar 3449
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateController',
7218 eleazar 3450
                                'action' => 'segment'
3451
                            ],
3452
                        ],
3453
                    ],
3454
                    'form' => [
3455
                        'type' => Segment::class,
3456
                        'options' => [
3457
                            'route' => '/form',
3458
                            'defaults' => [
7295 eleazar 3459
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateFormController',
7218 eleazar 3460
                                'action' => 'index',
3461
                            ],
3462
                        ],
3463
                        'may_terminate' => true,
3464
                        'child_routes' => [
3465
                            'add' => [
3466
                                'type' => Segment::class,
3467
                                'options' => [
3468
                                    'route' => '/add',
3469
                                    'defaults' => [
7295 eleazar 3470
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateFormController',
7218 eleazar 3471
                                        'action' => 'add'
3472
                                    ],
3473
                                ],
3474
                            ],
3475
                            'edit' => [
3476
                                'type' => Segment::class,
3477
                                'options' => [
3478
                                    'route' => '/edit/:id',
3479
                                    'constraints' => [
3480
                                        'id' => '[A-Za-z0-9\-]+\=*'
3481
                                    ],
3482
                                    'defaults' => [
7295 eleazar 3483
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateFormController',
7218 eleazar 3484
                                        'action' => 'edit'
3485
                                    ]
3486
                                ]
3487
                            ],
3488
                            'delete' => [
3489
                                'type' => Segment::class,
3490
                                'options' => [
3491
                                    'route' => '/delete/:id',
3492
                                    'constraints' => [
3493
                                        'id' => '[A-Za-z0-9\-]+\=*'
3494
                                    ],
3495
                                    'defaults' => [
7295 eleazar 3496
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateFormController',
7218 eleazar 3497
                                        'action' => 'delete'
3498
                                    ]
3499
                                ]
3500
                            ]
3501
                        ],
3502
                    ],
3503
                    'test' => [
3504
                        'type' => Segment::class,
3505
                        'options' => [
7307 eleazar 3506
                            'route' => '/test[/:organizationalClimate_id]',
7218 eleazar 3507
                            'constraints' => [
7307 eleazar 3508
                                'organizationalClimate_id' => '[A-Za-z0-9\-]+\=*'
7218 eleazar 3509
                            ],
3510
                            'defaults' => [
7295 eleazar 3511
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateTestController',
7218 eleazar 3512
                                'action' => 'index',
7307 eleazar 3513
                                'organizationalClimate_id' => '',
7218 eleazar 3514
                            ],
3515
                        ],
3516
                        'may_terminate' => true,
3517
                        'child_routes' => [
3518
                            'add' => [
3519
                                'type' => Segment::class,
3520
                                'options' => [
3521
                                    'route' => '/add',
3522
                                    'defaults' => [
7295 eleazar 3523
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateTestController',
7218 eleazar 3524
                                        'action' => 'add',
3525
                                    ],
3526
                                ],
3527
                            ],
3528
                            'report' => [
3529
                                'type' => Segment::class,
3530
                                'options' => [
3531
                                    'route' => '/report/:uuid',
3532
                                    'defaults' => [
7295 eleazar 3533
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateTestController',
7218 eleazar 3534
                                        'action' => 'report',
3535
                                    ],
3536
                                ],
3537
                            ],
3538
                            'delete' => [
3539
                                'type' => Segment::class,
3540
                                'options' => [
3541
                                    'route' => '/delete/:id',
3542
                                    'defaults' => [
7295 eleazar 3543
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateTestController',
7218 eleazar 3544
                                        'action' => 'delete'
3545
                                    ]
3546
                                ]
3547
                            ]
3548
                        ],
3549
                    ],
3550
                    'report' => [
3551
                        'type' => Segment::class,
3552
                        'options' => [
7447 eleazar 3553
                            'route' => '/report[/:organizationalClimate_id]',
7218 eleazar 3554
                            'constraints' => [
7447 eleazar 3555
                                'organizationalClimate_id' => '[A-Za-z0-9\-]+\=*'
7218 eleazar 3556
                            ],
3557
                            'defaults' => [
7295 eleazar 3558
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateReportController',
7218 eleazar 3559
                                'action' => 'index',
7447 eleazar 3560
                                'organizationalClimate_id' => '',
7218 eleazar 3561
                            ],
3562
                        ],
3563
                        'may_terminate' => true,
3564
                        'child_routes' => [
3565
                            'all' => [
3566
                                'type' => Segment::class,
3567
                                'options' => [
3568
                                    'route' => '/all',
3569
                                    'defaults' => [
7295 eleazar 3570
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateReportController',
7218 eleazar 3571
                                        'action' => 'all',
3572
                                    ]
3573
                                ]
3574
                            ],
3575
                            'overview' => [
3576
                                'type' => Segment::class,
3577
                                'options' => [
3578
                                    'route' => '/overview',
3579
                                    'defaults' => [
7295 eleazar 3580
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateReportController',
7218 eleazar 3581
                                        'action' => 'overview',
3582
                                    ]
3583
                                ]
3584
                            ],
3585
                            'csv' => [
3586
                                'type' => Segment::class,
3587
                                'options' => [
3588
                                    'route' => '/csv',
3589
                                    'defaults' => [
7295 eleazar 3590
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateReportController',
7218 eleazar 3591
                                        'action' => 'csv',
3592
                                    ]
3593
                                ]
3594
                            ],
3595
                        ],
3596
                    ],
3597
                ],
1333 efrain 3598
            ],
3599
 
3600
            'culture' => [
3601
                'type' => Literal::class,
3602
                'options' => [
3603
                    'route' => '/culture',
3604
                    'defaults' => [
3605
                        'controller' => '\LeadersLinked\Controller\UnknownController',
3606
                        'action' => 'index'
3607
                    ]
3608
                ],
3609
                'may_terminate' => true,
3610
                'child_routes' => [
3611
                ]
3612
            ],
3613
 
3614
            'communication' => [
3615
                'type' => Literal::class,
3616
                'options' => [
3617
                    'route' => '/communication',
3618
                    'defaults' => [
3619
                        'controller' => '\LeadersLinked\Controller\UnknownController',
3620
                        'action' => 'index'
3621
                    ]
3622
                ],
3623
                'may_terminate' => true,
3624
                'child_routes' => [
3625
                ]
3626
            ],
3627
 
3628
            'career-development' => [
3629
                'type' => Literal::class,
3630
                'options' => [
3631
                    'route' => '/career-development',
3632
                    'defaults' => [
3633
                        'controller' => '\LeadersLinked\Controller\UnknownController',
3634
                        'action' => 'index'
3635
                    ]
3636
                ],
3637
                'may_terminate' => true,
3638
                'child_routes' => [
3639
                ]
3640
            ],
3641
 
4386 eleazar 3642
            'survey' => [
1333 efrain 3643
                'type' => Literal::class,
3644
                'options' => [
4397 eleazar 3645
                    'route' => '/survey',
1333 efrain 3646
                    'defaults' => [
4375 eleazar 3647
                        'controller' => '\LeadersLinked\Controller\SurveyController',
1333 efrain 3648
                        'action' => 'index'
3649
                    ]
3650
                ],
3651
                'may_terminate' => true,
3652
                'child_routes' => [
4579 eleazar 3653
                    'add' => [
3654
                        'type' => Segment::class,
3655
                        'options' => [
3656
                            'route' => '/add',
3657
                            'defaults' => [
3658
                                'controller' => '\LeadersLinked\Controller\SurveyController',
3659
                                'action' => 'add'
3660
                            ],
3661
                        ],
3662
                    ],
3663
                    'edit' => [
3664
                        'type' => Segment::class,
3665
                        'options' => [
3666
                            'route' => '/edit/:id',
3667
                            'defaults' => [
3668
                                'controller' => '\LeadersLinked\Controller\SurveyController',
3669
                                'action' => 'edit'
3670
                            ],
3671
                        ],
3672
                    ],
3673
                    'delete' => [
3674
                        'type' => Segment::class,
3675
                        'options' => [
3676
                            'route' => '/delete/:id',
3677
                            'defaults' => [
3678
                                'controller' => '\LeadersLinked\Controller\SurveyController',
3679
                                'action' => 'delete'
3680
                            ],
3681
                        ],
3682
                    ],
3683
                    'segment' => [
3684
                        'type' => Segment::class,
3685
                        'options' => [
3686
                            'route' => '/segment/:id',
3687
                            'defaults' => [
3688
                                'controller' => '\LeadersLinked\Controller\SurveyController',
3689
                                'action' => 'segment'
3690
                            ],
3691
                        ],
3692
                    ],
4374 eleazar 3693
                    'form' => [
3694
                        'type' => Segment::class,
3695
                        'options' => [
3696
                            'route' => '/form',
3697
                            'defaults' => [
4375 eleazar 3698
                                'controller' => '\LeadersLinked\Controller\SurveyFormController',
4374 eleazar 3699
                                'action' => 'index',
3700
                            ],
3701
                        ],
3702
                        'may_terminate' => true,
3703
                        'child_routes' => [
3704
                            'add' => [
3705
                                'type' => Segment::class,
3706
                                'options' => [
3707
                                    'route' => '/add',
3708
                                    'defaults' => [
4375 eleazar 3709
                                        'controller' => '\LeadersLinked\Controller\SurveyFormController',
4374 eleazar 3710
                                        'action' => 'add'
3711
                                    ],
3712
                                ],
3713
                            ],
3714
                            'edit' => [
3715
                                'type' => Segment::class,
3716
                                'options' => [
3717
                                    'route' => '/edit/:id',
3718
                                    'constraints' => [
3719
                                        'id' => '[A-Za-z0-9\-]+\=*'
3720
                                    ],
3721
                                    'defaults' => [
4375 eleazar 3722
                                        'controller' => '\LeadersLinked\Controller\SurveyFormController',
4374 eleazar 3723
                                        'action' => 'edit'
3724
                                    ]
3725
                                ]
3726
                            ],
3727
                            'delete' => [
3728
                                'type' => Segment::class,
3729
                                'options' => [
3730
                                    'route' => '/delete/:id',
3731
                                    'constraints' => [
3732
                                        'id' => '[A-Za-z0-9\-]+\=*'
3733
                                    ],
3734
                                    'defaults' => [
4375 eleazar 3735
                                        'controller' => '\LeadersLinked\Controller\SurveyFormController',
4374 eleazar 3736
                                        'action' => 'delete'
3737
                                    ]
3738
                                ]
3739
                            ]
3740
                        ],
3741
                    ],
5287 eleazar 3742
                    'test' => [
3743
                        'type' => Segment::class,
3744
                        'options' => [
5884 eleazar 3745
                            'route' => '/test[/:survey_id]',
3746
                            'constraints' => [
3747
                                'survey_id' => '[A-Za-z0-9\-]+\=*'
3748
                            ],
5287 eleazar 3749
                            'defaults' => [
3750
                                'controller' => '\LeadersLinked\Controller\SurveyTestController',
3751
                                'action' => 'index',
5884 eleazar 3752
                                'survey_id' => '',
5287 eleazar 3753
                            ],
3754
                        ],
3755
                        'may_terminate' => true,
3756
                        'child_routes' => [
3757
                            'add' => [
3758
                                'type' => Segment::class,
3759
                                'options' => [
6036 eleazar 3760
                                    'route' => '/add',
5287 eleazar 3761
                                    'defaults' => [
3762
                                        'controller' => '\LeadersLinked\Controller\SurveyTestController',
5732 eleazar 3763
                                        'action' => 'add',
5287 eleazar 3764
                                    ],
3765
                                ],
3766
                            ],
6662 eleazar 3767
                            'report' => [
3768
                                'type' => Segment::class,
3769
                                'options' => [
6882 eleazar 3770
                                    'route' => '/report/:uuid',
6662 eleazar 3771
                                    'defaults' => [
3772
                                        'controller' => '\LeadersLinked\Controller\SurveyTestController',
3773
                                        'action' => 'report',
3774
                                    ],
3775
                                ],
3776
                            ],
5287 eleazar 3777
                            'delete' => [
3778
                                'type' => Segment::class,
3779
                                'options' => [
6882 eleazar 3780
                                    'route' => '/delete/:id',
5287 eleazar 3781
                                    'defaults' => [
3782
                                        'controller' => '\LeadersLinked\Controller\SurveyTestController',
3783
                                        'action' => 'delete'
3784
                                    ]
3785
                                ]
3786
                            ]
3787
                        ],
3788
                    ],
5823 eleazar 3789
                    'report' => [
3790
                        'type' => Segment::class,
3791
                        'options' => [
5911 eleazar 3792
                            'route' => '/report[/:survey_id]',
3793
                            'constraints' => [
3794
                                'survey_id' => '[A-Za-z0-9\-]+\=*'
3795
                            ],
5823 eleazar 3796
                            'defaults' => [
3797
                                'controller' => '\LeadersLinked\Controller\SurveyReportController',
3798
                                'action' => 'index',
5911 eleazar 3799
                                'survey_id' => '',
5823 eleazar 3800
                            ],
3801
                        ],
3802
                        'may_terminate' => true,
3803
                        'child_routes' => [
3804
                            'all' => [
3805
                                'type' => Segment::class,
3806
                                'options' => [
5868 eleazar 3807
                                    'route' => '/all',
5823 eleazar 3808
                                    'defaults' => [
3809
                                        'controller' => '\LeadersLinked\Controller\SurveyReportController',
5868 eleazar 3810
                                        'action' => 'all',
5823 eleazar 3811
                                    ]
3812
                                ]
3813
                            ],
6496 eleazar 3814
                            'overview' => [
3815
                                'type' => Segment::class,
3816
                                'options' => [
3817
                                    'route' => '/overview',
3818
                                    'defaults' => [
3819
                                        'controller' => '\LeadersLinked\Controller\SurveyReportController',
3820
                                        'action' => 'overview',
3821
                                    ]
3822
                                ]
3823
                            ],
7024 eleazar 3824
                            'csv' => [
3825
                                'type' => Segment::class,
3826
                                'options' => [
3827
                                    'route' => '/csv',
3828
                                    'defaults' => [
3829
                                        'controller' => '\LeadersLinked\Controller\SurveyReportController',
3830
                                        'action' => 'csv',
3831
                                    ]
3832
                                ]
3833
                            ],
5823 eleazar 3834
                        ],
3835
                    ],
1333 efrain 3836
                ]
3837
            ],
3838
 
3839
            'building-my-future' => [
3840
                'type' => Literal::class,
3841
                'options' => [
3842
                    'route' => '/building-my-future',
3843
                    'defaults' => [
3844
                        'controller' => '\LeadersLinked\Controller\UnknownController',
3845
                        'action' => 'index'
3846
                    ]
3847
                ],
3848
                'may_terminate' => true,
3849
                'child_routes' => [
3850
                ]
3851
            ],
3852
 
4588 nelberth 3853
            /* copy */
7184 nelberth 3854
 
7224 nelberth 3855
 
1333 efrain 3856
            'high-performance-teams' => [
3857
                'type' => Literal::class,
3858
                'options' => [
4591 nelberth 3859
                    'route' => '/high-performance-teams',
4588 nelberth 3860
                    'defaults' => [
4376 nelberth 3861
                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsController',
1333 efrain 3862
                        'action' => 'index'
3863
                    ]
3864
                ],
3865
                'may_terminate' => true,
3866
                'child_routes' => [
7240 nelberth 3867
                    'groups' => [
4388 nelberth 3868
                        'type' => Literal::class,
3869
                        'options' => [
7224 nelberth 3870
                            'route' => '/groups',
4388 nelberth 3871
                            'defaults' => [
7224 nelberth 3872
                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsController',
4388 nelberth 3873
                                'action' => 'index'
3874
                            ]
4411 nelberth 3875
                        ],'may_terminate' => true,
3876
                        'child_routes' => [
3877
 
3878
                            'add' => [
3879
                                'type' => Literal::class,
3880
                                'options' => [
3881
                                    'route' => '/add',
3882
                                    'defaults' => [
7224 nelberth 3883
                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsController',
4411 nelberth 3884
                                        'action' => 'add'
3885
                                    ]
3886
                                ]
3887
                            ],
3888
                            'edit' => [
3889
                                'type' => Segment::class,
3890
                                'options' => [
3891
                                    'route' => '/edit/:id',
3892
                                    'constraints' => [
3893
                                        'id' => '[A-Za-z0-9\-]+\=*'
3894
                                    ],
3895
                                    'defaults' => [
7224 nelberth 3896
                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsController',
4411 nelberth 3897
                                        'action' => 'edit'
3898
                                    ]
3899
                                ]
3900
                            ],
3901
                            'delete' => [
3902
                                'type' => Segment::class,
3903
                                'options' => [
3904
                                    'route' => '/delete/:id',
3905
                                    'constraints' => [
3906
                                        'id' => '[A-Za-z0-9\-]+\=*'
3907
                                    ],
3908
                                    'defaults' => [
7224 nelberth 3909
                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsController',
4411 nelberth 3910
                                        'action' => 'delete'
3911
                                    ]
3912
                                ]
7261 nelberth 3913
                            ],'view' => [
4509 nelberth 3914
                                'type' => Segment::class,
3915
                                'options' => [
7609 nelberth 3916
                                    'route' => '/view/:id[/topic/:topic_uuid]',
4509 nelberth 3917
                                    'constraints' => [
7579 nelberth 3918
                                        'id' => '[A-Za-z0-9\-]+\=*',
7609 nelberth 3919
                                        'topic_uuid' => '[A-Za-z0-9\-]+\=*'
4509 nelberth 3920
                                    ],
3921
                                    'defaults' => [
7308 nelberth 3922
                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewController',
4571 nelberth 3923
                                        'action' => 'index'
4509 nelberth 3924
                                    ]
7483 nelberth 3925
                                ],
3926
                                    'may_terminate' => true,
3927
                                    'child_routes' => [
3928
                                        'topic' => [
3929
                                            'type' => Literal::class,
3930
                                            'options' => [
3931
                                                'route' => '/topic',
3932
                                                'defaults' => [
7491 nelberth 3933
                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController',
7483 nelberth 3934
                                                    'action' => 'index'
3935
                                                ]
3936
                                            ],'may_terminate' => true,
3937
                                            'child_routes' => [
3938
 
3939
                                                'add' => [
3940
                                                    'type' => Literal::class,
3941
                                                    'options' => [
3942
                                                        'route' => '/add',
3943
                                                        'defaults' => [
7506 nelberth 3944
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController',
7483 nelberth 3945
                                                            'action' => 'add'
3946
                                                        ]
3947
                                                    ]
3948
                                                ],
3949
                                                'edit' => [
3950
                                                    'type' => Segment::class,
3951
                                                    'options' => [
7577 nelberth 3952
                                                        'route' => '/edit/:id_topic',
7483 nelberth 3953
                                                        'constraints' => [
7593 nelberth 3954
                                                            'id_topic' => '[A-Za-z0-9\-]+\=*'
7483 nelberth 3955
                                                        ],
3956
                                                        'defaults' => [
7491 nelberth 3957
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController',
7483 nelberth 3958
                                                            'action' => 'edit'
3959
                                                        ]
3960
                                                    ]
3961
                                                ],
3962
                                                'delete' => [
3963
                                                    'type' => Segment::class,
3964
                                                    'options' => [
7577 nelberth 3965
                                                        'route' => '/delete/:id_topic',
7483 nelberth 3966
                                                        'constraints' => [
7593 nelberth 3967
                                                            'id_topic' => '[A-Za-z0-9\-]+\=*'
7483 nelberth 3968
                                                        ],
3969
                                                        'defaults' => [
7491 nelberth 3970
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController',
7483 nelberth 3971
                                                            'action' => 'delete'
3972
                                                        ]
3973
                                                    ]
3974
                                                ]
3975
                                            ],
3976
                                        ],
3977
 
3978
                                    ],
3979
 
4411 nelberth 3980
                            ],
3981
                        ]
4388 nelberth 3982
                    ],
1333 efrain 3983
                ]
3984
            ],
7224 nelberth 3985
 
4588 nelberth 3986
 
1333 efrain 3987
            'my-trainer' => [
3988
                'type' => Literal::class,
3989
                'options' => [
3990
                    'route' => '/my-trainer',
3991
                    'defaults' => [
3992
                        'controller' => '\LeadersLinked\Controller\UnknownController',
3993
                        'action' => 'index'
3994
                    ]
3995
                ],
3996
                'may_terminate' => true,
3997
                'child_routes' => [
3998
                ]
3999
            ],
4000
 
1 www 4001
        ]
4002
    ],
4003
    'controllers' => [
4004
        'factories' => [
4005
            \LeadersLinked\Controller\AuthController::class => \LeadersLinked\Factory\Controller\AuthControllerFactory::class,
4006
            \LeadersLinked\Controller\FeedController::class => \LeadersLinked\Factory\Controller\FeedControllerFactory::class,
4007
            \LeadersLinked\Controller\FollowerController::class => \LeadersLinked\Factory\Controller\FollowerControllerFactory::class,
4008
            \LeadersLinked\Controller\JobController::class => \LeadersLinked\Factory\Controller\JobControllerFactory::class,
1469 eleazar 4009
            \LeadersLinked\Controller\RecruitmentSelectionController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionFactory::class,
1709 eleazar 4010
            \LeadersLinked\Controller\RecruitmentSelectionInterviewController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionInterviewFactory::class,
1712 eleazar 4011
            \LeadersLinked\Controller\RecruitmentSelectionInterviewFormController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionInterviewFormFactory::class,
1385 eleazar 4012
            \LeadersLinked\Controller\RecruitmentSelectionVacancyController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionVacancyFactory::class,
1459 eleazar 4013
            \LeadersLinked\Controller\RecruitmentSelectionCandidateController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionCandidateFactory::class,
1 www 4014
            \LeadersLinked\Controller\ProfileController::class => \LeadersLinked\Factory\Controller\ProfileControllerFactory::class,
4015
            \LeadersLinked\Controller\CompanyController::class => \LeadersLinked\Factory\Controller\CompanyControllerFactory::class,
4016
            \LeadersLinked\Controller\CompanySizeController::class => \LeadersLinked\Factory\Controller\CompanySizeControllerFactory::class,
1115 geraldo 4017
            \LeadersLinked\Controller\BehaviorsController::class => \LeadersLinked\Factory\Controller\BehaviorsControllerFactory::class,
1 www 4018
            \LeadersLinked\Controller\CompetencyTypeController::class => \LeadersLinked\Factory\Controller\CompetencyTypeControllerFactory::class,
4019
            \LeadersLinked\Controller\CompetencyController::class => \LeadersLinked\Factory\Controller\CompetencyControllerFactory::class,
4020
            \LeadersLinked\Controller\DegreeController::class => \LeadersLinked\Factory\Controller\DegreeControllerFactory::class,
4021
            \LeadersLinked\Controller\EmailTemplateController::class => \LeadersLinked\Factory\Controller\EmailTemplateControllerFactory::class,
4022
            \LeadersLinked\Controller\PushTemplateController::class => \LeadersLinked\Factory\Controller\PushTemplateControllerFactory::class,
4023
            \LeadersLinked\Controller\GroupTypeController::class => \LeadersLinked\Factory\Controller\GroupTypeControllerFactory::class,
4024
            \LeadersLinked\Controller\IndustryController::class => \LeadersLinked\Factory\Controller\IndustryControllerFactory::class,
4025
            \LeadersLinked\Controller\JobCategoryController::class => \LeadersLinked\Factory\Controller\JobCategoryControllerFactory::class,
28 efrain 4026
            \LeadersLinked\Controller\JobDescriptionController::class => \LeadersLinked\Factory\Controller\JobDescriptionControllerFactory::class,
1 www 4027
            \LeadersLinked\Controller\PageController::class => \LeadersLinked\Factory\Controller\PageControllerFactory::class,
67 efrain 4028
            \LeadersLinked\Controller\PositionController::class => \LeadersLinked\Factory\Controller\PositionControllerFactory::class,
1 www 4029
            \LeadersLinked\Controller\PostController::class => \LeadersLinked\Factory\Controller\PostControllerFactory::class,
4030
            \LeadersLinked\Controller\SkillController::class => \LeadersLinked\Factory\Controller\SkillControllerFactory::class,
4031
            \LeadersLinked\Controller\UserController::class => \LeadersLinked\Factory\Controller\UserControllerFactory::class,
4032
            \LeadersLinked\Controller\DashboardController::class => \LeadersLinked\Factory\Controller\DashboardControllerFactory::class,
115 efrain 4033
            \LeadersLinked\Controller\SelfEvaluationController::class => \LeadersLinked\Factory\Controller\SelfEvaluationControllerFactory::class,
4034
            \LeadersLinked\Controller\SelfEvaluationFormController::class => \LeadersLinked\Factory\Controller\SelfEvaluationFormControllerFactory::class,
1089 geraldo 4035
            \LeadersLinked\Controller\SelfEvaluationFormUserController::class => \LeadersLinked\Factory\Controller\SelfEvaluationFormUserControllerFactory::class,
247 geraldo 4036
            \LeadersLinked\Controller\SelfEvaluationReviewController::class => \LeadersLinked\Factory\Controller\SelfEvaluationReviewControllerFactory::class,
4375 eleazar 4037
            \LeadersLinked\Controller\SurveyController::class => \LeadersLinked\Factory\Controller\SurveyControllerFactory::class,
4038
            \LeadersLinked\Controller\SurveyFormController::class => \LeadersLinked\Factory\Controller\SurveyFormControllerFactory::class,
5868 eleazar 4039
            \LeadersLinked\Controller\SurveyReportController::class => \LeadersLinked\Factory\Controller\SurveyReportControllerFactory::class,
5287 eleazar 4040
            \LeadersLinked\Controller\SurveyTestController::class => \LeadersLinked\Factory\Controller\SurveyTestControllerFactory::class,
7218 eleazar 4041
            \LeadersLinked\Controller\OrganizationalClimateController::class => \LeadersLinked\Factory\Controller\OrganizationalClimateControllerFactory::class,
4042
            \LeadersLinked\Controller\OrganizationalClimateFormController::class => \LeadersLinked\Factory\Controller\OrganizationalClimateFormControllerFactory::class,
4043
            \LeadersLinked\Controller\OrganizationalClimateReportController::class => \LeadersLinked\Factory\Controller\OrganizationalClimateReportControllerFactory::class,
4044
            \LeadersLinked\Controller\OrganizationalClimateTestController::class => \LeadersLinked\Factory\Controller\OrganizationalClimateTestControllerFactory::class,
987 geraldo 4045
            \LeadersLinked\Controller\PerformanceEvaluationFormController::class => \LeadersLinked\Factory\Controller\PerformanceEvaluationFormControllerFactory::class,
1383 efrain 4046
            \LeadersLinked\Controller\PerformanceEvaluationEvaluationController::class => \LeadersLinked\Factory\Controller\PerformanceEvaluationEvaluationControllerFactory::class,
1 www 4047
            \LeadersLinked\Controller\MicrolearningController::class => \LeadersLinked\Factory\Controller\MicrolearningControllerFactory::class,
66 efrain 4048
            \LeadersLinked\Controller\MicrolearningQuizController::class => \LeadersLinked\Factory\Controller\MicrolearningQuizControllerFactory::class,
4049
            \LeadersLinked\Controller\MicrolearningQuestionController::class => \LeadersLinked\Factory\Controller\MicrolearningQuestionControllerFactory::class,
4050
            \LeadersLinked\Controller\MicrolearningAnswerController::class => \LeadersLinked\Factory\Controller\MicrolearningAnswerControllerFactory::class,
1 www 4051
            \LeadersLinked\Controller\MicrolearningTopicController::class => \LeadersLinked\Factory\Controller\MicrolearningTopicControllerFactory::class,
4052
            \LeadersLinked\Controller\MicrolearningCapsuleController::class => \LeadersLinked\Factory\Controller\MicrolearningCapsuleControllerFactory::class,
4053
            \LeadersLinked\Controller\MicrolearningSlideController::class => \LeadersLinked\Factory\Controller\MicrolearningSlideControllerFactory::class,
4054
            \LeadersLinked\Controller\MicrolearningAccessForStudentsController::class => \LeadersLinked\Factory\Controller\MicrolearningAccessForStudentsControllerFactory::class,
4055
            \LeadersLinked\Controller\MicrolearningStudentsController::class => \LeadersLinked\Factory\Controller\MicrolearningStudentsControllerFactory::class,
4056
            \LeadersLinked\Controller\MicrolearningReportsController::class => \LeadersLinked\Factory\Controller\MicrolearningReportsControllerFactory::class,
4057
            \LeadersLinked\Controller\MicrolearningExtendUserCompanyController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserCompanyControllerFactory::class,
4058
            \LeadersLinked\Controller\MicrolearningExtendUserFunctionController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserFunctionControllerFactory::class,
4059
            \LeadersLinked\Controller\MicrolearningExtendUserGroupController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserGroupControllerFactory::class,
4060
            \LeadersLinked\Controller\MicrolearningExtendUserInstitutionController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserInstitutionControllerFactory::class,
4061
            \LeadersLinked\Controller\MicrolearningExtendUserPartnerController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserPartnerControllerFactory::class,
4062
            \LeadersLinked\Controller\MicrolearningExtendUserProgramController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserProgramControllerFactory::class,
4063
            \LeadersLinked\Controller\MicrolearningExtendUserSectorController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserSectorControllerFactory::class,
4064
            \LeadersLinked\Controller\MicrolearningExtendUserStudentTypeController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserStudentTypeControllerFactory::class,
4065
            \LeadersLinked\Controller\StorageController::class => \LeadersLinked\Factory\Controller\StorageControllerFactory::class,
2232 nelberth 4066
            \LeadersLinked\Controller\PlanningObjectivesAndGoalsController::class => \LeadersLinked\Factory\Controller\PlanningObjectivesAndGoalsControllerFactory::class,
2228 nelberth 4067
            \LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController::class => \LeadersLinked\Factory\Controller\PlanningObjectivesAndGoalsObjectivesControllerFactory::class,
2327 nelberth 4068
            \LeadersLinked\Controller\PlanningObjectivesAndGoalsGoalsController::class => \LeadersLinked\Factory\Controller\PlanningObjectivesAndGoalsGoalsControllerFactory::class,
2517 nelberth 4069
            \LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController::class => \LeadersLinked\Factory\Controller\PlanningObjectivesAndGoalsTaskControllerFactory::class,
4377 nelberth 4070
            \LeadersLinked\Controller\HighPerformanceTeamsController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsControllerFactory::class,
7224 nelberth 4071
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsControllerFactory::class,
7308 nelberth 4072
 
4073
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewControllerFactory::class,
7494 nelberth 4074
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewTopicControllerFactory::class,
1333 efrain 4075
 
4076
 
1666 nelberth 4077
 
1333 efrain 4078
            \LeadersLinked\Controller\UnknownController::class => \LeadersLinked\Factory\Controller\UnknownControllerFactory::class,
66 efrain 4079
            \LeadersLinked\Controller\TestController::class => \LeadersLinked\Factory\Controller\TestControllerFactory::class,
1 www 4080
        ],
4081
        'aliases' => [
4082
            '\LeadersLinked\Controller\AuthController' => \LeadersLinked\Controller\AuthController::class,
4083
            '\LeadersLinked\Controller\FollowerController' => \LeadersLinked\Controller\FollowerController::class,
4084
            '\LeadersLinked\Controller\FeedController' => \LeadersLinked\Controller\FeedController::class,
4085
            '\LeadersLinked\Controller\JobController' => \LeadersLinked\Controller\JobController::class,
1343 eleazar 4086
            '\LeadersLinked\Controller\RecruitmentSelectionController' => \LeadersLinked\Controller\RecruitmentSelectionController::class,
1385 eleazar 4087
            '\LeadersLinked\Controller\RecruitmentSelectionVacancyController' => \LeadersLinked\Controller\RecruitmentSelectionVacancyController::class,
1459 eleazar 4088
            '\LeadersLinked\Controller\RecruitmentSelectionCandidateController' => \LeadersLinked\Controller\RecruitmentSelectionCandidateController::class,
1712 eleazar 4089
            '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController' => \LeadersLinked\Controller\RecruitmentSelectionInterviewFormController::class,
1 www 4090
            '\LeadersLinked\Controller\ProfileController' => \LeadersLinked\Controller\ProfileController::class,
4091
            '\LeadersLinked\Controller\CompanyController' => \LeadersLinked\Controller\CompanyController::class,
4092
            '\LeadersLinked\Controller\CompanySizeController' => \LeadersLinked\Controller\CompanySizeController::class,
4093
            '\LeadersLinked\Controller\CompetencyTypeController' => \LeadersLinked\Controller\CompetencyTypeController::class,
1102 geraldo 4094
            '\LeadersLinked\Controller\BehaviorsController' => \LeadersLinked\Controller\BehaviorsController::class,
1 www 4095
            '\LeadersLinked\Controller\CompetencyController' => \LeadersLinked\Controller\CompetencyController::class,
4096
            '\LeadersLinked\Controller\DegreeController' => \LeadersLinked\Controller\DegreeController::class,
4097
            '\LeadersLinked\Controller\EmailTemplateController' => \LeadersLinked\Controller\EmailTemplateController::class,
1089 geraldo 4098
            '\LeadersLinked\Controller\PushTemplateController' => \LeadersLinked\Controller\PushTemplateController::class,
1 www 4099
            '\LeadersLinked\Controller\GroupTypeController' => \LeadersLinked\Controller\GroupTypeController::class,
4100
            '\LeadersLinked\Controller\IndustryController' => \LeadersLinked\Controller\IndustryController::class,
4101
            '\LeadersLinked\Controller\JobCategoryController' => \LeadersLinked\Controller\JobCategoryController::class,
66 efrain 4102
            '\LeadersLinked\Controller\JobDescriptionController' => \LeadersLinked\Controller\JobDescriptionController::class,
1 www 4103
            '\LeadersLinked\Controller\PageController' => \LeadersLinked\Controller\PageController::class,
67 efrain 4104
            '\LeadersLinked\Controller\PositionController' => \LeadersLinked\Controller\PositionController::class,
1 www 4105
            '\LeadersLinked\Controller\PostController' => \LeadersLinked\Controller\PostController::class,
4106
            '\LeadersLinked\Controller\SkillController' => \LeadersLinked\Controller\SkillController::class,
4107
            '\LeadersLinked\Controller\UserController' => \LeadersLinked\Controller\UserController::class,
4108
            '\LeadersLinked\Controller\DashboardController' => \LeadersLinked\Controller\DashboardController::class,
115 efrain 4109
            '\LeadersLinked\Controller\SelfEvaluationController' => \LeadersLinked\Controller\SelfEvaluationController::class,
4110
            '\LeadersLinked\Controller\SelfEvaluationFormController' => \LeadersLinked\Controller\SelfEvaluationFormController::class,
4111
            '\LeadersLinked\Controller\SelfEvaluationFormUserController' => \LeadersLinked\Controller\SelfEvaluationFormUserController::class,
247 geraldo 4112
            '\LeadersLinked\Controller\SelfEvaluationReviewController' => \LeadersLinked\Controller\SelfEvaluationReviewController::class,
4375 eleazar 4113
            '\LeadersLinked\Controller\SurveyController' => \LeadersLinked\Controller\SurveyController::class,
4114
            '\LeadersLinked\Controller\SurveyFormController' => \LeadersLinked\Controller\SurveyFormController::class,
5868 eleazar 4115
            '\LeadersLinked\Controller\SurveyReportController' => \LeadersLinked\Controller\SurveyReportController::class,
5287 eleazar 4116
            '\LeadersLinked\Controller\SurveyTestController' => \LeadersLinked\Controller\SurveyTestController::class,
7218 eleazar 4117
            '\LeadersLinked\Controller\OrganizationalClimateController' => \LeadersLinked\Controller\OrganizationalClimateController::class,
4118
            '\LeadersLinked\Controller\OrganizationalClimateFormController' => \LeadersLinked\Controller\OrganizationalClimateFormController::class,
4119
            '\LeadersLinked\Controller\OrganizationalClimateReportController' => \LeadersLinked\Controller\OrganizationalClimateReportController::class,
4120
            '\LeadersLinked\Controller\OrganizationalClimateTestController' => \LeadersLinked\Controller\OrganizationalClimateTestController::class,
982 geraldo 4121
            '\LeadersLinked\Controller\PerformanceEvaluationFormController' => \LeadersLinked\Controller\PerformanceEvaluationFormController::class,
1383 efrain 4122
            '\LeadersLinked\Controller\PerformanceEvaluationEvaluationController' => \LeadersLinked\Controller\PerformanceEvaluationEvaluationController::class,
1 www 4123
            '\LeadersLinked\Controller\MicrolearningController' => \LeadersLinked\Controller\MicrolearningController::class,
66 efrain 4124
            '\LeadersLinked\Controller\MicrolearningQuizController' => \LeadersLinked\Controller\MicrolearningQuizController::class,
4125
            '\LeadersLinked\Controller\MicrolearningQuestionController' => \LeadersLinked\Controller\MicrolearningQuestionController::class,
4126
            '\LeadersLinked\Controller\MicrolearningAnswerController' => \LeadersLinked\Controller\MicrolearningAnswerController::class,
1 www 4127
            '\LeadersLinked\Controller\MicrolearningTopicController' => \LeadersLinked\Controller\MicrolearningTopicController::class,
4128
            '\LeadersLinked\Controller\MicrolearningCapsuleController' => \LeadersLinked\Controller\MicrolearningCapsuleController::class,
4129
            '\LeadersLinked\Controller\MicrolearningSlideController' => \LeadersLinked\Controller\MicrolearningSlideController::class,
4130
            '\LeadersLinked\Controller\MicrolearningStudentsController' => \LeadersLinked\Controller\MicrolearningStudentsController::class,
4131
            '\LeadersLinked\Controller\MicrolearningAccessForStudentsController' => \LeadersLinked\Controller\MicrolearningAccessForStudentsController::class,
4132
            '\LeadersLinked\Controller\MicrolearningReportsController' => \LeadersLinked\Controller\MicrolearningReportsController::class,
4133
            '\LeadersLinked\Controller\MicrolearningExtendUserCompanyController' => \LeadersLinked\Controller\MicrolearningExtendUserCompanyController::class,
4134
            '\LeadersLinked\Controller\MicrolearningExtendUserFunctionController' => \LeadersLinked\Controller\MicrolearningExtendUserFunctionController::class,
4135
            '\LeadersLinked\Controller\MicrolearningExtendUserGroupController' => \LeadersLinked\Controller\MicrolearningExtendUserGroupController::class,
4136
            '\LeadersLinked\Controller\MicrolearningExtendUserInstitutionController' => \LeadersLinked\Controller\MicrolearningExtendUserInstitutionController::class,
4137
            '\LeadersLinked\Controller\MicrolearningExtendUserPartnerController' => \LeadersLinked\Controller\MicrolearningExtendUserPartnerController::class,
4138
            '\LeadersLinked\Controller\MicrolearningExtendUserProgramController' => \LeadersLinked\Controller\MicrolearningExtendUserProgramController::class,
4139
            '\LeadersLinked\Controller\MicrolearningExtendUserSectorController' => \LeadersLinked\Controller\MicrolearningExtendUserSectorController::class,
4140
            '\LeadersLinked\Controller\MicrolearningExtendUserStudentTypeController' => \LeadersLinked\Controller\MicrolearningExtendUserStudentTypeController::class,
4141
            '\LeadersLinked\Controller\StorageController' => \LeadersLinked\Controller\StorageController::class,
2232 nelberth 4142
            '\LeadersLinked\Controller\PlanningObjectivesAndGoalsController' => \LeadersLinked\Controller\PlanningObjectivesAndGoalsController::class,
2228 nelberth 4143
            '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController' => \LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController::class,
2517 nelberth 4144
            '\LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController' => \LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController::class,
4377 nelberth 4145
            '\LeadersLinked\Controller\PlanningObjectivesAndGoalsGoalsController' => \LeadersLinked\Controller\PlanningObjectivesAndGoalsGoalsController::class,
4146
 
4147
            '\LeadersLinked\Controller\HighPerformanceTeamsController' => \LeadersLinked\Controller\HighPerformanceTeamsController::class,
7224 nelberth 4148
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsController::class,
7308 nelberth 4149
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewController::class,
7494 nelberth 4150
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController::class,
66 efrain 4151
            '\LeadersLinked\Controller\TestController' => \LeadersLinked\Controller\TestController::class,
1333 efrain 4152
            '\LeadersLinked\Controller\UnknownController' => \LeadersLinked\Controller\UnknownController::class,
1 www 4153
        ]
4154
    ],
4155
    'laminas-cli' => [
4156
        'commands' => [
1089 geraldo 4157
        ]
1 www 4158
    ],
4159
    'service_manager' => [
4160
        'abstract_factories' => [
4161
            \Laminas\Db\Adapter\AdapterAbstractServiceFactory::class
4162
        ],
4163
        'factories' => [
4164
            'RenderingStrategy' => function ($container) {
4165
                $translator = $container->get('MvcTranslator');
4166
                return new \LeadersLinked\View\RenderingStrategy($translator);
4167
            },
4168
            'menuNavigation' => \LeadersLinked\Navigation\MenuNavigation::class,
4169
            'footerNavigation' => \LeadersLinked\Navigation\FooterNavigation::class,
1089 geraldo 4170
        ],
4171
        'aliases' => [// 'leaders-linked-storage' => \LeadersLinked\Service\StorageService::class
1 www 4172
        ]
4173
    ],
4174
    'view_helpers' => [
4175
        'factories' => [
4176
            \LeadersLinked\Helper\CurrentUserHelper::class => \LeadersLinked\Factory\Helper\CurrentUserHelperFactory::class,
4600 nelberth 4177
 
1 www 4178
        ],
4179
        'invokables' => [
4180
            'menuHelper' => \LeadersLinked\Helper\MenuHelper::class,
4181
        ],
4182
        'aliases' => [
4183
            'currentUserHelper' => \LeadersLinked\Helper\CurrentUserHelper::class,
4600 nelberth 4184
 
1 www 4185
        ]
4186
    ],
4187
    'controller_plugins' => [
4188
        'invokables' => [],
4189
        'factories' => [
4190
            \LeadersLinked\Plugin\CurrentUserPlugin::class => \LeadersLinked\Factory\Plugin\CurrentUserPluginFactory::class
4191
        ],
4192
        'aliases' => [
4193
            'currentUserPlugin' => \LeadersLinked\Plugin\CurrentUserPlugin::class
4194
        ]
4195
    ],
4196
    'view_manager' => [
4197
        'display_not_found_reason' => true,
4198
        'display_exceptions' => true,
4199
        'doctype' => 'HTML5',
4200
        'not_found_template' => 'error/404',
4201
        'exception_template' => 'error/index',
4202
        'template_map' => [
4203
            'layout/layout' => __DIR__ . '/../view/layout/layout.phtml',
4204
            'error/404' => __DIR__ . '/../view/error/404.phtml',
4205
            'error/index' => __DIR__ . '/../view/error/index.phtml'
4206
        ],
4207
        'template_path_stack' => [
4208
            __DIR__ . '/../view'
4209
        ],
4210
        'strategies' => [
4211
            'ViewJsonStrategy',
4212
            'RenderingStrategy'
4213
        ]
4214
    ]
4215
];
4216