Proyectos de Subversion LeadersLinked - Backend

Rev

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