Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 8054 | Rev 8176 | 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' => [
7947 eleazar 2157
                                'type' => Segment::class,
1383 efrain 2158
                                'options' => [
7907 eleazar 2159
                                    'route' => '/self/:id',
2160
                                    'constraints' => [
2161
                                        'id' => '[A-Za-z0-9\-]+\=*',
2162
                                    ],
1383 efrain 2163
                                    'defaults' => [
2164
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationEvaluationController',
7902 eleazar 2165
                                        'action' => 'self'
1383 efrain 2166
                                    ]
2167
                                ]
2168
                            ],
7902 eleazar 2169
                            'both' => [
7947 eleazar 2170
                                'type' => Segment::class,
946 geraldo 2171
                                'options' => [
7907 eleazar 2172
                                    'route' => '/both/:id',
2173
                                    'constraints' => [
2174
                                        'id' => '[A-Za-z0-9\-]+\=*',
2175
                                    ],
946 geraldo 2176
                                    'defaults' => [
1383 efrain 2177
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationEvaluationController',
7902 eleazar 2178
                                        'action' => 'both'
946 geraldo 2179
                                    ]
2180
                                ]
1383 efrain 2181
                            ],
7902 eleazar 2182
                            'superviser' => [
7947 eleazar 2183
                                'type' => Segment::class,
7902 eleazar 2184
                                'options' => [
7907 eleazar 2185
                                    'route' => '/superviser/:id',
2186
                                    'constraints' => [
2187
                                        'id' => '[A-Za-z0-9\-]+\=*',
2188
                                    ],
7902 eleazar 2189
                                    'defaults' => [
2190
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationEvaluationController',
2191
                                        'action' => 'superviser'
2192
                                    ]
2193
                                ]
2194
                            ],
8068 eleazar 2195
                            'user-by-email' => [
2196
                                'type' => Literal::class,
2197
                                'options' => [
2198
                                    'route' => '/user-by-email',
2199
                                    'defaults' => [
2200
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
2201
                                        'action' => 'email'
2202
                                    ]
2203
                                ]
2204
                            ],
946 geraldo 2205
                        ]
2206
                    ],
2207
                ]
1089 geraldo 2208
            ],
2209
            /*             * * END PERFORMANCE EVALUATION ** */
2210
 
2211
            /*             * * START SETTINGS ** */
