Proyectos de Subversion LeadersLinked - Backend

Rev

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