Proyectos de Subversion LeadersLinked - Backend

Rev

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