1 www 2212
            'settings' => [
2213
                'type' => Literal::class,
2214
                'options' => [
2215
                    'route' => '/settings',
2216
                    'defaults' => [
2217
                        'controller' => '\LeadersLinked\Controller\DashboardController',
2218
                        'action' => 'index'
2219
                    ]
2220
                ],
2221
                'may_terminate' => true,
2222
                'child_routes' => [
2223
                    'company-sizes' => [
2224
                        'type' => Literal::class,
2225
                        'options' => [
2226
                            'route' => '/company-sizes',
2227
                            'defaults' => [
2228
                                'controller' => '\LeadersLinked\Controller\CompanySizeController',
2229
                                'action' => 'index'
2230
                            ]
2231
                        ],
2232
                        'may_terminate' => true,
2233
                        'child_routes' => [
2234
                            'add' => [
2235
                                'type' => Literal::class,
2236
                                'options' => [
2237
                                    'route' => '/add',
2238
                                    'defaults' => [
2239
                                        'controller' => '\LeadersLinked\Controller\CompanySizeController',
2240
                                        'action' => 'add'
2241
                                    ]
2242
                                ]
2243
                            ],
2244
                            'edit' => [
2245
                                'type' => Segment::class,
2246
                                'options' => [
2247
                                    'route' => '/edit/:id',
2248
                                    'constraints' => [
2249
                                        'id' => '[A-Za-z0-9\-]+\=*'
2250
                                    ],
2251
                                    'defaults' => [
2252
                                        'controller' => '\LeadersLinked\Controller\CompanySizeController',
2253
                                        'action' => 'edit'
2254
                                    ]
2255
                                ]
2256
                            ],
2257
                            'delete' => [
2258
                                'type' => Segment::class,
2259
                                'options' => [
2260
                                    'route' => '/delete/:id',
2261
                                    'constraints' => [
2262
                                        'id' => '[A-Za-z0-9\-]+\=*'
2263
                                    ],
2264
                                    'defaults' => [
2265
                                        'controller' => '\LeadersLinked\Controller\CompanySizeController',
2266
                                        'action' => 'delete'
2267
                                    ]
2268
                                ]
2269
                            ]
2270
                        ]
2271
                    ],
2272
                    'competency-types' => [
2273
                        'type' => Literal::class,
2274
                        'options' => [
2275
                            'route' => '/competency-types',
2276
                            'defaults' => [
2277
                                'controller' => '\LeadersLinked\Controller\CompetencyTypeController',
2278
                                'action' => 'index'
2279
                            ]
2280
                        ],
2281
                        'may_terminate' => true,
2282
                        'child_routes' => [
2283
                            'add' => [
2284
                                'type' => Literal::class,
2285
                                'options' => [
2286
                                    'route' => '/add',
2287
                                    'defaults' => [
2288
                                        'controller' => '\LeadersLinked\Controller\CompetencyTypeController',
2289
                                        'action' => 'add'
2290
                                    ]
2291
                                ]
2292
                            ],
2293
                            'edit' => [
2294
                                'type' => Segment::class,
2295
                                'options' => [
2296
                                    'route' => '/edit/:id',
2297
                                    'constraints' => [
2298
                                        'id' => '[A-Za-z0-9\-]+\=*'
2299
                                    ],
2300
                                    'defaults' => [
2301
                                        'controller' => '\LeadersLinked\Controller\CompetencyTypeController',
2302
                                        'action' => 'edit'
2303
                                    ]
2304
                                ]
2305
                            ],
2306
                            'delete' => [
2307
                                'type' => Segment::class,
2308
                                'options' => [
2309
                                    'route' => '/delete/:id',
2310
                                    'constraints' => [
2311
                                        'id' => '[A-Za-z0-9\-]+\=*'
2312
                                    ],
2313
                                    'defaults' => [
2314
                                        'controller' => '\LeadersLinked\Controller\CompetencyTypeController',
2315
                                        'action' => 'delete'
2316
                                    ]
2317
                                ]
28 efrain 2318
                            ],
2319
                            'import' => [
2320
                                'type' => Literal::class,
2321
                                'options' => [
2322
                                    'route' => '/import',
2323
                                    'defaults' => [
2324
                                        'controller' => '\LeadersLinked\Controller\CompetencyTypeController',
2325
                                        'action' => 'import'
2326
                                    ]
2327
                                ]
2328
                            ],
1 www 2329
                        ]
2330
                    ],
1104 geraldo 2331
                    'behaviors' => [
2332
                        'type' => Literal::class,
2333
                        'options' => [
2334
                            'route' => '/behaviors',
2335
                            'defaults' => [
2336
                                'controller' => '\LeadersLinked\Controller\BehaviorsController',
2337
                                'action' => 'index'
2338
                            ]
2339
                        ],
2340
                        'may_terminate' => true,
2341
                        'child_routes' => [
2342
                            'add' => [
2343
                                'type' => Literal::class,
2344
                                'options' => [
2345
                                    'route' => '/add',
2346
                                    'defaults' => [
2347
                                        'controller' => '\LeadersLinked\Controller\BehaviorsController',
2348
                                        'action' => 'add'
2349
                                    ]
2350
                                ]
1115 geraldo 2351
                            ],
2352
                            'edit' => [
2353
                                'type' => Segment::class,
2354
                                'options' => [
2355
                                    'route' => '/edit/:id',
2356
                                    'constraints' => [
2357
                                        'id' => '[A-Za-z0-9\-]+\=*'
2358
                                    ],
2359
                                    'defaults' => [
2360
                                        'controller' => '\LeadersLinked\Controller\BehaviorsController',
2361
                                        'action' => 'edit'
2362
                                    ]
2363
                                ]
2364
                            ],
1104 geraldo 2365
                        ]
2366
                    ],
1 www 2367
                    'competencies' => [
2368
                        'type' => Literal::class,
2369
                        'options' => [
2370
                            'route' => '/competencies',
2371
                            'defaults' => [
2372
                                'controller' => '\LeadersLinked\Controller\CompetencyController',
2373
                                'action' => 'index'
2374
                            ]
2375
                        ],
2376
                        'may_terminate' => true,
2377
                        'child_routes' => [
2378
                            'add' => [
2379
                                'type' => Literal::class,
2380
                                'options' => [
2381
                                    'route' => '/add',
2382
                                    'defaults' => [
2383
                                        'controller' => '\LeadersLinked\Controller\CompetencyController',
2384
                                        'action' => 'add'
2385
                                    ]
2386
                                ]
2387
                            ],
2388
                            'edit' => [
2389
                                'type' => Segment::class,
2390
                                'options' => [
2391
                                    'route' => '/edit/:id',
2392
                                    'constraints' => [
2393
                                        'id' => '[A-Za-z0-9\-]+\=*'
2394
                                    ],
2395
                                    'defaults' => [
2396
                                        'controller' => '\LeadersLinked\Controller\CompetencyController',
2397
                                        'action' => 'edit'
2398
                                    ]
2399
                                ]
2400
                            ],
2401
                            'delete' => [
2402
                                'type' => Segment::class,
2403
                                'options' => [
2404
                                    'route' => '/delete/:id',
2405
                                    'constraints' => [
2406
                                        'id' => '[A-Za-z0-9\-]+\=*'
2407
                                    ],
2408
                                    'defaults' => [
2409
                                        'controller' => '\LeadersLinked\Controller\CompetencyController',
2410
                                        'action' => 'delete'
2411
                                    ]
2412
                                ]
28 efrain 2413
                            ],
2414
                            'import' => [
2415
                                'type' => Literal::class,
2416
                                'options' => [
2417
                                    'route' => '/import',
2418
                                    'defaults' => [
2419
                                        'controller' => '\LeadersLinked\Controller\CompetencyController',
2420
                                        'action' => 'import'
2421
                                    ]
2422
                                ]
2423
                            ],
1 www 2424
                        ]
2425
                    ],
2426
                    'degrees' => [
2427
                        'type' => Literal::class,
2428
                        'options' => [
2429
                            'route' => '/degrees',
2430
                            'defaults' => [
2431
                                'controller' => '\LeadersLinked\Controller\DegreeController',
2432
                                'action' => 'index'
2433
                            ]
2434
                        ],
2435
                        'may_terminate' => true,
2436
                        'child_routes' => [
2437
                            'add' => [
2438
                                'type' => Literal::class,
2439
                                'options' => [
2440
                                    'route' => '/add',
2441
                                    'defaults' => [
2442
                                        'controller' => '\LeadersLinked\Controller\DegreeController',
2443
                                        'action' => 'add'
2444
                                    ]
2445
                                ]
2446
                            ],
2447
                            'edit' => [
2448
                                'type' => Segment::class,
2449
                                'options' => [
2450
                                    'route' => '/edit/:id',
2451
                                    'constraints' => [
2452
                                        'id' => '[A-Za-z0-9\-]+\=*'
2453
                                    ],
2454
                                    'defaults' => [
2455
                                        'controller' => '\LeadersLinked\Controller\DegreeController',
2456
                                        'action' => 'edit'
2457
                                    ]
2458
                                ]
2459
                            ],
2460
                            'delete' => [
2461
                                'type' => Segment::class,
2462
                                'options' => [
2463
                                    'route' => '/delete/:id',
2464
                                    'constraints' => [
2465
                                        'id' => '[A-Za-z0-9\-]+\=*'
2466
                                    ],
2467
                                    'defaults' => [
2468
                                        'controller' => '\LeadersLinked\Controller\DegreeController',
2469
                                        'action' => 'delete'
2470
                                    ]
2471
                                ]
2472
                            ]
2473
                        ]
2474
                    ],
2475
                    'group-types' => [
2476
                        'type' => Literal::class,
2477
                        'options' => [
2478
                            'route' => '/competency-types',
2479
                            'defaults' => [
2480
                                'controller' => '\LeadersLinked\Controller\GroupTypeController',
2481
                                'action' => 'index'
2482
                            ]
2483
                        ],
2484
                        'may_terminate' => true,
2485
                        'child_routes' => [
2486
                            'add' => [
2487
                                'type' => Literal::class,
2488
                                'options' => [
2489
                                    'route' => '/add',
2490
                                    'defaults' => [
2491
                                        'controller' => '\LeadersLinked\Controller\GroupTypeController',
2492
                                        'action' => 'add'
2493
                                    ]
2494
                                ]
2495
                            ],
2496
                            'edit' => [
2497
                                'type' => Segment::class,
2498
                                'options' => [
2499
                                    'route' => '/edit/:id',
2500
                                    'constraints' => [
2501
                                        'id' => '[A-Za-z0-9\-]+\=*'
2502
                                    ],
2503
                                    'defaults' => [
2504
                                        'controller' => '\LeadersLinked\Controller\GroupTypeController',
2505
                                        'action' => 'edit'
2506
                                    ]
2507
                                ]
2508
                            ],
2509
                            'delete' => [
2510
                                'type' => Segment::class,
2511
                                'options' => [
2512
                                    'route' => '/delete/:id',
2513
                                    'constraints' => [
2514
                                        'id' => '[A-Za-z0-9\-]+\=*'
2515
                                    ],
2516
                                    'defaults' => [
2517
                                        'controller' => '\LeadersLinked\Controller\GroupTypeController',
2518
                                        'action' => 'delete'
2519
                                    ]
2520
                                ]
2521
                            ]
2522
                        ]
2523
                    ],
2524
                    'industries' => [
2525
                        'type' => Literal::class,
2526
                        'options' => [
2527
                            'route' => '/industries',
2528
                            'defaults' => [
2529
                                'controller' => '\LeadersLinked\Controller\IndustryController',
2530
                                'action' => 'index'
2531
                            ]
2532
                        ],
2533
                        'may_terminate' => true,
2534
                        'child_routes' => [
2535
                            'add' => [
2536
                                'type' => Literal::class,
2537
                                'options' => [
2538
                                    'route' => '/add',
2539
                                    'defaults' => [
2540
                                        'controller' => '\LeadersLinked\Controller\IndustryController',
2541
                                        'action' => 'add'
2542
                                    ]
2543
                                ]
2544
                            ],
2545
                            'edit' => [
2546
                                'type' => Segment::class,
2547
                                'options' => [
2548
                                    'route' => '/edit/:id',
2549
                                    'constraints' => [
2550
                                        'id' => '[A-Za-z0-9\-]+\=*'
2551
                                    ],
2552
                                    'defaults' => [
2553
                                        'controller' => '\LeadersLinked\Controller\IndustryController',
2554
                                        'action' => 'edit'
2555
                                    ]
2556
                                ]
2557
                            ],
2558
                            'delete' => [
2559
                                'type' => Segment::class,
2560
                                'options' => [
2561
                                    'route' => '/delete/:id',
2562
                                    'constraints' => [
2563
                                        'id' => '[A-Za-z0-9\-]+\=*'
2564
                                    ],
2565
                                    'defaults' => [
2566
                                        'controller' => '\LeadersLinked\Controller\IndustryController',
2567
                                        'action' => 'delete'
2568
                                    ]
2569
                                ]
2570
                            ]
2571
                        ]
2572
                    ],
2573
                    'group-types' => [
2574
                        'type' => Literal::class,
2575
                        'options' => [
2576
                            'route' => '/group-types',
2577
                            'defaults' => [
2578
                                'controller' => '\LeadersLinked\Controller\GroupTypeController',
2579
                                'action' => 'index'
2580
                            ]
2581
                        ],
2582
                        'may_terminate' => true,
2583
                        'child_routes' => [
2584
                            'add' => [
2585
                                'type' => Literal::class,
2586
                                'options' => [
2587
                                    'route' => '/add',
2588
                                    'defaults' => [
2589
                                        'controller' => '\LeadersLinked\Controller\GroupTypeController',
2590
                                        'action' => 'add'
2591
                                    ]
2592
                                ]
2593
                            ],
2594
                            'edit' => [
2595
                                'type' => Segment::class,
2596
                                'options' => [
2597
                                    'route' => '/edit/:id',
2598
                                    'constraints' => [
2599
                                        'id' => '[A-Za-z0-9\-]+\=*'
2600
                                    ],
2601
                                    'defaults' => [
2602
                                        'controller' => '\LeadersLinked\Controller\GroupTypeController',
2603
                                        'action' => 'edit'
2604
                                    ]
2605
                                ]
2606
                            ],
2607
                            'delete' => [
2608
                                'type' => Segment::class,
2609
                                'options' => [
2610
                                    'route' => '/delete/:id',
2611
                                    'constraints' => [
2612
                                        'id' => '[A-Za-z0-9\-]+\=*'
2613
                                    ],
2614
                                    'defaults' => [
2615
                                        'controller' => '\LeadersLinked\Controller\GroupTypeController',
2616
                                        'action' => 'delete'
2617
                                    ]
2618
                                ]
2619
                            ]
2620
                        ]
2621
                    ],
2622
                    'job-categories' => [
2623
                        'type' => Literal::class,
2624
                        'options' => [
2625
                            'route' => '/job-categories',
2626
                            'defaults' => [
2627
                                'controller' => '\LeadersLinked\Controller\JobCategoryController',
2628
                                'action' => 'index'
2629
                            ]
2630
                        ],
2631
                        'may_terminate' => true,
2632
                        'child_routes' => [
2633
                            'add' => [
2634
                                'type' => Literal::class,
2635
                                'options' => [
2636
                                    'route' => '/add',
2637
                                    'defaults' => [
2638
                                        'controller' => '\LeadersLinked\Controller\JobCategoryController',
2639
                                        'action' => 'add'
2640
                                    ]
2641
                                ]
2642
                            ],
2643
                            'edit' => [
2644
                                'type' => Segment::class,
2645
                                'options' => [
2646
                                    'route' => '/edit/:id',
2647
                                    'constraints' => [
2648
                                        'id' => '[A-Za-z0-9\-]+\=*'
2649
                                    ],
2650
                                    'defaults' => [
2651
                                        'controller' => '\LeadersLinked\Controller\JobCategoryController',
2652
                                        'action' => 'edit'
2653
                                    ]
2654
                                ]
2655
                            ],
2656
                            'delete' => [
2657
                                'type' => Segment::class,
2658
                                'options' => [
2659
                                    'route' => '/delete/:id',
2660
                                    'constraints' => [
2661
                                        'id' => '[A-Za-z0-9\-]+\=*'
2662
                                    ],
2663
                                    'defaults' => [
2664
                                        'controller' => '\LeadersLinked\Controller\JobCategoryController',
2665
                                        'action' => 'delete'
2666
                                    ]
2667
                                ]
2668
                            ]
2669
                        ]
2670
                    ],
28 efrain 2671
                    'jobs-description' => [
2672
                        'type' => Literal::class,
2673
                        'options' => [
2674
                            'route' => '/jobs-description',
2675
                            'defaults' => [
2676
                                'controller' => '\LeadersLinked\Controller\JobDescriptionController',
2677
                                'action' => 'index'
2678
                            ]
2679
                        ],
2680
                        'may_terminate' => true,
2681
                        'child_routes' => [
2682
                            'add' => [
2683
                                'type' => Literal::class,
2684
                                'options' => [
2685
                                    'route' => '/add',
2686
                                    'defaults' => [
2687
                                        'controller' => '\LeadersLinked\Controller\JobDescriptionController',
2688
                                        'action' => 'add'
2689
                                    ]
2690
                                ]
2691
                            ],
2692
                            'edit' => [
2693
                                'type' => Segment::class,
2694
                                'options' => [
2695
                                    'route' => '/edit/:id',
2696
                                    'constraints' => [
2697
                                        'id' => '[A-Za-z0-9\-]+\=*'
2698
                                    ],
2699
                                    'defaults' => [
2700
                                        'controller' => '\LeadersLinked\Controller\JobDescriptionController',
2701
                                        'action' => 'edit'
2702
                                    ]
2703
                                ]
2704
                            ],
2705
                            'delete' => [
2706
                                'type' => Segment::class,
2707
                                'options' => [
2708
                                    'route' => '/delete/:id',
2709
                                    'constraints' => [
2710
                                        'id' => '[A-Za-z0-9\-]+\=*'
2711
                                    ],
2712
                                    'defaults' => [
2713
                                        'controller' => '\LeadersLinked\Controller\JobDescriptionController',
2714
                                        'action' => 'delete'
2715
                                    ]
2716
                                ]
559 geraldo 2717
                            ],
2718
                            'report' => [
2719
                                'type' => Segment::class,
2720
                                'options' => [
2721
                                    'route' => '/report/:id',
2722
                                    'constraints' => [
2723
                                        'id' => '[A-Za-z0-9\-]+\=*'
2724
                                    ],
2725
                                    'defaults' => [
2726
                                        'controller' => '\LeadersLinked\Controller\JobDescriptionController',
2727
                                        'action' => 'report'
2728
                                    ]
2729
                                ]
2730
                            ],
846 geraldo 2731
                            'import' => [
2732
                                'type' => Literal::class,
2733
                                'options' => [
2734
                                    'route' => '/import',
2735
                                    'defaults' => [
2736
                                        'controller' => '\LeadersLinked\Controller\JobDescriptionController',
2737
                                        'action' => 'import'
2738
                                    ]
2739
                                ]
2740
                            ],
28 efrain 2741
                        ]
2742
                    ],
1 www 2743
                    'email-templates' => [
2744
                        'type' => Literal::class,
2745
                        'options' => [
2746
                            'route' => '/email-templates',
2747
                            'defaults' => [
2748
                                'controller' => '\LeadersLinked\Controller\EmailTemplateController',
2749
                                'action' => 'index'
2750
                            ]
2751
                        ],
2752
                        'may_terminate' => true,
2753
                        'child_routes' => [
2754
                            'edit' => [
2755
                                'type' => Segment::class,
2756
                                'options' => [
2757
                                    'route' => '/edit/:id',
2758
                                    'constraints' => [
2759
                                        'id' => '[A-Za-z0-9\-]+\=*'
2760
                                    ],
2761
                                    'defaults' => [
2762
                                        'controller' => '\LeadersLinked\Controller\EmailTemplateController',
2763
                                        'action' => 'edit'
2764
                                    ]
2765
                                ]
2766
                            ],
2767
                        ]
2768
                    ],
67 efrain 2769
                    'positions' => [
2770
                        'type' => Literal::class,
2771
                        'options' => [
2772
                            'route' => '/positions',
2773
                            'defaults' => [
2774
                                'controller' => '\LeadersLinked\Controller\PositionController',
2775
                                'action' => 'index'
2776
                            ]
2777
                        ],
2778
                        'may_terminate' => true,
2779
                        'child_routes' => [
2780
                            'add' => [
2781
                                'type' => Literal::class,
2782
                                'options' => [
2783
                                    'route' => '/add',
2784
                                    'defaults' => [
2785
                                        'controller' => '\LeadersLinked\Controller\PositionController',
2786
                                        'action' => 'add'
2787
                                    ]
2788
                                ]
2789
                            ],
2790
                            'edit' => [
2791
                                'type' => Segment::class,
2792
                                'options' => [
2793
                                    'route' => '/edit/:id',
2794
                                    'constraints' => [
2795
                                        'id' => '[A-Za-z0-9\-]+\=*'
2796
                                    ],
2797
                                    'defaults' => [
2798
                                        'controller' => '\LeadersLinked\Controller\PositionController',
2799
                                        'action' => 'edit'
2800
                                    ]
2801
                                ]
2802
                            ],
2803
                            'delete' => [
2804
                                'type' => Segment::class,
2805
                                'options' => [
2806
                                    'route' => '/delete/:id',
2807
                                    'constraints' => [
2808
                                        'id' => '[A-Za-z0-9\-]+\=*'
2809
                                    ],
2810
                                    'defaults' => [
2811
                                        'controller' => '\LeadersLinked\Controller\PositionController',
2812
                                        'action' => 'delete'
2813
                                    ]
2814
                                ]
2815
                            ],
1320 efrain 2816
                            'subordinates' => [
2817
                                'type' => Segment::class,
2818
                                'options' => [
2819
                                    'route' => '/subordinates/:job_description_id',
2820
                                    'constraints' => [
2821
                                        'job_description_id' => '[A-Za-z0-9\-]+\=*'
2822
                                    ],
2823
                                    'defaults' => [
2824
                                        'controller' => '\LeadersLinked\Controller\PositionController',
2825
                                        'action' => 'subordinates'
2826
                                    ]
2827
                                ]
2828
                            ],
67 efrain 2829
                        ]
2830
                    ],
1 www 2831
                    'push-templates' => [
2832
                        'type' => Literal::class,
2833
                        'options' => [
2834
                            'route' => '/push-templates',
2835
                            'defaults' => [
2836
                                'controller' => '\LeadersLinked\Controller\PushTemplateController',
2837
                                'action' => 'index'
2838
                            ]
2839
                        ],
2840
                        'may_terminate' => true,
2841
                        'child_routes' => [
2842
                            'edit' => [
2843
                                'type' => Segment::class,
2844
                                'options' => [
2845
                                    'route' => '/edit/:id',
2846
                                    'constraints' => [
2847
                                        'id' => '[A-Za-z0-9\-]+\=*'
2848
                                    ],
2849
                                    'defaults' => [
2850
                                        'controller' => '\LeadersLinked\Controller\PushTemplateController',
2851
                                        'action' => 'edit'
2852
                                    ]
2853
                                ]
2854
                            ],
2855
                        ]
2856
                    ],
2857
                    'skills' => [
2858
                        'type' => Literal::class,
2859
                        'options' => [
2860
                            'route' => '/skills',
2861
                            'defaults' => [
2862
                                'controller' => '\LeadersLinked\Controller\SkillController',
2863
                                'action' => 'index'
2864
                            ]
2865
                        ],
2866
                        'may_terminate' => true,
2867
                        'child_routes' => [
2868
                            'add' => [
2869
                                'type' => Literal::class,
2870
                                'options' => [
2871
                                    'route' => '/add',
2872
                                    'defaults' => [
2873
                                        'controller' => '\LeadersLinked\Controller\SkillController',
2874
                                        'action' => 'add'
2875
                                    ]
2876
                                ]
2877
                            ],
2878
                            'edit' => [
2879
                                'type' => Segment::class,
2880
                                'options' => [
2881
                                    'route' => '/edit/:id',
2882
                                    'constraints' => [
2883
                                        'id' => '[A-Za-z0-9\-]+\=*'
2884
                                    ],
2885
                                    'defaults' => [
2886
                                        'controller' => '\LeadersLinked\Controller\SkillController',
2887
                                        'action' => 'edit'
2888
                                    ]
2889
                                ]
2890
                            ],
2891
                            'delete' => [
2892
                                'type' => Segment::class,
2893
                                'options' => [
2894
                                    'route' => '/delete/:id',
2895
                                    'constraints' => [
2896
                                        'id' => '[A-Za-z0-9\-]+\=*'
2897
                                    ],
2898
                                    'defaults' => [
2899
                                        'controller' => '\LeadersLinked\Controller\SkillController',
2900
                                        'action' => 'delete'
2901
                                    ]
2902
                                ]
2903
                            ]
2904
                        ]
2905
                    ],
1089 geraldo 2906
                ]
1 www 2907
            ],
