Proyectos de Subversion LeadersLinked - Backend

Rev

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