Proyectos de Subversion LeadersLinked - Backend

Rev

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