1089 geraldo 2908
        /*         * * FIN SETTINGS ** */
1333 efrain 2909
 
2910
            'own-professional-network' => [
2911
                'type' => Literal::class,
2912
                'options' => [
2913
                    'route' => '/own-professional-network',
2914
                    'defaults' => [
2915
                        'controller' => '\LeadersLinked\Controller\UnknownController',
2916
                        'action' => 'index'
2917
                    ]
2918
                ],
2919
                'may_terminate' => true,
2920
                'child_routes' => [
2921
                ]
2922
            ],
2923
 
2924
            'organizational-design' => [
2925
                'type' => Literal::class,
2926
                'options' => [
2927
                    'route' => '/organizational-design',
2928
                    'defaults' => [
2929
                        'controller' => '\LeadersLinked\Controller\UnknownController',
2930
                        'action' => 'index'
2931
                    ]
2932
                ],
2933
                'may_terminate' => true,
2934
                'child_routes' => [
2935
                ]
2936
            ],
2937
 
2938
            'planning-objectives-and-goals' => [
2939
                'type' => Literal::class,
2940
                'options' => [
2941
                    'route' => '/planning-objectives-and-goals',
2942
                    'defaults' => [
2235 nelberth 2943
                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsController',
1951 nelberth 2944
                        'action' => 'index'
1333 efrain 2945
                    ]
2946
                ],
2947
                'may_terminate' => true,
2948
                'child_routes' => [
2238 nelberth 2949
                    'objectives' => [
2250 nelberth 2950
                        'type' => Literal::class,
1914 nelberth 2951
                        'options' => [
2248 nelberth 2952
                            'route' => '/objectives',
1914 nelberth 2953
                            'defaults' => [
2228 nelberth 2954
                                'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController',
2238 nelberth 2955
                                'action' => 'index'
1914 nelberth 2956
                            ]
2251 nelberth 2957
                        ],
2958
 
2959
                        'may_terminate' => true,
2960
                        'child_routes' => [
2324 nelberth 2961
 
2251 nelberth 2962
                            'add' => [
2963
                                'type' => Literal::class,
2964
                                'options' => [
2965
                                    'route' => '/add',
2966
                                    'defaults' => [
2967
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController',
2968
                                        'action' => 'add'
2969
                                    ]
2970
                                ]
2971
                            ],
2972
                            'edit' => [
2973
                                'type' => Segment::class,
2974
                                'options' => [
2975
                                    'route' => '/edit/:id',
2976
                                    'constraints' => [
2977
                                        'id' => '[A-Za-z0-9\-]+\=*'
2978
                                    ],
2979
                                    'defaults' => [
2980
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController',
2981
                                        'action' => 'edit'
2982
                                    ]
2983
                                ]
2984
                            ],
2985
                            'delete' => [
2986
                                'type' => Segment::class,
2987
                                'options' => [
2988
                                    'route' => '/delete/:id',
2989
                                    'constraints' => [
2990
                                        'id' => '[A-Za-z0-9\-]+\=*'
2991
                                    ],
2992
                                    'defaults' => [
2993
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController',
2994
                                        'action' => 'delete'
2995
                                    ]
2996
                                ]
2324 nelberth 2997
                            ],
3462 nelberth 2998
                            'report' => [
2999
                                'type' => Segment::class,
3000
                                'options' => [
3001
                                    'route' => '/report/:id',
3002
                                    'constraints' => [
3003
                                        'id' => '[A-Za-z0-9\-]+\=*'
3004
                                    ],
3005
                                    'defaults' => [
3006
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController',
3007
                                        'action' => 'report'
3008
                                    ]
3009
                                ]
3986 nelberth 3010
                            ],
3011
                            'reportall' => [
3012
                                'type' => Literal::class,
3013
                                'options' => [
3014
                                    'route' => '/reportall',
3015
                                    'defaults' => [
3016
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController',
3017
                                        'action' => 'reportall'
3018
                                    ]
3019
                                ]
3462 nelberth 3020
                            ],
4041 nelberth 3021
 
3022
                            'matriz' => [
3023
                                'type' => Literal::class,
3024
                                'options' => [
3025
                                    'route' => '/matriz',
3026
                                    'defaults' => [
3027
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController',
3028
                                        'action' => 'matriz'
3029
                                    ]
3030
                                ]
3031
                            ],
2324 nelberth 3032
                            'goals' => [
2336 nelberth 3033
                                'type' => Segment::class,
2324 nelberth 3034
                                'options' => [
2426 nelberth 3035
                                    'route' => '/:uuid_objective/goals',
2324 nelberth 3036
                                    'constraints' => [
3037
                                        'id' => '[A-Za-z0-9\-]+\=*'
3038
                                    ],
3039
                                    'defaults' => [
3040
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsGoalsController',
3041
                                        'action' => 'index'
3042
                                    ]
2369 nelberth 3043
                                ],
2370 nelberth 3044
 
3045
                                'may_terminate' => true,
3046
                                'child_routes' => [
3047
                                    'add' => [
3048
                                        'type' => Literal::class,
3049
                                        'options' => [
3050
                                            'route' => '/add',
3051
                                            'defaults' => [
3052
                                                'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsGoalsController',
3053
                                                'action' => 'add'
3054
                                            ]
2369 nelberth 3055
                                        ]
2370 nelberth 3056
                                    ],
3057
                                    'edit' => [
3058
                                        'type' => Segment::class,
3059
                                        'options' => [
3060
                                            'route' => '/edit/:id',
3061
                                            'constraints' => [
3062
                                                'id' => '[A-Za-z0-9\-]+\=*'
3063
                                            ],
3064
                                            'defaults' => [
3065
                                                'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsGoalsController',
3066
                                                'action' => 'edit'
3067
                                            ]
2369 nelberth 3068
                                        ]
2370 nelberth 3069
                                    ],
3070
                                    'delete' => [
3071
                                        'type' => Segment::class,
3072
                                        'options' => [
3073
                                            'route' => '/delete/:id',
3074
                                            'constraints' => [
3075
                                                'id' => '[A-Za-z0-9\-]+\=*'
3076
                                            ],
3077
                                            'defaults' => [
3078
                                                'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsGoalsController',
3079
                                                'action' => 'delete'
3080
                                            ]
3081
                                        ]
3082
                                    ],
2517 nelberth 3083
                                    'task' => [
3084
                                        'type' => Segment::class,
3085
                                        'options' => [
2527 nelberth 3086
                                            'route' => '/:uuid_goals/task',
2517 nelberth 3087
                                            'constraints' => [
3088
                                                'id' => '[A-Za-z0-9\-]+\=*'
3089
                                            ],
3090
                                            'defaults' => [
3091
                                                'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController',
3092
                                                'action' => 'index'
3093
                                            ]
3094
                                        ],
3095
 
3096
                                        'may_terminate' => true,
3097
                                        'child_routes' => [
3098
                                            'add' => [
3099
                                                'type' => Literal::class,
3100
                                                'options' => [
3101
                                                    'route' => '/add',
3102
                                                    'defaults' => [
3103
                                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController',
3104
                                                        'action' => 'add'
3105
                                                    ]
3106
                                                ]
3107
                                            ],
3108
                                            'edit' => [
3109
                                                'type' => Segment::class,
3110
                                                'options' => [
3111
                                                    'route' => '/edit/:id',
3112
                                                    'constraints' => [
3113
                                                        'id' => '[A-Za-z0-9\-]+\=*'
3114
                                                    ],
3115
                                                    'defaults' => [
3116
                                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController',
3117
                                                        'action' => 'edit'
3118
                                                    ]
3119
                                                ]
3120
                                            ],
3121
                                            'delete' => [
3122
                                                'type' => Segment::class,
3123
                                                'options' => [
3124
                                                    'route' => '/delete/:id',
3125
                                                    'constraints' => [
3126
                                                        'id' => '[A-Za-z0-9\-]+\=*'
3127
                                                    ],
3128
                                                    'defaults' => [
3129
                                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController',
3130
                                                        'action' => 'delete'
3131
                                                    ]
3132
                                                ]
3133
                                            ],
2822 nelberth 3134
                                            'view' => [
3135
                                                'type' => Segment::class,
3136
                                                'options' => [
3137
                                                    'route' => '/view/:id',
3138
                                                    'constraints' => [
3139
                                                        'id' => '[A-Za-z0-9\-]+\=*'
3140
                                                    ],
3141
                                                    'defaults' => [
3142
                                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController',
3143
                                                        'action' => 'view'
3144
                                                    ]
3145
                                                ]
3146
                                            ],
2517 nelberth 3147
                                    ]
3148
                                ],
2369 nelberth 3149
                            ]
2370 nelberth 3150
                        ],
1914 nelberth 3151
                        ]
2246 nelberth 3152
                    ]
2238 nelberth 3153
 
1333 efrain 3154
                ]
3155
            ],
