Proyectos de Subversion LeadersLinked - Backend

Rev

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