3156
 
3157
            'development-and-training' => [
3158
                'type' => Literal::class,
3159
                'options' => [
3160
                    'route' => '/development-and-training',
3161
                    'defaults' => [
3162
                        'controller' => '\LeadersLinked\Controller\UnknownController',
3163
                        'action' => 'index'
3164
                    ]
3165
                ],
3166
                'may_terminate' => true,
3167
                'child_routes' => [
3168
                ]
3169
            ],
1477 efrain 3170
 
1333 efrain 3171
 
1477 efrain 3172
            'recruitment-and-selection' => [
1333 efrain 3173
                'type' => Literal::class,
3174
                'options' => [
1477 efrain 3175
                    'route' => '/recruitment-and-selection',
1333 efrain 3176
                    'defaults' => [
1477 efrain 3177
                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionController',
1333 efrain 3178
                        'action' => 'index'
3179
                    ]
3180
                ],
3181
                'may_terminate' => true,
3182
                'child_routes' => [
1477 efrain 3183
                    'vacancies' => [
1345 eleazar 3184
                        'type' => Literal::class,
3185
                        'options' => [
1477 efrain 3186
                            'route' => '/vacancies',
1345 eleazar 3187
                            'defaults' => [
1385 eleazar 3188
                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionVacancyController',
1345 eleazar 3189
                                'action' => 'index'
3190
                            ]
3191
                        ],
3192
                        'may_terminate' => true,
3193
                        'child_routes' => [
3194
                            'add' => [
3195
                                'type' => Literal::class,
3196
                                'options' => [
3197
                                    'route' => '/add',
3198
                                    'defaults' => [
1385 eleazar 3199
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionVacancyController',
1345 eleazar 3200
                                        'action' => 'add'
3201
                                    ]
3202
                                ]
3203
                            ],
3204
                            'edit' => [
3205
                                'type' => Segment::class,
3206
                                'options' => [
3207
                                    'route' => '/edit/:id',
3208
                                    'constraints' => [
3209
                                        'id' => '[A-Za-z0-9\-]+\=*'
3210
                                    ],
3211
                                    'defaults' => [
1385 eleazar 3212
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionVacancyController',
1345 eleazar 3213
                                        'action' => 'edit'
3214
                                    ]
3215
                                ]
3216
                            ],
3217
                            'delete' => [
3218
                                'type' => Segment::class,
3219
                                'options' => [
3220
                                    'route' => '/delete/:id',
3221
                                    'constraints' => [
3222
                                        'id' => '[A-Za-z0-9\-]+\=*'
3223
                                    ],
3224
                                    'defaults' => [
1385 eleazar 3225
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionVacancyController',
1345 eleazar 3226
                                        'action' => 'delete'
3227
                                    ]
3228
                                ]
3229
                            ]
3230
                        ]
3231
                    ],
1459 eleazar 3232
                    'candidates' => [
3233
                        'type' => Segment::class,
3234
                        'options' => [
1501 eleazar 3235
                            'route' => '/candidates[/:vacancy_uuid]',
1459 eleazar 3236
                            'constraints' => [
1508 eleazar 3237
                                'vacancy_uuid' => '[A-Za-z0-9\-]+\=*'
1459 eleazar 3238
                            ],
3239
                            'defaults' => [
3240
                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
1502 eleazar 3241
                                'action' => 'index',
1503 eleazar 3242
                                'vacancy_uuid' => '',
1459 eleazar 3243
                            ]
3244
                        ],
3245
                        'may_terminate' => true,
3246
                        'child_routes' => [
3247
                            'add' => [
3248
                                'type' => Literal::class,
3249
                                'options' => [
1506 eleazar 3250
                                    'route' => '/add',
1459 eleazar 3251
                                    'defaults' => [
3252
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
3253
                                        'action' => 'add'
3254
                                    ]
3255
                                ]
3256
                            ],
3257
                            'edit' => [
3258
                                'type' => Segment::class,
3259
                                'options' => [
3260
                                    'route' => '/edit/:id',
3261
                                    'constraints' => [
3262
                                        'id' => '[A-Za-z0-9\-]+\=*'
3263
                                    ],
3264
                                    'defaults' => [
3265
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
3266
                                        'action' => 'edit'
3267
                                    ]
3268
                                ]
3269
                            ],
3270
                            'delete' => [
3271
                                'type' => Segment::class,
3272
                                'options' => [
3273
                                    'route' => '/delete/:id',
3274
                                    'constraints' => [
3275
                                        'id' => '[A-Za-z0-9\-]+\=*'
3276
                                    ],
3277
                                    'defaults' => [
3278
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
3279
                                        'action' => 'delete'
3280
                                    ]
3281
                                ]
1630 eleazar 3282
                            ],
3283
                            'email' => [
3284
                                'type' => Literal::class,
3285
                                'options' => [
3286
                                    'route' => '/email',
3287
                                    'defaults' => [
3288
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
3289
                                        'action' => 'email'
3290
                                    ]
3291
                                ]
3292
                            ],
1459 eleazar 3293
                        ]
3294
                    ],
1635 eleazar 3295
                    'user-by-email' => [
3296
                        'type' => Literal::class,
3297
                        'options' => [
3298
                            'route' => '/user-by-email',
3299
                            'defaults' => [
3300
                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
3301
                                'action' => 'email'
3302
                            ]
3303
                        ]
1709 eleazar 3304
                    ],
3305
                    'interview' => [
3306
                        'type' => Segment::class,
3307
                        'options' => [
3308
                            'route' => '/interview',
3309
                            'defaults' => [
3310
                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewController',
3311
                                'action' => 'index',
3312
                            ],
3313
                        ],
3314
                        'may_terminate' => true,
3315
                        'child_routes' => [
3316
                            'form' => [
4351 eleazar 3317
                                'type' => Segment::class,
1709 eleazar 3318
                                'options' => [
4349 eleazar 3319
                                    'route' => '/form[/:vacancy_uuid]',
3320
                                    'constraints' => [
3321
                                        'vacancy_uuid' => '[A-Za-z0-9\-]+\=*'
3322
                                    ],
1709 eleazar 3323
                                    'defaults' => [
1711 eleazar 3324
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
2029 eleazar 3325
                                        'action' => 'index',
4352 eleazar 3326
                                        'vacancy_uuid' => '',
1709 eleazar 3327
                                    ],
3328
                                ],
3329
                                'may_terminate' => true,
3330
                                'child_routes' => [
3331
                                    'add' => [
2059 eleazar 3332
                                        'type' => Segment::class,
1709 eleazar 3333
                                        'options' => [
3563 eleazar 3334
                                            'route' => '/add',
1709 eleazar 3335
                                            'defaults' => [
1899 eleazar 3336
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
1709 eleazar 3337
                                                'action' => 'add'
3338
                                            ],
3339
                                        ],
3340
                                    ],
3341
                                    'edit' => [
2775 eleazar 3342
                                        'type' => Segment::class,
1709 eleazar 3343
                                        'options' => [
2764 eleazar 3344
                                            'route' => '/edit/:interview_uuid',
2765 eleazar 3345
                                            'constraints' => [
3346
                                                'interview_uuid' => '[A-Za-z0-9\-]+\=*'
3347
                                            ],
1709 eleazar 3348
                                            'defaults' => [
1944 eleazar 3349
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
1709 eleazar 3350
                                                'action' => 'edit'
3351
                                            ],
3352
                                        ],
3353
                                    ],
3354
                                    'delete' => [
2775 eleazar 3355
                                        'type' => Segment::class,
1709 eleazar 3356
                                        'options' => [
2764 eleazar 3357
                                            'route' => '/delete/:interview_uuid',
2765 eleazar 3358
                                            'constraints' => [
3359
                                                'interview_uuid' => '[A-Za-z0-9\-]+\=*'
3360
                                            ],
1709 eleazar 3361
                                            'defaults' => [
2766 eleazar 3362
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
1709 eleazar 3363
                                                'action' => 'delete'
3364
                                            ],
3365
                                        ],
3366
                                    ],
3367
                                ],
3368
                            ],
3369
                            'report' =>[
3370
                                'type' => Segment::class,
3371
                                'options' => [
2864 eleazar 3372
                                    'route' => '/report/:interview_uuid',
3373
                                    'constraints' => [
3374
                                        'interview_uuid' => '[A-Za-z0-9\-]+\=*'
3375
                                    ],
1709 eleazar 3376
                                    'defaults' => [
2864 eleazar 3377
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
3378
                                        'action' => 'report',
1709 eleazar 3379
                                    ],
3380
                                ],
3381
                            ],
3571 eleazar 3382
                            'vacancy' =>[
3383
                                'type' => Segment::class,
3384
                                'options' => [
3385
                                    'route' => '/vacancy/:vacancy_uuid',
3386
                                    'constraints' => [
3387
                                        'vacancy_uuid' => '[A-Za-z0-9\-]+\=*'
3388
                                    ],
3389
                                    'defaults' => [
3390
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
3391
                                        'action' => 'vacancy',
3392
                                    ],
3393
                                ],
3394
                            ],
4367 eleazar 3395
                            'type' =>[
4365 eleazar 3396
                                'type' => Segment::class,
3397
                                'options' => [
4367 eleazar 3398
                                    'route' => '/type/:candidate_uuid',
4365 eleazar 3399
                                    'constraints' => [
3400
                                        'candidate_uuid' => '[A-Za-z0-9\-]+\=*'
3401
                                    ],
3402
                                    'defaults' => [
3403
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
4367 eleazar 3404
                                        'action' => 'type',
4365 eleazar 3405
                                    ],
3406
                                ],
3407
                            ],
1709 eleazar 3408
                        ],
3409
                    ],
1459 eleazar 3410
                ],
1333 efrain 3411
            ],
3412
 
3413
            'induction' => [
3414
                'type' => Literal::class,
3415
                'options' => [
3416
                    'route' => '/induction',
3417
                    'defaults' => [
3418
                        'controller' => '\LeadersLinked\Controller\UnknownController',
3419
                        'action' => 'index'
3420
                    ]
3421
                ],
3422
                'may_terminate' => true,
3423
                'child_routes' => [
3424
                ]
3425
            ],
3426
 
3427
            'organizational-climate' => [
3428
                'type' => Literal::class,
3429
                'options' => [
3430
                    'route' => '/organizational-climate',
3431
                    'defaults' => [
7218 eleazar 3432
                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateController',
1333 efrain 3433
                        'action' => 'index'
3434
                    ]
3435
                ],
3436
                'may_terminate' => true,
3437
                'child_routes' => [
7218 eleazar 3438
                    'add' => [
3439
                        'type' => Segment::class,
3440
                        'options' => [
3441
                            'route' => '/add',
3442
                            'defaults' => [
7295 eleazar 3443
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateController',
7218 eleazar 3444
                                'action' => 'add'
3445
                            ],
3446
                        ],
3447
                    ],
3448
                    'edit' => [
3449
                        'type' => Segment::class,
3450
                        'options' => [
3451
                            'route' => '/edit/:id',
3452
                            'defaults' => [
7295 eleazar 3453
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateController',
7218 eleazar 3454
                                'action' => 'edit'
3455
                            ],
3456
                        ],
3457
                    ],
3458
                    'delete' => [
3459
                        'type' => Segment::class,
3460
                        'options' => [
3461
                            'route' => '/delete/:id',
3462
                            'defaults' => [
7295 eleazar 3463
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateController',
7218 eleazar 3464
                                'action' => 'delete'
3465
                            ],
3466
                        ],
3467
                    ],
3468
                    'segment' => [
3469
                        'type' => Segment::class,
3470
                        'options' => [
3471
                            'route' => '/segment/:id',
3472
                            'defaults' => [
7295 eleazar 3473
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateController',
7218 eleazar 3474
                                'action' => 'segment'
3475
                            ],
3476
                        ],
3477
                    ],
3478
                    'form' => [
3479
                        'type' => Segment::class,
3480
                        'options' => [
3481
                            'route' => '/form',
3482
                            'defaults' => [
7295 eleazar 3483
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateFormController',
7218 eleazar 3484
                                'action' => 'index',
3485
                            ],
3486
                        ],
3487
                        'may_terminate' => true,
3488
                        'child_routes' => [
3489
                            'add' => [
3490
                                'type' => Segment::class,
3491
                                'options' => [
3492
                                    'route' => '/add',
3493
                                    'defaults' => [
7295 eleazar 3494
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateFormController',
7218 eleazar 3495
                                        'action' => 'add'
3496
                                    ],
3497
                                ],
3498
                            ],
3499
                            'edit' => [
3500
                                'type' => Segment::class,
3501
                                'options' => [
3502
                                    'route' => '/edit/:id',
3503
                                    'constraints' => [
3504
                                        'id' => '[A-Za-z0-9\-]+\=*'
3505
                                    ],
3506
                                    'defaults' => [
7295 eleazar 3507
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateFormController',
7218 eleazar 3508
                                        'action' => 'edit'
3509
                                    ]
3510
                                ]
3511
                            ],
3512
                            'delete' => [
3513
                                'type' => Segment::class,
3514
                                'options' => [
3515
                                    'route' => '/delete/:id',
3516
                                    'constraints' => [
3517
                                        'id' => '[A-Za-z0-9\-]+\=*'
3518
                                    ],
3519
                                    'defaults' => [
7295 eleazar 3520
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateFormController',
7218 eleazar 3521
                                        'action' => 'delete'
3522
                                    ]
3523
                                ]
3524
                            ]
3525
                        ],
3526
                    ],
3527
                    'test' => [
3528
                        'type' => Segment::class,
3529
                        'options' => [
7307 eleazar 3530
                            'route' => '/test[/:organizationalClimate_id]',
7218 eleazar 3531
                            'constraints' => [
7307 eleazar 3532
                                'organizationalClimate_id' => '[A-Za-z0-9\-]+\=*'
7218 eleazar 3533
                            ],
3534
                            'defaults' => [
7295 eleazar 3535
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateTestController',
7218 eleazar 3536
                                'action' => 'index',
7307 eleazar 3537
                                'organizationalClimate_id' => '',
7218 eleazar 3538
                            ],
3539
                        ],
3540
                        'may_terminate' => true,
3541
                        'child_routes' => [
3542
                            'add' => [
3543
                                'type' => Segment::class,
3544
                                'options' => [
3545
                                    'route' => '/add',
3546
                                    'defaults' => [
7295 eleazar 3547
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateTestController',
7218 eleazar 3548
                                        'action' => 'add',
3549
                                    ],
3550
                                ],
3551
                            ],
3552
                            'report' => [
3553
                                'type' => Segment::class,
3554
                                'options' => [
3555
                                    'route' => '/report/:uuid',
3556
                                    'defaults' => [
7295 eleazar 3557
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateTestController',
7218 eleazar 3558
                                        'action' => 'report',
3559
                                    ],
3560
                                ],
3561
                            ],
3562
                            'delete' => [
3563
                                'type' => Segment::class,
3564
                                'options' => [
3565
                                    'route' => '/delete/:id',
3566
                                    'defaults' => [
7295 eleazar 3567
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateTestController',
7218 eleazar 3568
                                        'action' => 'delete'
3569
                                    ]
3570
                                ]
3571
                            ]
3572
                        ],
3573
                    ],
3574
                    'report' => [
3575
                        'type' => Segment::class,
3576
                        'options' => [
7447 eleazar 3577
                            'route' => '/report[/:organizationalClimate_id]',
7218 eleazar 3578
                            'constraints' => [
7447 eleazar 3579
                                'organizationalClimate_id' => '[A-Za-z0-9\-]+\=*'
7218 eleazar 3580
                            ],
3581
                            'defaults' => [
7295 eleazar 3582
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateReportController',
7218 eleazar 3583
                                'action' => 'index',
7447 eleazar 3584
                                'organizationalClimate_id' => '',
7218 eleazar 3585
                            ],
3586
                        ],
3587
                        'may_terminate' => true,
3588
                        'child_routes' => [
3589
                            'all' => [
3590
                                'type' => Segment::class,
3591
                                'options' => [
3592
                                    'route' => '/all',
3593
                                    'defaults' => [
7295 eleazar 3594
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateReportController',
7218 eleazar 3595
                                        'action' => 'all',
3596
                                    ]
3597
                                ]
3598
                            ],
3599
                            'overview' => [
3600
                                'type' => Segment::class,
3601
                                'options' => [
3602
                                    'route' => '/overview',
3603
                                    'defaults' => [
7295 eleazar 3604
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateReportController',
7218 eleazar 3605
                                        'action' => 'overview',
3606
                                    ]
3607
                                ]
3608
                            ],
3609
                            'csv' => [
3610
                                'type' => Segment::class,
3611
                                'options' => [
3612
                                    'route' => '/csv',
3613
                                    'defaults' => [
7295 eleazar 3614
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateReportController',
7218 eleazar 3615
                                        'action' => 'csv',
3616
                                    ]
3617
                                ]
3618
                            ],
3619
                        ],
3620
                    ],
3621
                ],
1333 efrain 3622
            ],
3623
 
3624
            'culture' => [
3625
                'type' => Literal::class,
3626
                'options' => [
3627
                    'route' => '/culture',
3628
                    'defaults' => [
3629
                        'controller' => '\LeadersLinked\Controller\UnknownController',
3630
                        'action' => 'index'
3631
                    ]
3632
                ],
3633
                'may_terminate' => true,
3634
                'child_routes' => [
3635
                ]
3636
            ],
3637
 
3638
            'communication' => [
3639
                'type' => Literal::class,
3640
                'options' => [
3641
                    'route' => '/communication',
3642
                    'defaults' => [
3643
                        'controller' => '\LeadersLinked\Controller\UnknownController',
3644
                        'action' => 'index'
3645
                    ]
3646
                ],
3647
                'may_terminate' => true,
3648
                'child_routes' => [
3649
                ]
3650
            ],
3651
 
3652
            'career-development' => [
3653
                'type' => Literal::class,
3654
                'options' => [
3655
                    'route' => '/career-development',
3656
                    'defaults' => [
3657
                        'controller' => '\LeadersLinked\Controller\UnknownController',
3658
                        'action' => 'index'
3659
                    ]
3660
                ],
3661
                'may_terminate' => true,
3662
                'child_routes' => [
3663
                ]
3664
            ],
3665
 
4386 eleazar 3666
            'survey' => [
1333 efrain 3667
                'type' => Literal::class,
3668
                'options' => [
4397 eleazar 3669
                    'route' => '/survey',
1333 efrain 3670
                    'defaults' => [
4375 eleazar 3671
                        'controller' => '\LeadersLinked\Controller\SurveyController',
1333 efrain 3672
                        'action' => 'index'
3673
                    ]
3674
                ],
3675
                'may_terminate' => true,
3676
                'child_routes' => [
4579 eleazar 3677
                    'add' => [
3678
                        'type' => Segment::class,
3679
                        'options' => [
3680
                            'route' => '/add',
3681
                            'defaults' => [
3682
                                'controller' => '\LeadersLinked\Controller\SurveyController',
3683
                                'action' => 'add'
3684
                            ],
3685
                        ],
3686
                    ],
3687
                    'edit' => [
3688
                        'type' => Segment::class,
3689
                        'options' => [
3690
                            'route' => '/edit/:id',
3691
                            'defaults' => [
3692
                                'controller' => '\LeadersLinked\Controller\SurveyController',
3693
                                'action' => 'edit'
3694
                            ],
3695
                        ],
3696
                    ],
3697
                    'delete' => [
3698
                        'type' => Segment::class,
3699
                        'options' => [
3700
                            'route' => '/delete/:id',
3701
                            'defaults' => [
3702
                                'controller' => '\LeadersLinked\Controller\SurveyController',
3703
                                'action' => 'delete'
3704
                            ],
3705
                        ],
3706
                    ],
3707
                    'segment' => [
3708
                        'type' => Segment::class,
3709
                        'options' => [
3710
                            'route' => '/segment/:id',
3711
                            'defaults' => [
3712
                                'controller' => '\LeadersLinked\Controller\SurveyController',
3713
                                'action' => 'segment'
3714
                            ],
3715
                        ],
3716
                    ],
4374 eleazar 3717
                    'form' => [
3718
                        'type' => Segment::class,
3719
                        'options' => [
3720
                            'route' => '/form',
3721
                            'defaults' => [
4375 eleazar 3722
                                'controller' => '\LeadersLinked\Controller\SurveyFormController',
4374 eleazar 3723
                                'action' => 'index',
3724
                            ],
3725
                        ],
3726
                        'may_terminate' => true,
3727
                        'child_routes' => [
3728
                            'add' => [
3729
                                'type' => Segment::class,
3730
                                'options' => [
3731
                                    'route' => '/add',
3732
                                    'defaults' => [
4375 eleazar 3733
                                        'controller' => '\LeadersLinked\Controller\SurveyFormController',
4374 eleazar 3734
                                        'action' => 'add'
3735
                                    ],
3736
                                ],
3737
                            ],
3738
                            'edit' => [
3739
                                'type' => Segment::class,
3740
                                'options' => [
3741
                                    'route' => '/edit/:id',
3742
                                    'constraints' => [
3743
                                        'id' => '[A-Za-z0-9\-]+\=*'
3744
                                    ],
3745
                                    'defaults' => [
4375 eleazar 3746
                                        'controller' => '\LeadersLinked\Controller\SurveyFormController',
4374 eleazar 3747
                                        'action' => 'edit'
3748
                                    ]
3749
                                ]
3750
                            ],
3751
                            'delete' => [
3752
                                'type' => Segment::class,
3753
                                'options' => [
3754
                                    'route' => '/delete/:id',
3755
                                    'constraints' => [
3756
                                        'id' => '[A-Za-z0-9\-]+\=*'
3757
                                    ],
3758
                                    'defaults' => [
4375 eleazar 3759
                                        'controller' => '\LeadersLinked\Controller\SurveyFormController',
4374 eleazar 3760
                                        'action' => 'delete'
3761
                                    ]
3762
                                ]
3763
                            ]
3764
                        ],
3765
                    ],
5287 eleazar 3766
                    'test' => [
3767
                        'type' => Segment::class,
3768
                        'options' => [
5884 eleazar 3769
                            'route' => '/test[/:survey_id]',
3770
                            'constraints' => [
3771
                                'survey_id' => '[A-Za-z0-9\-]+\=*'
3772
                            ],
5287 eleazar 3773
                            'defaults' => [
3774
                                'controller' => '\LeadersLinked\Controller\SurveyTestController',
3775
                                'action' => 'index',
5884 eleazar 3776
                                'survey_id' => '',
5287 eleazar 3777
                            ],
3778
                        ],
3779
                        'may_terminate' => true,
3780
                        'child_routes' => [
3781
                            'add' => [
3782
                                'type' => Segment::class,
3783
                                'options' => [
6036 eleazar 3784
                                    'route' => '/add',
5287 eleazar 3785
                                    'defaults' => [
3786
                                        'controller' => '\LeadersLinked\Controller\SurveyTestController',
5732 eleazar 3787
                                        'action' => 'add',
5287 eleazar 3788
                                    ],
3789
                                ],
3790
                            ],
6662 eleazar 3791
                            'report' => [
3792
                                'type' => Segment::class,
3793
                                'options' => [
6882 eleazar 3794
                                    'route' => '/report/:uuid',
6662 eleazar 3795
                                    'defaults' => [
3796
                                        'controller' => '\LeadersLinked\Controller\SurveyTestController',
3797
                                        'action' => 'report',
3798
                                    ],
3799
                                ],
3800
                            ],
5287 eleazar 3801
                            'delete' => [
3802
                                'type' => Segment::class,
3803
                                'options' => [
6882 eleazar 3804
                                    'route' => '/delete/:id',
5287 eleazar 3805
                                    'defaults' => [
3806
                                        'controller' => '\LeadersLinked\Controller\SurveyTestController',
3807
                                        'action' => 'delete'
3808
                                    ]
3809
                                ]
3810
                            ]
3811
                        ],
3812
                    ],
5823 eleazar 3813
                    'report' => [
3814
                        'type' => Segment::class,
3815
                        'options' => [
5911 eleazar 3816
                            'route' => '/report[/:survey_id]',
3817
                            'constraints' => [
3818
                                'survey_id' => '[A-Za-z0-9\-]+\=*'
3819
                            ],
5823 eleazar 3820
                            'defaults' => [
3821
                                'controller' => '\LeadersLinked\Controller\SurveyReportController',
3822
                                'action' => 'index',
5911 eleazar 3823
                                'survey_id' => '',
5823 eleazar 3824
                            ],
3825
                        ],
3826
                        'may_terminate' => true,
3827
                        'child_routes' => [
3828
                            'all' => [
3829
                                'type' => Segment::class,
3830
                                'options' => [
5868 eleazar 3831
                                    'route' => '/all',
5823 eleazar 3832
                                    'defaults' => [
3833
                                        'controller' => '\LeadersLinked\Controller\SurveyReportController',
5868 eleazar 3834
                                        'action' => 'all',
5823 eleazar 3835
                                    ]
3836
                                ]
3837
                            ],
6496 eleazar 3838
                            'overview' => [
3839
                                'type' => Segment::class,
3840
                                'options' => [
3841
                                    'route' => '/overview',
3842
                                    'defaults' => [
3843
                                        'controller' => '\LeadersLinked\Controller\SurveyReportController',
3844
                                        'action' => 'overview',
3845
                                    ]
3846
                                ]
3847
                            ],
7024 eleazar 3848
                            'csv' => [
3849
                                'type' => Segment::class,
3850
                                'options' => [
3851
                                    'route' => '/csv',
3852
                                    'defaults' => [
3853
                                        'controller' => '\LeadersLinked\Controller\SurveyReportController',
3854
                                        'action' => 'csv',
3855
                                    ]
3856
                                ]
3857
                            ],
5823 eleazar 3858
                        ],
3859
                    ],
1333 efrain 3860
                ]
3861
            ],
3862
 
3863
            'building-my-future' => [
3864
                'type' => Literal::class,
3865
                'options' => [
3866
                    'route' => '/building-my-future',
3867
                    'defaults' => [
3868
                        'controller' => '\LeadersLinked\Controller\UnknownController',
3869
                        'action' => 'index'
3870
                    ]
3871
                ],
3872
                'may_terminate' => true,
3873
                'child_routes' => [
3874
                ]
3875
            ],
3876
 
4588 nelberth 3877
            /* copy */
7184 nelberth 3878
 
7224 nelberth 3879
 
1333 efrain 3880
            'high-performance-teams' => [
3881
                'type' => Literal::class,
3882
                'options' => [
4591 nelberth 3883
                    'route' => '/high-performance-teams',
4588 nelberth 3884
                    'defaults' => [
4376 nelberth 3885
                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsController',
1333 efrain 3886
                        'action' => 'index'
3887
                    ]
3888
                ],
3889
                'may_terminate' => true,
3890
                'child_routes' => [
7240 nelberth 3891
                    'groups' => [
4388 nelberth 3892
                        'type' => Literal::class,
3893
                        'options' => [
7224 nelberth 3894
                            'route' => '/groups',
4388 nelberth 3895
                            'defaults' => [
7224 nelberth 3896
                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsController',
4388 nelberth 3897
                                'action' => 'index'
3898
                            ]
4411 nelberth 3899
                        ],'may_terminate' => true,
3900
                        'child_routes' => [
3901
 
3902
                            'add' => [
3903
                                'type' => Literal::class,
3904
                                'options' => [
3905
                                    'route' => '/add',
3906
                                    'defaults' => [
7224 nelberth 3907
                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsController',
4411 nelberth 3908
                                        'action' => 'add'
3909
                                    ]
3910
                                ]
3911
                            ],
3912
                            'edit' => [
3913
                                'type' => Segment::class,
3914
                                'options' => [
7834 nelberth 3915
                                    'route' => '/edit/:group_uuid',
4411 nelberth 3916
                                    'constraints' => [
7834 nelberth 3917
                                        'group_uuid' => '[A-Za-z0-9\-]+\=*'
4411 nelberth 3918
                                    ],
3919
                                    'defaults' => [
7224 nelberth 3920
                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsController',
4411 nelberth 3921
                                        'action' => 'edit'
3922
                                    ]
3923
                                ]
3924
                            ],
3925
                            'delete' => [
3926
                                'type' => Segment::class,
3927
                                'options' => [
7834 nelberth 3928
                                    'route' => '/delete/:group_uuid',
4411 nelberth 3929
                                    'constraints' => [
7834 nelberth 3930
                                        'group_uuid' => '[A-Za-z0-9\-]+\=*'
4411 nelberth 3931
                                    ],
3932
                                    'defaults' => [
7224 nelberth 3933
                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsController',
4411 nelberth 3934
                                        'action' => 'delete'
3935
                                    ]
3936
                                ]
7261 nelberth 3937
                            ],'view' => [
4509 nelberth 3938
                                'type' => Segment::class,
3939
                                'options' => [
7834 nelberth 3940
                                    'route' => '/view/:group_uuid',
4509 nelberth 3941
                                    'constraints' => [
7834 nelberth 3942
                                        'group_uuid' => '[A-Za-z0-9\-]+\=*',
4509 nelberth 3943
                                    ],
3944
                                    'defaults' => [
7308 nelberth 3945
                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewController',
4571 nelberth 3946
                                        'action' => 'index'
4509 nelberth 3947
                                    ]
7483 nelberth 3948
                                ],
3949
                                    'may_terminate' => true,
3950
                                    'child_routes' => [
7811 nelberth 3951
                                        'members' => [
7823 nelberth 3952
                                            'type' => Literal::class,
7811 nelberth 3953
                                            'options' => [
3954
                                                'route' => '/members',
3955
                                                'defaults' => [
3956
                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController',
3957
                                                    'action' => 'index'
3958
                                                ]
8012 nelberth 3959
                                            ],'may_terminate' => true,
3960
                                            'child_routes' => [
3961
                                                'invite' => [
3962
                                                    'type' => Segment::class,
3963
                                                    'options' => [
3964
                                                        'route' => '/invite/:user_uuid',
8054 nelberth 3965
                                                        'constraints' => [
3966
                                                            'user_uuid' => '[A-Za-z0-9\-]+\=*'
3967
                                                        ],
8012 nelberth 3968
                                                        'defaults' => [
3969
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController',
3970
                                                            'action' => 'invite'
3971
                                                        ]
3972
                                                    ]
3973
                                                ],
3974
                                                'edit' => [
3975
                                                    'type' => Segment::class,
3976
                                                    'options' => [
8054 nelberth 3977
                                                        'route' => '/edit/:user_uuid',
8012 nelberth 3978
                                                        'constraints' => [
8054 nelberth 3979
                                                            'user_uuid' => '[A-Za-z0-9\-]+\=*'
8012 nelberth 3980
                                                        ],
3981
                                                        'defaults' => [
3982
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController',
3983
                                                            'action' => 'edit'
3984
                                                        ]
3985
                                                    ]
3986
                                                ],
8054 nelberth 3987
                                                'delete' => [
8012 nelberth 3988
                                                    'type' => Segment::class,
3989
                                                    'options' => [
8054 nelberth 3990
                                                        'route' => '/delete[/:user_uuid]',
8012 nelberth 3991
                                                        'constraints' => [
8054 nelberth 3992
                                                            'user_uuid' => '[A-Za-z0-9\-]+\=*'
8012 nelberth 3993
                                                        ],
3994
                                                        'defaults' => [
3995
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController',
8054 nelberth 3996
                                                            'action' => 'delete'
8012 nelberth 3997
                                                        ]
3998
                                                    ]
3999
                                                ],
4000
                                            ]
7811 nelberth 4001
                                        ],
7483 nelberth 4002
                                        'topic' => [
4003
                                            'type' => Literal::class,
4004
                                            'options' => [
4005
                                                'route' => '/topic',
4006
                                                'defaults' => [
7491 nelberth 4007
                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController',
7483 nelberth 4008
                                                    'action' => 'index'
4009
                                                ]
4010
                                            ],'may_terminate' => true,
4011
                                            'child_routes' => [
4012
                                                'add' => [
4013
                                                    'type' => Literal::class,
4014
                                                    'options' => [
4015
                                                        'route' => '/add',
4016
                                                        'defaults' => [
7506 nelberth 4017
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController',
7483 nelberth 4018
                                                            'action' => 'add'
4019
                                                        ]
4020
                                                    ]
4021
                                                ],
4022
                                                'edit' => [
4023
                                                    'type' => Segment::class,
4024
                                                    'options' => [
7834 nelberth 4025
                                                        'route' => '/edit/:topic_uuid',
7483 nelberth 4026
                                                        'constraints' => [
7834 nelberth 4027
                                                            'topic_uuid' => '[A-Za-z0-9\-]+\=*'
7483 nelberth 4028
                                                        ],
4029
                                                        'defaults' => [
7491 nelberth 4030
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController',
7483 nelberth 4031
                                                            'action' => 'edit'
4032
                                                        ]
4033
                                                    ]
4034
                                                ],
7636 nelberth 4035
                                                'view' => [
7629 nelberth 4036
                                                    'type' => Segment::class,
4037
                                                    'options' => [
7834 nelberth 4038
                                                        'route' => '/view[/:topic_uuid]',
7629 nelberth 4039
                                                        'constraints' => [
7834 nelberth 4040
                                                            'topic_uuid' => '[A-Za-z0-9\-]+\=*'
7629 nelberth 4041
                                                        ],
4042
                                                        'defaults' => [
7635 nelberth 4043
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewController',
7629 nelberth 4044
                                                            'action' => 'index'
4045
                                                        ]
4046
                                                    ]
4047
                                                ],
7483 nelberth 4048
                                                'delete' => [
4049
                                                    'type' => Segment::class,
4050
                                                    'options' => [
7834 nelberth 4051
                                                        'route' => '/delete/:topic_uuid',
7483 nelberth 4052
                                                        'constraints' => [
7834 nelberth 4053
                                                            'topic_uuid' => '[A-Za-z0-9\-]+\=*'
7483 nelberth 4054
                                                        ],
4055
                                                        'defaults' => [
7491 nelberth 4056
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController',
7483 nelberth 4057
                                                            'action' => 'delete'
4058
                                                        ]
4059
                                                    ]
4060
                                                ]
4061
                                            ],
4062
                                        ],
4063
 
4064
                                    ],
4065
 
4411 nelberth 4066
                            ],
4067
                        ]
4388 nelberth 4068
                    ],
1333 efrain 4069
                ]
4070
            ],
7224 nelberth 4071
 
4588 nelberth 4072
 
1333 efrain 4073
            'my-trainer' => [
4074
                'type' => Literal::class,
4075
                'options' => [
4076
                    'route' => '/my-trainer',
4077
                    'defaults' => [
4078
                        'controller' => '\LeadersLinked\Controller\UnknownController',
4079
                        'action' => 'index'
4080
                    ]
4081
                ],
4082
                'may_terminate' => true,
4083
                'child_routes' => [
4084
                ]
4085
            ],
4086
 
1 www 4087
        ]
4088
    ],
4089
    'controllers' => [
4090
        'factories' => [
4091
            \LeadersLinked\Controller\AuthController::class => \LeadersLinked\Factory\Controller\AuthControllerFactory::class,
4092
            \LeadersLinked\Controller\FeedController::class => \LeadersLinked\Factory\Controller\FeedControllerFactory::class,
4093
            \LeadersLinked\Controller\FollowerController::class => \LeadersLinked\Factory\Controller\FollowerControllerFactory::class,
4094
            \LeadersLinked\Controller\JobController::class => \LeadersLinked\Factory\Controller\JobControllerFactory::class,
1469 eleazar 4095
            \LeadersLinked\Controller\RecruitmentSelectionController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionFactory::class,
1709 eleazar 4096
            \LeadersLinked\Controller\RecruitmentSelectionInterviewController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionInterviewFactory::class,
1712 eleazar 4097
            \LeadersLinked\Controller\RecruitmentSelectionInterviewFormController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionInterviewFormFactory::class,
1385 eleazar 4098
            \LeadersLinked\Controller\RecruitmentSelectionVacancyController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionVacancyFactory::class,
1459 eleazar 4099
            \LeadersLinked\Controller\RecruitmentSelectionCandidateController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionCandidateFactory::class,
1 www 4100
            \LeadersLinked\Controller\ProfileController::class => \LeadersLinked\Factory\Controller\ProfileControllerFactory::class,
4101
            \LeadersLinked\Controller\CompanyController::class => \LeadersLinked\Factory\Controller\CompanyControllerFactory::class,
4102
            \LeadersLinked\Controller\CompanySizeController::class => \LeadersLinked\Factory\Controller\CompanySizeControllerFactory::class,
1115 geraldo 4103
            \LeadersLinked\Controller\BehaviorsController::class => \LeadersLinked\Factory\Controller\BehaviorsControllerFactory::class,
1 www 4104
            \LeadersLinked\Controller\CompetencyTypeController::class => \LeadersLinked\Factory\Controller\CompetencyTypeControllerFactory::class,
4105
            \LeadersLinked\Controller\CompetencyController::class => \LeadersLinked\Factory\Controller\CompetencyControllerFactory::class,
4106
            \LeadersLinked\Controller\DegreeController::class => \LeadersLinked\Factory\Controller\DegreeControllerFactory::class,
4107
            \LeadersLinked\Controller\EmailTemplateController::class => \LeadersLinked\Factory\Controller\EmailTemplateControllerFactory::class,
4108
            \LeadersLinked\Controller\PushTemplateController::class => \LeadersLinked\Factory\Controller\PushTemplateControllerFactory::class,
4109
            \LeadersLinked\Controller\GroupTypeController::class => \LeadersLinked\Factory\Controller\GroupTypeControllerFactory::class,
4110
            \LeadersLinked\Controller\IndustryController::class => \LeadersLinked\Factory\Controller\IndustryControllerFactory::class,
4111
            \LeadersLinked\Controller\JobCategoryController::class => \LeadersLinked\Factory\Controller\JobCategoryControllerFactory::class,
28 efrain 4112
            \LeadersLinked\Controller\JobDescriptionController::class => \LeadersLinked\Factory\Controller\JobDescriptionControllerFactory::class,
1 www 4113
            \LeadersLinked\Controller\PageController::class => \LeadersLinked\Factory\Controller\PageControllerFactory::class,
67 efrain 4114
            \LeadersLinked\Controller\PositionController::class => \LeadersLinked\Factory\Controller\PositionControllerFactory::class,
1 www 4115
            \LeadersLinked\Controller\PostController::class => \LeadersLinked\Factory\Controller\PostControllerFactory::class,
4116
            \LeadersLinked\Controller\SkillController::class => \LeadersLinked\Factory\Controller\SkillControllerFactory::class,
4117
            \LeadersLinked\Controller\UserController::class => \LeadersLinked\Factory\Controller\UserControllerFactory::class,
4118
            \LeadersLinked\Controller\DashboardController::class => \LeadersLinked\Factory\Controller\DashboardControllerFactory::class,
115 efrain 4119
            \LeadersLinked\Controller\SelfEvaluationController::class => \LeadersLinked\Factory\Controller\SelfEvaluationControllerFactory::class,
4120
            \LeadersLinked\Controller\SelfEvaluationFormController::class => \LeadersLinked\Factory\Controller\SelfEvaluationFormControllerFactory::class,
1089 geraldo 4121
            \LeadersLinked\Controller\SelfEvaluationFormUserController::class => \LeadersLinked\Factory\Controller\SelfEvaluationFormUserControllerFactory::class,
247 geraldo 4122
            \LeadersLinked\Controller\SelfEvaluationReviewController::class => \LeadersLinked\Factory\Controller\SelfEvaluationReviewControllerFactory::class,
4375 eleazar 4123
            \LeadersLinked\Controller\SurveyController::class => \LeadersLinked\Factory\Controller\SurveyControllerFactory::class,
4124
            \LeadersLinked\Controller\SurveyFormController::class => \LeadersLinked\Factory\Controller\SurveyFormControllerFactory::class,
5868 eleazar 4125
            \LeadersLinked\Controller\SurveyReportController::class => \LeadersLinked\Factory\Controller\SurveyReportControllerFactory::class,
5287 eleazar 4126
            \LeadersLinked\Controller\SurveyTestController::class => \LeadersLinked\Factory\Controller\SurveyTestControllerFactory::class,
7218 eleazar 4127
            \LeadersLinked\Controller\OrganizationalClimateController::class => \LeadersLinked\Factory\Controller\OrganizationalClimateControllerFactory::class,
4128
            \LeadersLinked\Controller\OrganizationalClimateFormController::class => \LeadersLinked\Factory\Controller\OrganizationalClimateFormControllerFactory::class,
4129
            \LeadersLinked\Controller\OrganizationalClimateReportController::class => \LeadersLinked\Factory\Controller\OrganizationalClimateReportControllerFactory::class,
4130
            \LeadersLinked\Controller\OrganizationalClimateTestController::class => \LeadersLinked\Factory\Controller\OrganizationalClimateTestControllerFactory::class,
987 geraldo 4131
            \LeadersLinked\Controller\PerformanceEvaluationFormController::class => \LeadersLinked\Factory\Controller\PerformanceEvaluationFormControllerFactory::class,
1383 efrain 4132
            \LeadersLinked\Controller\PerformanceEvaluationEvaluationController::class => \LeadersLinked\Factory\Controller\PerformanceEvaluationEvaluationControllerFactory::class,
1 www 4133
            \LeadersLinked\Controller\MicrolearningController::class => \LeadersLinked\Factory\Controller\MicrolearningControllerFactory::class,
66 efrain 4134
            \LeadersLinked\Controller\MicrolearningQuizController::class => \LeadersLinked\Factory\Controller\MicrolearningQuizControllerFactory::class,
4135
            \LeadersLinked\Controller\MicrolearningQuestionController::class => \LeadersLinked\Factory\Controller\MicrolearningQuestionControllerFactory::class,
4136
            \LeadersLinked\Controller\MicrolearningAnswerController::class => \LeadersLinked\Factory\Controller\MicrolearningAnswerControllerFactory::class,
1 www 4137
            \LeadersLinked\Controller\MicrolearningTopicController::class => \LeadersLinked\Factory\Controller\MicrolearningTopicControllerFactory::class,
4138
            \LeadersLinked\Controller\MicrolearningCapsuleController::class => \LeadersLinked\Factory\Controller\MicrolearningCapsuleControllerFactory::class,
4139
            \LeadersLinked\Controller\MicrolearningSlideController::class => \LeadersLinked\Factory\Controller\MicrolearningSlideControllerFactory::class,
4140
            \LeadersLinked\Controller\MicrolearningAccessForStudentsController::class => \LeadersLinked\Factory\Controller\MicrolearningAccessForStudentsControllerFactory::class,
4141
            \LeadersLinked\Controller\MicrolearningStudentsController::class => \LeadersLinked\Factory\Controller\MicrolearningStudentsControllerFactory::class,
4142
            \LeadersLinked\Controller\MicrolearningReportsController::class => \LeadersLinked\Factory\Controller\MicrolearningReportsControllerFactory::class,
4143
            \LeadersLinked\Controller\MicrolearningExtendUserCompanyController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserCompanyControllerFactory::class,
4144
            \LeadersLinked\Controller\MicrolearningExtendUserFunctionController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserFunctionControllerFactory::class,
4145
            \LeadersLinked\Controller\MicrolearningExtendUserGroupController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserGroupControllerFactory::class,
4146
            \LeadersLinked\Controller\MicrolearningExtendUserInstitutionController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserInstitutionControllerFactory::class,
4147
            \LeadersLinked\Controller\MicrolearningExtendUserPartnerController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserPartnerControllerFactory::class,
4148
            \LeadersLinked\Controller\MicrolearningExtendUserProgramController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserProgramControllerFactory::class,
4149
            \LeadersLinked\Controller\MicrolearningExtendUserSectorController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserSectorControllerFactory::class,
4150
            \LeadersLinked\Controller\MicrolearningExtendUserStudentTypeController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserStudentTypeControllerFactory::class,
4151
            \LeadersLinked\Controller\StorageController::class => \LeadersLinked\Factory\Controller\StorageControllerFactory::class,
2232 nelberth 4152
            \LeadersLinked\Controller\PlanningObjectivesAndGoalsController::class => \LeadersLinked\Factory\Controller\PlanningObjectivesAndGoalsControllerFactory::class,
2228 nelberth 4153
            \LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController::class => \LeadersLinked\Factory\Controller\PlanningObjectivesAndGoalsObjectivesControllerFactory::class,
2327 nelberth 4154
            \LeadersLinked\Controller\PlanningObjectivesAndGoalsGoalsController::class => \LeadersLinked\Factory\Controller\PlanningObjectivesAndGoalsGoalsControllerFactory::class,
2517 nelberth 4155
            \LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController::class => \LeadersLinked\Factory\Controller\PlanningObjectivesAndGoalsTaskControllerFactory::class,
4377 nelberth 4156
            \LeadersLinked\Controller\HighPerformanceTeamsController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsControllerFactory::class,
7224 nelberth 4157
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsControllerFactory::class,
7308 nelberth 4158
 
4159
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewControllerFactory::class,
7494 nelberth 4160
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewTopicControllerFactory::class,
7811 nelberth 4161
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsMembersControllerFactory::class,
1333 efrain 4162
 
4163
 
1666 nelberth 4164
 
1333 efrain 4165
            \LeadersLinked\Controller\UnknownController::class => \LeadersLinked\Factory\Controller\UnknownControllerFactory::class,
66 efrain 4166
            \LeadersLinked\Controller\TestController::class => \LeadersLinked\Factory\Controller\TestControllerFactory::class,
1 www 4167
        ],
4168
        'aliases' => [
4169
            '\LeadersLinked\Controller\AuthController' => \LeadersLinked\Controller\AuthController::class,
4170
            '\LeadersLinked\Controller\FollowerController' => \LeadersLinked\Controller\FollowerController::class,
4171
            '\LeadersLinked\Controller\FeedController' => \LeadersLinked\Controller\FeedController::class,
4172
            '\LeadersLinked\Controller\JobController' => \LeadersLinked\Controller\JobController::class,
1343 eleazar 4173
            '\LeadersLinked\Controller\RecruitmentSelectionController' => \LeadersLinked\Controller\RecruitmentSelectionController::class,
1385 eleazar 4174
            '\LeadersLinked\Controller\RecruitmentSelectionVacancyController' => \LeadersLinked\Controller\RecruitmentSelectionVacancyController::class,
1459 eleazar 4175
            '\LeadersLinked\Controller\RecruitmentSelectionCandidateController' => \LeadersLinked\Controller\RecruitmentSelectionCandidateController::class,
1712 eleazar 4176
            '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController' => \LeadersLinked\Controller\RecruitmentSelectionInterviewFormController::class,
1 www 4177
            '\LeadersLinked\Controller\ProfileController' => \LeadersLinked\Controller\ProfileController::class,
4178
            '\LeadersLinked\Controller\CompanyController' => \LeadersLinked\Controller\CompanyController::class,
4179
            '\LeadersLinked\Controller\CompanySizeController' => \LeadersLinked\Controller\CompanySizeController::class,
4180
            '\LeadersLinked\Controller\CompetencyTypeController' => \LeadersLinked\Controller\CompetencyTypeController::class,
1102 geraldo 4181
            '\LeadersLinked\Controller\BehaviorsController' => \LeadersLinked\Controller\BehaviorsController::class,
1 www 4182
            '\LeadersLinked\Controller\CompetencyController' => \LeadersLinked\Controller\CompetencyController::class,
4183
            '\LeadersLinked\Controller\DegreeController' => \LeadersLinked\Controller\DegreeController::class,
4184
            '\LeadersLinked\Controller\EmailTemplateController' => \LeadersLinked\Controller\EmailTemplateController::class,
1089 geraldo 4185
            '\LeadersLinked\Controller\PushTemplateController' => \LeadersLinked\Controller\PushTemplateController::class,
1 www 4186
            '\LeadersLinked\Controller\GroupTypeController' => \LeadersLinked\Controller\GroupTypeController::class,
4187
            '\LeadersLinked\Controller\IndustryController' => \LeadersLinked\Controller\IndustryController::class,
4188
            '\LeadersLinked\Controller\JobCategoryController' => \LeadersLinked\Controller\JobCategoryController::class,
66 efrain 4189
            '\LeadersLinked\Controller\JobDescriptionController' => \LeadersLinked\Controller\JobDescriptionController::class,
1 www 4190
            '\LeadersLinked\Controller\PageController' => \LeadersLinked\Controller\PageController::class,
67 efrain 4191
            '\LeadersLinked\Controller\PositionController' => \LeadersLinked\Controller\PositionController::class,
1 www 4192
            '\LeadersLinked\Controller\PostController' => \LeadersLinked\Controller\PostController::class,
4193
            '\LeadersLinked\Controller\SkillController' => \LeadersLinked\Controller\SkillController::class,
4194
            '\LeadersLinked\Controller\UserController' => \LeadersLinked\Controller\UserController::class,
4195
            '\LeadersLinked\Controller\DashboardController' => \LeadersLinked\Controller\DashboardController::class,
115 efrain 4196
            '\LeadersLinked\Controller\SelfEvaluationController' => \LeadersLinked\Controller\SelfEvaluationController::class,
4197
            '\LeadersLinked\Controller\SelfEvaluationFormController' => \LeadersLinked\Controller\SelfEvaluationFormController::class,
4198
            '\LeadersLinked\Controller\SelfEvaluationFormUserController' => \LeadersLinked\Controller\SelfEvaluationFormUserController::class,
247 geraldo 4199
            '\LeadersLinked\Controller\SelfEvaluationReviewController' => \LeadersLinked\Controller\SelfEvaluationReviewController::class,
4375 eleazar 4200
            '\LeadersLinked\Controller\SurveyController' => \LeadersLinked\Controller\SurveyController::class,
4201
            '\LeadersLinked\Controller\SurveyFormController' => \LeadersLinked\Controller\SurveyFormController::class,
5868 eleazar 4202
            '\LeadersLinked\Controller\SurveyReportController' => \LeadersLinked\Controller\SurveyReportController::class,
5287 eleazar 4203
            '\LeadersLinked\Controller\SurveyTestController' => \LeadersLinked\Controller\SurveyTestController::class,
7218 eleazar 4204
            '\LeadersLinked\Controller\OrganizationalClimateController' => \LeadersLinked\Controller\OrganizationalClimateController::class,
4205
            '\LeadersLinked\Controller\OrganizationalClimateFormController' => \LeadersLinked\Controller\OrganizationalClimateFormController::class,
4206
            '\LeadersLinked\Controller\OrganizationalClimateReportController' => \LeadersLinked\Controller\OrganizationalClimateReportController::class,
4207
            '\LeadersLinked\Controller\OrganizationalClimateTestController' => \LeadersLinked\Controller\OrganizationalClimateTestController::class,
982 geraldo 4208
            '\LeadersLinked\Controller\PerformanceEvaluationFormController' => \LeadersLinked\Controller\PerformanceEvaluationFormController::class,
1383 efrain 4209
            '\LeadersLinked\Controller\PerformanceEvaluationEvaluationController' => \LeadersLinked\Controller\PerformanceEvaluationEvaluationController::class,
1 www 4210
            '\LeadersLinked\Controller\MicrolearningController' => \LeadersLinked\Controller\MicrolearningController::class,
66 efrain 4211
            '\LeadersLinked\Controller\MicrolearningQuizController' => \LeadersLinked\Controller\MicrolearningQuizController::class,
4212
            '\LeadersLinked\Controller\MicrolearningQuestionController' => \LeadersLinked\Controller\MicrolearningQuestionController::class,
4213
            '\LeadersLinked\Controller\MicrolearningAnswerController' => \LeadersLinked\Controller\MicrolearningAnswerController::class,
1 www 4214
            '\LeadersLinked\Controller\MicrolearningTopicController' => \LeadersLinked\Controller\MicrolearningTopicController::class,
4215
            '\LeadersLinked\Controller\MicrolearningCapsuleController' => \LeadersLinked\Controller\MicrolearningCapsuleController::class,
4216
            '\LeadersLinked\Controller\MicrolearningSlideController' => \LeadersLinked\Controller\MicrolearningSlideController::class,
4217
            '\LeadersLinked\Controller\MicrolearningStudentsController' => \LeadersLinked\Controller\MicrolearningStudentsController::class,
4218
            '\LeadersLinked\Controller\MicrolearningAccessForStudentsController' => \LeadersLinked\Controller\MicrolearningAccessForStudentsController::class,
4219
            '\LeadersLinked\Controller\MicrolearningReportsController' => \LeadersLinked\Controller\MicrolearningReportsController::class,
4220
            '\LeadersLinked\Controller\MicrolearningExtendUserCompanyController' => \LeadersLinked\Controller\MicrolearningExtendUserCompanyController::class,
4221
            '\LeadersLinked\Controller\MicrolearningExtendUserFunctionController' => \LeadersLinked\Controller\MicrolearningExtendUserFunctionController::class,
4222
            '\LeadersLinked\Controller\MicrolearningExtendUserGroupController' => \LeadersLinked\Controller\MicrolearningExtendUserGroupController::class,
4223
            '\LeadersLinked\Controller\MicrolearningExtendUserInstitutionController' => \LeadersLinked\Controller\MicrolearningExtendUserInstitutionController::class,
4224
            '\LeadersLinked\Controller\MicrolearningExtendUserPartnerController' => \LeadersLinked\Controller\MicrolearningExtendUserPartnerController::class,
4225
            '\LeadersLinked\Controller\MicrolearningExtendUserProgramController' => \LeadersLinked\Controller\MicrolearningExtendUserProgramController::class,
4226
            '\LeadersLinked\Controller\MicrolearningExtendUserSectorController' => \LeadersLinked\Controller\MicrolearningExtendUserSectorController::class,
4227
            '\LeadersLinked\Controller\MicrolearningExtendUserStudentTypeController' => \LeadersLinked\Controller\MicrolearningExtendUserStudentTypeController::class,
4228
            '\LeadersLinked\Controller\StorageController' => \LeadersLinked\Controller\StorageController::class,
2232 nelberth 4229
            '\LeadersLinked\Controller\PlanningObjectivesAndGoalsController' => \LeadersLinked\Controller\PlanningObjectivesAndGoalsController::class,
2228 nelberth 4230
            '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController' => \LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController::class,
2517 nelberth 4231
            '\LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController' => \LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController::class,
4377 nelberth 4232
            '\LeadersLinked\Controller\PlanningObjectivesAndGoalsGoalsController' => \LeadersLinked\Controller\PlanningObjectivesAndGoalsGoalsController::class,
4233
 
4234
            '\LeadersLinked\Controller\HighPerformanceTeamsController' => \LeadersLinked\Controller\HighPerformanceTeamsController::class,
7224 nelberth 4235
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsController::class,
7308 nelberth 4236
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewController::class,
7494 nelberth 4237
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController::class,
7811 nelberth 4238
 
4239
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController::class,
66 efrain 4240
            '\LeadersLinked\Controller\TestController' => \LeadersLinked\Controller\TestController::class,
1333 efrain 4241
            '\LeadersLinked\Controller\UnknownController' => \LeadersLinked\Controller\UnknownController::class,
1 www 4242
        ]
4243
    ],
4244
    'laminas-cli' => [
4245
        'commands' => [
1089 geraldo 4246
        ]
1 www 4247
    ],
4248
    'service_manager' => [
4249
        'abstract_factories' => [
4250
            \Laminas\Db\Adapter\AdapterAbstractServiceFactory::class
4251
        ],
4252
        'factories' => [
4253
            'RenderingStrategy' => function ($container) {
4254
                $translator = $container->get('MvcTranslator');
4255
                return new \LeadersLinked\View\RenderingStrategy($translator);
4256
            },
4257
            'menuNavigation' => \LeadersLinked\Navigation\MenuNavigation::class,
4258
            'footerNavigation' => \LeadersLinked\Navigation\FooterNavigation::class,
1089 geraldo 4259
        ],
4260
        'aliases' => [// 'leaders-linked-storage' => \LeadersLinked\Service\StorageService::class
1 www 4261
        ]
4262
    ],
4263
    'view_helpers' => [
4264
        'factories' => [
4265
            \LeadersLinked\Helper\CurrentUserHelper::class => \LeadersLinked\Factory\Helper\CurrentUserHelperFactory::class,
4600 nelberth 4266
 
1 www 4267
        ],
4268
        'invokables' => [
4269
            'menuHelper' => \LeadersLinked\Helper\MenuHelper::class,
4270
        ],
4271
        'aliases' => [
4272
            'currentUserHelper' => \LeadersLinked\Helper\CurrentUserHelper::class,
4600 nelberth 4273
 
1 www 4274
        ]
4275
    ],
4276
    'controller_plugins' => [
4277
        'invokables' => [],
4278
        'factories' => [
4279
            \LeadersLinked\Plugin\CurrentUserPlugin::class => \LeadersLinked\Factory\Plugin\CurrentUserPluginFactory::class
4280
        ],
4281
        'aliases' => [
4282
            'currentUserPlugin' => \LeadersLinked\Plugin\CurrentUserPlugin::class
4283
        ]
4284
    ],
4285
    'view_manager' => [
4286
        'display_not_found_reason' => true,
4287
        'display_exceptions' => true,
4288
        'doctype' => 'HTML5',
4289
        'not_found_template' => 'error/404',
4290
        'exception_template' => 'error/index',
4291
        'template_map' => [
4292
            'layout/layout' => __DIR__ . '/../view/layout/layout.phtml',
4293
            'error/404' => __DIR__ . '/../view/error/404.phtml',
4294
            'error/index' => __DIR__ . '/../view/error/index.phtml'
4295
        ],
4296
        'template_path_stack' => [
4297
            __DIR__ . '/../view'
4298
        ],
4299
        'strategies' => [
4300
            'ViewJsonStrategy',
4301
            'RenderingStrategy'
4302
        ]
4303
    ]
4304
];
4305