Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 17007 | Rev 17012 | 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;
1089 geraldo 9
 
16785 efrain 10
 
1 www 11
return [
12
    'navigation' => [
15607 anderson 13
        'menu' => [],
14
        'footer' => []
1 www 15
    ],
16
    'router' => [
17
        'routes' => [
18
            'home' => [
19
                'type' => Literal::class,
20
                'options' => [
21
                    'route' => '/',
22
                    'defaults' => [
23
                        'controller' => '\LeadersLinked\Controller\AuthController',
24
                        'action' => 'index'
25
                    ]
26
                ]
27
            ],
28
            'signin-company' => [
29
                'type' => Literal::class,
30
                'options' => [
31
                    'route' => '/signin-company',
32
                    'defaults' => [
33
                        'controller' => '\LeadersLinked\Controller\AuthController',
34
                        'action' => 'signinCompany'
35
                    ]
36
                ],
37
                'may_terminate' => true,
38
            ],
39
            'signin-admin' => [
40
                'type' => Literal::class,
41
                'options' => [
42
                    'route' => '/signin-admin',
43
                    'defaults' => [
44
                        'controller' => '\LeadersLinked\Controller\AuthController',
45
                        'action' => 'signinAdmin'
46
                    ]
47
                ],
48
                'may_terminate' => true,
49
            ],
50
            'signout' => [
51
                'type' => Literal::class,
52
                'options' => [
53
                    'route' => '/signout',
54
                    'defaults' => [
55
                        'controller' => '\LeadersLinked\Controller\AuthController',
56
                        'action' => 'signout'
57
                    ]
58
                ],
59
                'may_terminate' => true,
60
            ],
61
            'dashboard' => [
62
                'type' => Literal::class,
63
                'options' => [
64
                    'route' => '/dashboard',
65
                    'defaults' => [
66
                        'controller' => '\LeadersLinked\Controller\DashboardController',
67
                        'action' => 'index'
68
                    ]
69
                ]
70
            ],
16806 efrain 71
 
17003 efrain 72
 
16806 efrain 73
            /** INICIO ORGANIZACION DEL MENU **/
74
 
75
            'admin-activities' => [
76
                'type' => Literal::class,
77
                'options' => [
78
                    'route' => '/admin-activities',
79
                    'defaults' => [
80
                        'controller' => '\LeadersLinked\Controller\UnknownController',
81
                        'action' => 'index'
82
                    ]
83
                ],
84
                'may_terminate' => true,
85
                'child_routes' => [
86
                ]
87
            ],
88
 
89
 
90
            'people-management' => [
91
                'type' => Literal::class,
92
                'options' => [
93
                    'route' => '/people-management',
94
                    'defaults' => [
95
                        'controller' => '\LeadersLinked\Controller\UnknownController',
96
                        'action' => 'index'
97
                    ]
98
                ],
99
                'may_terminate' => true,
100
                'child_routes' => [
101
                ]
102
            ],
103
 
104
 
105
 
106
            'development-and-knowledge' => [
107
                'type' => Literal::class,
108
                'options' => [
109
                    'route' => '/development-and-knowledge',
110
                    'defaults' => [
111
                        'controller' => '\LeadersLinked\Controller\UnknownController',
112
                        'action' => 'index'
113
                    ]
114
                ],
115
                'may_terminate' => true,
116
                'child_routes' => [
117
                ]
118
            ],
119
            'management' => [
120
                'type' => Literal::class,
121
                'options' => [
122
                    'route' => '/management',
123
                    'defaults' => [
124
                        'controller' => '\LeadersLinked\Controller\UnknownController',
125
                        'action' => 'index'
126
                    ]
127
                ],
128
                'may_terminate' => true,
129
                'child_routes' => [
130
                ]
131
            ],
132
            'organizational-design' => [
133
                'type' => Literal::class,
134
                'options' => [
135
                    'route' => '/organizational-design',
136
                    'defaults' => [
137
                        'controller' => '\LeadersLinked\Controller\UnknownController',
138
                        'action' => 'index'
139
                    ]
140
                ],
141
                'may_terminate' => true,
142
                'child_routes' => [
143
                ]
144
            ],
145
            'company-options' => [
146
                'type' => Literal::class,
147
                'options' => [
148
                    'route' => '/company-options',
149
                    'defaults' => [
150
                        'controller' => '\LeadersLinked\Controller\UnknownController',
151
                        'action' => 'index'
152
                    ]
153
                ],
154
                'may_terminate' => true,
155
                'child_routes' => [
156
                ]
157
            ],
158
 
159
            /** FIN ORGANIZACION DEL MENU **/
160
 
161
 
1089 geraldo 162
            /*             * *** START TEST **** */
66 efrain 163
            'test' => [
164
                'type' => Literal::class,
165
                'options' => [
166
                    'route' => '/test',
167
                    'defaults' => [
168
                        'controller' => '\LeadersLinked\Controller\TestController',
169
                        'action' => 'index'
170
                    ]
171
                ],
172
                'may_terminate' => true,
173
                'child_routes' => [
174
                    'method-one' => [
175
                        'type' => Literal::class,
176
                        'options' => [
177
                            'route' => '/method-one',
178
                            'defaults' => [
179
                                'controller' => '\LeadersLinked\Controller\TestController',
180
                                'action' => 'methodOne'
181
                            ]
182
                        ]
183
                    ],
184
                    'method-one' => [
185
                        'type' => Literal::class,
186
                        'options' => [
187
                            'route' => '/method-one',
188
                            'defaults' => [
189
                                'controller' => '\LeadersLinked\Controller\TestController',
190
                                'action' => 'methodOne'
191
                            ]
192
                        ]
193
                    ],
194
                    'method-two' => [
195
                        'type' => Literal::class,
196
                        'options' => [
197
                            'route' => '/method-two',
198
                            'defaults' => [
199
                                'controller' => '\LeadersLinked\Controller\TestController',
200
                                'action' => 'methodTwo'
201
                            ]
202
                        ]
203
                    ],
204
                    'method-three' => [
205
                        'type' => Literal::class,
206
                        'options' => [
207
                            'route' => '/method-three',
208
                            'defaults' => [
209
                                'controller' => '\LeadersLinked\Controller\TestController',
210
                                'action' => 'methodThree'
211
                            ]
212
                        ]
213
                    ],
214
                    'method-four' => [
215
                        'type' => Literal::class,
216
                        'options' => [
217
                            'route' => '/method-four',
218
                            'defaults' => [
219
                                'controller' => '\LeadersLinked\Controller\TestController',
220
                                'action' => 'methodFour'
221
                            ]
222
                        ]
223
                    ],
224
                ],
1089 geraldo 225
            ],
15607 anderson 226
 
15442 efrain 227
            'activities-center' => [
228
                'type' => Literal::class,
229
                'options' => [
230
                    'route' => '/activities-center',
231
                    'defaults' => [
232
                        'controller' => '\LeadersLinked\Controller\ActivityCenterController',
233
                        'action' => 'index'
234
                    ]
235
                ],
236
                'may_terminate' => true,
237
                'child_routes' => [
238
                    'performance-evaluation' => [
239
                        'type' => Literal::class,
240
                        'options' => [
241
                            'route' => '/performance-evaluation',
242
                            'defaults' => [
243
                                'controller' => '\LeadersLinked\Controller\ActivityCenterPerformanceEvaluationController',
244
                                'action' => 'index'
245
                            ]
246
                        ],
247
                        'may_terminate' => true,
248
                        'child_routes' => [
249
                            'take-a-test' => [
250
                                'type' => Segment::class,
251
                                'options' => [
252
                                    'route' => '/take-a-test/:id',
253
                                    'constraints' => [
254
                                        'id' => '[A-Za-z0-9\-]+\=*'
255
                                    ],
256
                                    'defaults' => [
257
                                        'controller' => '\LeadersLinked\Controller\ActivityCenterPerformanceEvaluationController',
258
                                        'action' => 'takeaTest'
259
                                    ]
260
                                ]
261
                            ],
262
                            'report' => [
263
                                'type' => Segment::class,
264
                                'options' => [
265
                                    'route' => '/report/:id',
266
                                    'constraints' => [
267
                                        'id' => '[A-Za-z0-9\-]+\=*'
268
                                    ],
269
                                    'defaults' => [
15607 anderson 270
                                        'controller' => '\LeadersLinked\Controller\ActivityCenterPerformanceEvaluationController',
15442 efrain 271
                                        'action' => 'report'
272
                                    ]
273
                                ]
274
                            ],
15607 anderson 275
                        ]
15442 efrain 276
                    ],
15461 efrain 277
                    'recruitment-and-selection' => [
278
                        'type' => Literal::class,
279
                        'options' => [
280
                            'route' => '/recruitment-and-selection',
281
                            'defaults' => [
282
                                'controller' => '\LeadersLinked\Controller\ActivityCenterRecruitmentSelectionController',
283
                                'action' => 'index'
284
                            ]
285
                        ],
286
                        'may_terminate' => true,
287
                        'child_routes' => [
288
                            'take-a-test' => [
289
                                'type' => Segment::class,
290
                                'options' => [
291
                                    'route' => '/take-a-test/:id',
292
                                    'constraints' => [
293
                                        'id' => '[A-Za-z0-9\-]+\=*'
294
                                    ],
295
                                    'defaults' => [
296
                                        'controller' => '\LeadersLinked\Controller\ActivityCenterRecruitmentSelectionController',
297
                                        'action' => 'takeaTest'
298
                                    ]
299
                                ]
300
                            ],
301
                            'report' => [
302
                                'type' => Segment::class,
303
                                'options' => [
304
                                    'route' => '/report/:id',
305
                                    'constraints' => [
306
                                        'id' => '[A-Za-z0-9\-]+\=*'
307
                                    ],
308
                                    'defaults' => [
15607 anderson 309
                                        'controller' => '\LeadersLinked\Controller\ActivityCenterRecruitmentSelectionController',
15461 efrain 310
                                        'action' => 'report'
311
                                    ]
312
                                ]
313
                            ],
314
                        ]
315
                    ],
316
 
16817 efrain 317
                    'organizational-climate' => [
318
                        'type' => Literal::class,
319
                        'options' => [
320
                            'route' => '/organizational-climate',
321
                            'defaults' => [
322
                                'controller' => '\LeadersLinked\Controller\ActivityCenterOrganizationalClimateController',
323
                                'action' => 'index'
324
                            ]
325
                        ],
326
                        'may_terminate' => true,
327
                        'child_routes' => [
328
                            'take-a-test' => [
329
                                'type' => Segment::class,
330
                                'options' => [
331
                                    'route' => '/take-a-test/:id',
332
                                    'constraints' => [
333
                                        'id' => '[A-Za-z0-9\-]+\=*'
334
                                    ],
335
                                    'defaults' => [
336
                                        'controller' => '\LeadersLinked\Controller\ActivityCenterOrganizationalClimateController',
337
                                        'action' => 'takeaTest'
338
                                    ]
339
                                ]
340
                            ],
341
                            'report' => [
342
                                'type' => Segment::class,
343
                                'options' => [
344
                                    'route' => '/report/:id',
345
                                    'constraints' => [
346
                                        'id' => '[A-Za-z0-9\-]+\=*'
347
                                    ],
348
                                    'defaults' => [
349
                                        'controller' => '\LeadersLinked\Controller\ActivityCenterOrganizationalClimateController',
350
                                        'action' => 'report'
351
                                    ]
352
                                ]
353
                            ],
354
                        ]
355
                    ],
356
 
357
                    'survey' => [
358
                        'type' => Literal::class,
359
                        'options' => [
360
                            'route' => '/survey',
361
                            'defaults' => [
362
                                'controller' => '\LeadersLinked\Controller\ActivityCenterSurveyController',
363
                                'action' => 'index'
364
                            ]
365
                        ],
366
                        'may_terminate' => true,
367
                        'child_routes' => [
368
                            'take-a-test' => [
369
                                'type' => Segment::class,
370
                                'options' => [
371
                                    'route' => '/take-a-test/:id',
372
                                    'constraints' => [
373
                                        'id' => '[A-Za-z0-9\-]+\=*'
374
                                    ],
375
                                    'defaults' => [
376
                                        'controller' => '\LeadersLinked\Controller\ActivityCenterSurveyController',
377
                                        'action' => 'takeaTest'
378
                                    ]
379
                                ]
380
                            ],
381
                            'report' => [
382
                                'type' => Segment::class,
383
                                'options' => [
384
                                    'route' => '/report/:id',
385
                                    'constraints' => [
386
                                        'id' => '[A-Za-z0-9\-]+\=*'
387
                                    ],
388
                                    'defaults' => [
389
                                        'controller' => '\LeadersLinked\Controller\ActivityCenterSurveyController',
390
                                        'action' => 'report'
391
                                    ]
392
                                ]
393
                            ],
394
                        ]
395
                    ],
1089 geraldo 396
 
15607 anderson 397
 
398
                ]
399
            ],
400
 
16822 efrain 401
            /* * * START COMPANIES ** */
1 www 402
            'companies' => [
403
                'type' => Literal::class,
404
                'options' => [
405
                    'route' => '/companies',
406
                    'defaults' => [
407
                        'controller' => '\LeadersLinked\Controller\CompanyController',
408
                        'action' => 'index'
409
                    ]
410
                ],
411
                'may_terminate' => true,
412
                'child_routes' => [
413
                    'services' => [
414
                        'type' => Segment::class,
415
                        'options' => [
416
                            'route' => '/services/:id',
417
                            'constraints' => [
418
                                'id' => '[A-Za-z0-9\-]+\=*'
419
                            ],
420
                            'defaults' => [
421
                                'controller' => '\LeadersLinked\Controller\CompanyController',
422
                                'action' => 'services'
423
                            ]
424
                        ]
425
                    ],
426
                    'roles' => [
427
                        'type' => Segment::class,
428
                        'options' => [
429
                            'route' => '/roles/:id',
430
                            'constraints' => [
431
                                'id' => '[A-Za-z0-9\-]+\=*'
432
                            ],
433
                            'defaults' => [
434
                                'controller' => '\LeadersLinked\Controller\CompanyController',
435
                                'action' => 'roles'
436
                            ]
437
                        ]
438
                    ],
439
                    'edit' => [
440
                        'type' => Segment::class,
441
                        'options' => [
442
                            'route' => '/edit/:id',
443
                            'constraints' => [
444
                                'id' => '[A-Za-z0-9\-]+\=*'
445
                            ],
446
                            'defaults' => [
447
                                'controller' => '\LeadersLinked\Controller\CompanyController',
448
                                'action' => 'edit'
449
                            ]
450
                        ]
451
                    ],
452
                ],
1089 geraldo 453
            ],
15387 efrain 454
            /*             * * REPORTS ** */
455
            'reports' => [
456
                'type' => Literal::class,
457
                'options' => [
458
                    'route' => '/reports',
459
                    'defaults' => [
460
                        'controller' => '\LeadersLinked\Controller\ReportController',
461
                        'action' => 'index'
462
                    ]
463
                ],
464
                'may_terminate' => true,
465
                'child_routes' => [
466
                    'users-blocked' => [
467
                        'type' => Literal::class,
468
                        'options' => [
469
                            'route' => '/users-blocked',
15607 anderson 470
 
15387 efrain 471
                            'defaults' => [
472
                                'controller' => '\LeadersLinked\Controller\ReportController',
473
                                'action' => 'usersBlocked'
474
                            ]
475
                        ],
476
                        'may_terminate' => true,
477
                        'child_routes' => [
16932 efrain 478
                            'download' => [
15387 efrain 479
                                'type' => Literal::class,
480
                                'options' => [
16932 efrain 481
                                    'route' => '/download',
15387 efrain 482
                                    'defaults' => [
483
                                        'controller' => '\LeadersLinked\Controller\ReportController',
484
                                        'action' => 'usersBlockedExcel'
485
                                    ]
486
                                ]
487
                            ],
15607 anderson 488
                        ]
15387 efrain 489
                    ],
490
                ],
491
            ],
15607 anderson 492
 
16822 efrain 493
            /* * * START USERS ** */
1 www 494
            'users' => [
495
                'type' => Literal::class,
496
                'options' => [
497
                    'route' => '/users',
498
                    'defaults' => [
499
                        'controller' => '\LeadersLinked\Controller\UserController',
500
                        'action' => 'index'
501
                    ]
502
                ],
503
                'may_terminate' => true,
504
                'child_routes' => [
16248 efrain 505
                    'change-type' => [
506
                        'type' => Segment::class,
507
                        'options' => [
508
                            'route' => '/change-type/:id',
509
                            'constraints' => [
510
                                'id' => '[A-Za-z0-9\-]+\=*'
511
                            ],
512
                            'defaults' => [
513
                                'controller' => '\LeadersLinked\Controller\UserController',
514
                                'action' => 'changeType'
515
                            ]
516
                        ]
517
                    ],
1 www 518
                    'change-password' => [
519
                        'type' => Segment::class,
520
                        'options' => [
521
                            'route' => '/change-password/:id',
522
                            'constraints' => [
523
                                'id' => '[A-Za-z0-9\-]+\=*'
524
                            ],
525
                            'defaults' => [
526
                                'controller' => '\LeadersLinked\Controller\UserController',
16248 efrain 527
                                'action' => 'changePassword'
1 www 528
                            ]
529
                        ]
530
                    ],
531
                    'unblock' => [
532
                        'type' => Segment::class,
533
                        'options' => [
534
                            'route' => '/unblock/:id',
535
                            'constraints' => [
536
                                'id' => '[A-Za-z0-9\-]+\=*'
537
                            ],
538
                            'defaults' => [
539
                                'controller' => '\LeadersLinked\Controller\UserController',
540
                                'action' => 'unblock'
541
                            ]
542
                        ]
543
                    ],
129 efrain 544
                    'email-verify' => [
545
                        'type' => Segment::class,
546
                        'options' => [
547
                            'route' => '/email-verify/:id',
548
                            'constraints' => [
549
                                'id' => '[A-Za-z0-9\-]+\=*'
550
                            ],
551
                            'defaults' => [
552
                                'controller' => '\LeadersLinked\Controller\UserController',
553
                                'action' => 'emailVerify'
554
                            ]
555
                        ]
556
                    ],
1 www 557
                    'invite' => [
558
                        'type' => Segment::class,
559
                        'options' => [
560
                            'route' => '/invite',
561
                            'defaults' => [
562
                                'controller' => '\LeadersLinked\Controller\UserController',
563
                                'action' => 'invite'
564
                            ]
565
                        ]
566
                    ],
567
                    'accept' => [
568
                        'type' => Segment::class,
569
                        'options' => [
570
                            'route' => '/accept/:id',
571
                            'constraints' => [
572
                                'id' => '[A-Za-z0-9\-]+\=*'
573
                            ],
574
                            'defaults' => [
575
                                'controller' => '\LeadersLinked\Controller\UserController',
576
                                'action' => 'accept'
577
                            ]
578
                        ]
579
                    ],
580
                    'cancel' => [
581
                        'type' => Segment::class,
582
                        'options' => [
583
                            'route' => '/cancel/:id',
584
                            'constraints' => [
585
                                'id' => '[A-Za-z0-9\-]+\=*'
586
                            ],
587
                            'defaults' => [
588
                                'controller' => '\LeadersLinked\Controller\UserController',
589
                                'action' => 'cancel'
590
                            ]
591
                        ]
592
                    ],
593
                    'reject' => [
594
                        'type' => Segment::class,
595
                        'options' => [
596
                            'route' => '/reject/:id',
597
                            'constraints' => [
598
                                'id' => '[A-Za-z0-9\-]+\=*'
599
                            ],
600
                            'defaults' => [
601
                                'controller' => '\LeadersLinked\Controller\UserController',
602
                                'action' => 'reject'
603
                            ]
604
                        ]
605
                    ],
606
                    'edit' => [
607
                        'type' => Segment::class,
608
                        'options' => [
609
                            'route' => '/edit/:id',
610
                            'constraints' => [
611
                                'id' => '[A-Za-z0-9\-]+\=*'
612
                            ],
613
                            'defaults' => [
614
                                'controller' => '\LeadersLinked\Controller\UserController',
615
                                'action' => 'edit'
616
                            ]
617
                        ]
618
                    ],
619
                    'upload' => [
620
                        'type' => Literal::class,
621
                        'options' => [
622
                            'route' => '/upload',
623
                            'defaults' => [
624
                                'controller' => '\LeadersLinked\Controller\UserController',
625
                                'action' => 'upload'
626
                            ]
627
                        ]
628
                    ],
15457 efrain 629
                    'request-access' => [
630
                        'type' => Literal::class,
631
                        'options' => [
632
                            'route' => '/request-access',
633
                            'defaults' => [
634
                                'controller' => '\LeadersLinked\Controller\UserRequestAccessController',
635
                                'action' => 'index'
636
                            ]
637
                        ],
638
                        'may_terminate' => true,
639
                        'child_routes' => [
640
                            'approve' => [
641
                                'type' => Segment::class,
642
                                'options' => [
643
                                    'route' => '/edit/:id',
644
                                    'constraints' => [
645
                                        'id' => '[A-Za-z0-9\-]+\=*'
646
                                    ],
647
                                    'defaults' => [
648
                                        'controller' => '\LeadersLinked\Controller\UserRequestAccessController',
649
                                        'action' => 'approve'
650
                                    ]
651
                                ]
652
                            ],
653
                            'reject' => [
654
                                'type' => Segment::class,
655
                                'options' => [
656
                                    'route' => '/reject/:id',
657
                                    'constraints' => [
658
                                        'id' => '[A-Za-z0-9\-]+\=*'
659
                                    ],
660
                                    'defaults' => [
661
                                        'controller' => '\LeadersLinked\Controller\UserRequestAccessController',
662
                                        'action' => 'reject'
663
                                    ]
664
                                ]
665
                            ],
15607 anderson 666
                        ]
15457 efrain 667
                    ],
1 www 668
                ]
1089 geraldo 669
            ],
16822 efrain 670
            /* * * START FEEDS * * */
1 www 671
            'feeds' => [
672
                'type' => Literal::class,
673
                'options' => [
674
                    'route' => '/feeds',
675
                    'defaults' => [
676
                        'controller' => '\LeadersLinked\Controller\FeedController',
677
                        'action' => 'index'
678
                    ]
679
                ],
680
                'may_terminate' => true,
681
                'child_routes' => [
682
                    'timeline' => [
7368 nelberth 683
                        'type' => Segment::class,
1 www 684
                        'options' => [
11111 nelberth 685
                            'route' => '/timeline[/id/:id][/type/:type][/urgent/:urgent][/myt_id/:myt_id][/feed/:feed][/topic_id/:topic_id][/hptg_id/:hptg_id]',
7346 nelberth 686
                            'constraints' => [
687
                                'id' => '[A-Za-z0-9\-]+\=*',
11110 nelberth 688
                                'type' => 'user|company|hptg|mytq|myta',
10817 eleazar 689
                                'myt_id' => '[A-Za-z0-9\-]+\=*',
15607 anderson 690
                                'hptg_id' => '[A-Za-z0-9\-]+\=*',
7362 nelberth 691
                                'feed' => '[A-Za-z0-9\-]+\=*',
11090 nelberth 692
                                'topic_id' => '[A-Za-z0-9\-]+\=*',
8726 nelberth 693
                                'urgent' => 'u',
7346 nelberth 694
                            ],
1 www 695
                            'defaults' => [
696
                                'controller' => '\LeadersLinked\Controller\FeedController',
697
                                'action' => 'timeline'
698
                            ]
699
                        ]
700
                    ],
10119 nelberth 701
                    'onefeed' => [
702
                        'type' => Segment::class,
703
                        'options' => [
11090 nelberth 704
                            'route' => '/onefeed[/:feed_id][/:topic_id][/:group_id]',
10119 nelberth 705
                            'constraints' => [
11090 nelberth 706
                                'group_id' => '[A-Za-z0-9\-]+\=*',
707
                                'feed_id' => '[A-Za-z0-9\-]+\=*',
10119 nelberth 708
                                'topic_id' => '[A-Za-z0-9\-]+\=*',
709
                            ],
710
                            'defaults' => [
711
                                'controller' => '\LeadersLinked\Controller\FeedController',
712
                                'action' => 'oneFeed'
713
                            ]
714
                        ]
715
                    ],
1 www 716
                    'delete' => [
717
                        'type' => Segment::class,
718
                        'options' => [
719
                            'route' => '/delete/:id',
720
                            'constraints' => [
721
                                'id' => '[A-Za-z0-9\-]+\=*',
722
                            ],
723
                            'defaults' => [
724
                                'controller' => '\LeadersLinked\Controller\FeedController',
725
                                'action' => 'delete'
726
                            ],
727
                        ]
728
                    ],
729
                    'comments' => [
730
                        'type' => Segment::class,
731
                        'options' => [
732
                            'route' => '/comments/:id',
733
                            'constraints' => [
734
                                'id' => '[A-Za-z0-9\-]+\=*',
735
                            ],
736
                            'defaults' => [
737
                                'controller' => '\LeadersLinked\Controller\FeedController',
738
                                'action' => 'comment'
739
                            ],
740
                        ],
741
                        'may_terminate' => true,
742
                        'child_routes' => [
743
                            'delete' => [
744
                                'type' => Segment::class,
745
                                'options' => [
746
                                    'route' => '/delete/:comment',
747
                                    'constraints' => [
748
                                        'comment' => '[A-Za-z0-9\-]+\=*',
749
                                    ],
750
                                    'defaults' => [
751
                                        'controller' => '\LeadersLinked\Controller\FeedController',
752
                                        'action' => 'commentDelete'
753
                                    ]
754
                                ]
755
                            ],
8384 nelberth 756
 
757
                            'answer' => [
758
                                'type' => Segment::class,
759
                                'options' => [
760
                                    'route' => '/answer/:comment',
761
                                    'constraints' => [
762
                                        'comment' => '[A-Za-z0-9\-]+\=*',
763
                                    ],
764
                                    'defaults' => [
765
                                        'controller' => '\LeadersLinked\Controller\FeedController',
8402 nelberth 766
                                        'action' => 'answer'
8384 nelberth 767
                                    ]
768
                                ]
769
                            ],
1 www 770
                        ]
771
                    ],
772
                    'add' => [
773
                        'type' => Segment::class,
774
                        'options' => [
11126 nelberth 775
                            'route' => '/add[/company/:company_id][/group/:group_id][/encoding/:encoding][/type/:type][/feed/:feed][/myt_id/:myt_id][/hptg_id/:hptg_id][/topic_id/:topic_id]',
1 www 776
                            'constraints' => [
777
                                'company_id' => '[A-Za-z0-9\-]+\=*',
778
                                'group_id' => '[A-Za-z0-9\-]+\=*',
11122 nelberth 779
                                'hptg_id' => '[A-Za-z0-9\-]+\=*',
11126 nelberth 780
                                'topic_id' => '[A-Za-z0-9\-]+\=*',
10976 eleazar 781
                                'myt_id' => '[A-Za-z0-9\-]+\=*',
11003 eleazar 782
                                'type' => 'group|company|hptg|mytq|myta',
1 www 783
                                'encoding' => 'base64'
784
                            ],
785
                            'defaults' => [
786
                                'controller' => '\LeadersLinked\Controller\FeedController',
787
                                'action' => 'add'
788
                            ]
789
                        ]
790
                    ],
791
                ],
1089 geraldo 792
            ],
16822 efrain 793
            /* * * START JOBS * * */
1 www 794
            'jobs' => [
795
                'type' => Literal::class,
796
                'options' => [
797
                    'route' => '/jobs',
798
                    'defaults' => [
799
                        'controller' => '\LeadersLinked\Controller\JobController',
800
                        'action' => 'index'
801
                    ]
802
                ],
803
                'may_terminate' => true,
804
                'child_routes' => [
805
                    'add' => [
806
                        'type' => Literal::class,
807
                        'options' => [
808
                            'route' => '/add',
809
                            'defaults' => [
810
                                'controller' => '\LeadersLinked\Controller\JobController',
811
                                'action' => 'add'
812
                            ]
813
                        ],
814
                    ],
815
                    'delete' => [
816
                        'type' => Segment::class,
817
                        'options' => [
818
                            'route' => '/delete/:id',
819
                            'constraints' => [
820
                                'id' => '[A-Za-z0-9\-]+\=*'
821
                            ],
822
                            'defaults' => [
823
                                'controller' => '\LeadersLinked\Controller\JobController',
824
                                'action' => 'delete'
825
                            ]
826
                        ],
827
                    ],
828
                    'users-who-applied' => [
829
                        'type' => Segment::class,
830
                        'options' => [
831
                            'route' => '/users-who-applied/:id',
832
                            'constraints' => [
833
                                'id' => '[A-Za-z0-9\-]+\=*'
834
                            ],
835
                            'defaults' => [
836
                                'controller' => '\LeadersLinked\Controller\JobController',
837
                                'action' => 'usersWhoApplied'
838
                            ]
839
                        ],
840
                    ],
841
                    'edit' => [
842
                        'type' => Segment::class,
843
                        'options' => [
844
                            'route' => '/edit/:id',
845
                            'constraints' => [
846
                                'id' => '[A-Za-z0-9\-]+\=*'
847
                            ],
848
                            'defaults' => [
849
                                'controller' => '\LeadersLinked\Controller\JobController',
850
                                'action' => 'edit'
851
                            ]
852
                        ],
853
                        'may_terminate' => true,
854
                        'child_routes' => [
855
                            'status' => [
856
                                'type' => Literal::class,
857
                                'options' => [
858
                                    'route' => '/status',
859
                                    'defaults' => [
860
                                        'controller' => '\LeadersLinked\Controller\JobController',
861
                                        'action' => 'status'
862
                                    ]
863
                                ],
864
                            ],
865
                            'title' => [
866
                                'type' => Literal::class,
867
                                'options' => [
868
                                    'route' => '/title',
869
                                    'defaults' => [
870
                                        'controller' => '\LeadersLinked\Controller\JobController',
871
                                        'action' => 'title'
872
                                    ]
873
                                ],
874
                            ],
875
                            'last-date-of-application' => [
876
                                'type' => Literal::class,
877
                                'options' => [
878
                                    'route' => '/last-date-of-application',
879
                                    'defaults' => [
880
                                        'controller' => '\LeadersLinked\Controller\JobController',
881
                                        'action' => 'lastDateOfApplication'
882
                                    ]
883
                                ],
884
                            ],
885
                            'experience' => [
886
                                'type' => Literal::class,
887
                                'options' => [
888
                                    'route' => '/experience',
889
                                    'defaults' => [
890
                                        'controller' => '\LeadersLinked\Controller\JobController',
891
                                        'action' => 'experience'
892
                                    ]
893
                                ],
894
                            ],
895
                            'employment-type' => [
896
                                'type' => Literal::class,
897
                                'options' => [
898
                                    'route' => '/employment-type',
899
                                    'defaults' => [
900
                                        'controller' => '\LeadersLinked\Controller\JobController',
901
                                        'action' => 'employmentType'
902
                                    ]
903
                                ],
904
                            ],
905
                            'job-category' => [
906
                                'type' => Literal::class,
907
                                'options' => [
908
                                    'route' => '/job-category',
909
                                    'defaults' => [
910
                                        'controller' => '\LeadersLinked\Controller\JobController',
911
                                        'action' => 'jobCategory'
912
                                    ]
913
                                ],
914
                            ],
915
                            'extended' => [
916
                                'type' => Literal::class,
917
                                'options' => [
918
                                    'route' => '/extended',
919
                                    'defaults' => [
920
                                        'controller' => '\LeadersLinked\Controller\JobController',
921
                                        'action' => 'extended'
922
                                    ]
923
                                ],
924
                            ],
925
                            'location' => [
926
                                'type' => Literal::class,
927
                                'options' => [
928
                                    'route' => '/location',
929
                                    'defaults' => [
930
                                        'controller' => '\LeadersLinked\Controller\JobController',
931
                                        'action' => 'location'
932
                                    ]
933
                                ],
934
                            ],
935
                            'salary' => [
936
                                'type' => Literal::class,
937
                                'options' => [
938
                                    'route' => '/salary',
939
                                    'defaults' => [
940
                                        'controller' => '\LeadersLinked\Controller\JobController',
941
                                        'action' => 'salary'
942
                                    ]
943
                                ],
944
                            ],
945
                            'degrees' => [
946
                                'type' => Literal::class,
947
                                'options' => [
948
                                    'route' => '/degrees',
949
                                    'defaults' => [
950
                                        'controller' => '\LeadersLinked\Controller\JobController',
951
                                        'action' => 'degree'
952
                                    ]
953
                                ],
954
                            ],
955
                            'languages' => [
956
                                'type' => Literal::class,
957
                                'options' => [
958
                                    'route' => '/languages',
959
                                    'defaults' => [
960
                                        'controller' => '\LeadersLinked\Controller\JobController',
961
                                        'action' => 'language'
962
                                    ]
963
                                ],
964
                            ],
965
                            'skills' => [
966
                                'type' => Literal::class,
967
                                'options' => [
968
                                    'route' => '/skills',
969
                                    'defaults' => [
970
                                        'controller' => '\LeadersLinked\Controller\JobController',
971
                                        'action' => 'skill'
972
                                    ]
973
                                ],
974
                            ],
975
                            'how-apply' => [
976
                                'type' => Literal::class,
977
                                'options' => [
978
                                    'route' => '/how-apply',
979
                                    'defaults' => [
980
                                        'controller' => '\LeadersLinked\Controller\JobController',
981
                                        'action' => 'howApply'
982
                                    ]
983
                                ],
984
                            ],
985
                        ],
986
                    ]
987
                ],
988
            ],
1089 geraldo 989
            /*             * * END JOB * */
990
 
991
            /*             * *** START PROFILE *** */
1 www 992
            'profile' => [
993
                'type' => Literal::class,
994
                'options' => [
995
                    'route' => '/profile',
996
                    'defaults' => [
997
                        'controller' => '\LeadersLinked\Controller\ProfileController',
998
                        'action' => 'index'
999
                    ]
1000
                ],
1001
                'may_terminate' => true,
1002
                'child_routes' => [
15607 anderson 1003
 
1 www 1004
                    'extended' => [
1005
                        'type' => Segment::class,
1006
                        'options' => [
1007
                            'route' => '/extended',
1008
                            'defaults' => [
1009
                                'controller' => '\LeadersLinked\Controller\ProfileController',
1010
                                'action' => 'extended'
1011
                            ]
1012
                        ]
1013
                    ],
1014
                    'image' => [
1015
                        'type' => Segment::class,
1016
                        'options' => [
1017
                            'route' => '/image/:operation',
1018
                            'constraints' => [
1019
                                'operation' => 'upload|delete'
1020
                            ],
1021
                            'defaults' => [
1022
                                'controller' => '\LeadersLinked\Controller\ProfileController',
1023
                                'action' => 'image'
1024
                            ]
1025
                        ]
1026
                    ],
1027
                    'cover' => [
1028
                        'type' => Segment::class,
1029
                        'options' => [
1030
                            'route' => '/cover/:operation',
1031
                            'constraints' => [
1032
                                'operation' => 'upload|delete'
1033
                            ],
1034
                            'defaults' => [
1035
                                'controller' => '\LeadersLinked\Controller\ProfileController',
1036
                                'action' => 'cover'
1037
                            ]
1038
                        ]
1039
                    ],
768 geraldo 1040
                    'header' => [
1041
                        'type' => Segment::class,
1042
                        'options' => [
1043
                            'route' => '/header/:operation',
1044
                            'constraints' => [
1045
                                'operation' => 'upload|delete'
1046
                            ],
1047
                            'defaults' => [
1048
                                'controller' => '\LeadersLinked\Controller\ProfileController',
1049
                                'action' => 'header'
1050
                            ]
1051
                        ]
1052
                    ],
1053
                    'footer' => [
1054
                        'type' => Segment::class,
1055
                        'options' => [
1056
                            'route' => '/footer/:operation',
1057
                            'constraints' => [
1058
                                'operation' => 'upload|delete'
1059
                            ],
1060
                            'defaults' => [
1061
                                'controller' => '\LeadersLinked\Controller\ProfileController',
1062
                                'action' => 'footer'
1063
                            ]
1064
                        ]
1065
                    ],
1 www 1066
                    'website' => [
1067
                        'type' => Segment::class,
1068
                        'options' => [
1069
                            'route' => '/website',
1070
                            'defaults' => [
1071
                                'controller' => '\LeadersLinked\Controller\ProfileController',
1072
                                'action' => 'website'
1073
                            ]
1074
                        ]
1075
                    ],
1076
                    'foundation_year' => [
1077
                        'type' => Segment::class,
1078
                        'options' => [
1079
                            'route' => '/foundation_year',
1080
                            'defaults' => [
1081
                                'controller' => '\LeadersLinked\Controller\ProfileController',
1082
                                'action' => 'foundationYear'
1083
                            ]
1084
                        ]
1085
                    ],
1086
                    'location' => [
1087
                        'type' => Segment::class,
1088
                        'options' => [
1089
                            'route' => '/location/:operation[/:id]',
1090
                            'constraints' => [
1091
                                'operation' => 'add|edit|delete',
1092
                                'id' => '[A-Za-z0-9\-]+\=*'
1093
                            ],
1094
                            'defaults' => [
1095
                                'controller' => '\LeadersLinked\Controller\ProfileController',
1096
                                'action' => 'location'
1097
                            ]
1098
                        ]
1099
                    ],
1100
                    'social-network' => [
1101
                        'type' => Segment::class,
1102
                        'options' => [
1103
                            'route' => '/social-network',
1104
                            'defaults' => [
1105
                                'controller' => '\LeadersLinked\Controller\ProfileController',
1106
                                'action' => 'socialNetwork'
1107
                            ]
1108
                        ]
1109
                    ],
1110
                    'industry' => [
1111
                        'type' => Segment::class,
1112
                        'options' => [
1113
                            'route' => '/industry',
1114
                            'defaults' => [
1115
                                'controller' => '\LeadersLinked\Controller\ProfileController',
1116
                                'action' => 'industry'
1117
                            ]
1118
                        ]
1119
                    ],
1120
                    'company-size' => [
1121
                        'type' => Segment::class,
1122
                        'options' => [
1123
                            'route' => '/company-size',
1124
                            'defaults' => [
1125
                                'controller' => '\LeadersLinked\Controller\ProfileController',
1126
                                'action' => 'companySize'
1127
                            ]
1128
                        ]
1129
                    ]
1130
                ],
1131
            ],
1089 geraldo 1132
            /*             * * END PROFILE * */
1133
 
1134
            /*             * *** START FOLLOWERS *** */
1 www 1135
            'followers' => [
1136
                'type' => Literal::class,
1137
                'options' => [
1138
                    'route' => '/followers',
1139
                    'defaults' => [
1140
                        'controller' => '\LeadersLinked\Controller\FollowerController',
1141
                        'action' => 'index'
1142
                    ]
1143
                ],
1144
                'may_terminate' => true,
1145
                'child_routes' => [
1146
                    'delete' => [
1147
                        'type' => Segment::class,
1148
                        'options' => [
1149
                            'route' => '/delete/:id',
1150
                            'constraints' => [
1151
                                'id' => '[A-Za-z0-9\-]+\=*'
1152
                            ],
1153
                            'defaults' => [
1154
                                'controller' => '\LeadersLinked\Controller\FollowerController',
1155
                                'action' => 'delete'
1156
                            ]
1157
                        ]
1158
                    ],
1089 geraldo 1159
                ],
1160
            ],
1161
            /*             * *** END FOLLOWERS *** */
1162
 
1163
            /*             * * START MICRO_LEARNING ** */
1 www 1164
            'microlearning' => [
1165
                'type' => Literal::class,
1166
                'options' => [
1167
                    'route' => '/microlearning',
1168
                    'defaults' => [
1169
                        'controller' => '\LeadersLinked\Controller\MicrolearningController',
1170
                        'action' => 'index'
1171
                    ]
1172
                ],
1173
                'may_terminate' => true,
1174
                'child_routes' => [
1175
                    'overview' => [
1176
                        'type' => Literal::class,
1177
                        'options' => [
1178
                            'route' => '/overview',
1179
                            'defaults' => [
1180
                                'controller' => '\LeadersLinked\Controller\MicrolearningReportsController',
1181
                                'action' => 'overview'
1182
                            ]
1183
                        ],
1089 geraldo 1184
                    ],
1 www 1185
                    'reports' => [
1186
                        'type' => Literal::class,
1187
                        'options' => [
1188
                            'route' => '/reports',
1189
                            'defaults' => [
1190
                                'controller' => '\LeadersLinked\Controller\MicrolearningReportsController',
2 efrain 1191
                                'action' => 'index'
1 www 1192
                            ]
1193
                        ],
2 efrain 1194
                        'may_terminate' => true,
1195
                        'child_routes' => [
1196
                            'progress' => [
1197
                                'type' => Literal::class,
1198
                                'options' => [
1199
                                    'route' => '/progress',
1200
                                    'defaults' => [
1201
                                        'controller' => '\LeadersLinked\Controller\MicrolearningReportsController',
1202
                                        'action' => 'progress'
1203
                                    ]
1204
                                ]
1205
                            ],
14610 efrain 1206
                            'progress-for-capsule' => [
1207
                                'type' => Literal::class,
1208
                                'options' => [
1209
                                    'route' => '/progress-for-capsule',
1210
                                    'defaults' => [
1211
                                        'controller' => '\LeadersLinked\Controller\MicrolearningReportsController',
1212
                                        'action' => 'progressForCapsule'
1213
                                    ]
15386 efrain 1214
                                ],
1215
                                'may_terminate' => true,
1216
                                'child_routes' => [
1217
                                    'excel' => [
1218
                                        'type' => Literal::class,
1219
                                        'options' => [
1220
                                            'route' => '/excel',
1221
                                            'defaults' => [
1222
                                                'controller' => '\LeadersLinked\Controller\MicrolearningReportsController',
1223
                                                'action' => 'progressForCapsuleExcel'
1224
                                            ]
1225
                                        ]
1226
                                    ],
15607 anderson 1227
                                ],
14610 efrain 1228
                            ],
15386 efrain 1229
                            'progress-for-topic' => [
1230
                                'type' => Literal::class,
1231
                                'options' => [
1232
                                    'route' => '/progress-for-topic',
1233
                                    'defaults' => [
1234
                                        'controller' => '\LeadersLinked\Controller\MicrolearningReportsController',
1235
                                        'action' => 'progressForTopic'
1236
                                    ]
1237
                                ],
1238
                                'may_terminate' => true,
1239
                                'child_routes' => [
1240
                                    'excel' => [
1241
                                        'type' => Literal::class,
1242
                                        'options' => [
1243
                                            'route' => '/excel',
1244
                                            'defaults' => [
1245
                                                'controller' => '\LeadersLinked\Controller\MicrolearningReportsController',
1246
                                                'action' => 'progressForTopicExcel'
1247
                                            ]
1248
                                        ]
1249
                                    ],
1250
                                ],
1251
                            ],
1252
                            'progress-for-student' => [
1253
                                'type' => Literal::class,
1254
                                'options' => [
1255
                                    'route' => '/progress-for-student',
1256
                                    'defaults' => [
1257
                                        'controller' => '\LeadersLinked\Controller\MicrolearningReportsController',
1258
                                        'action' => 'progressForStudent'
1259
                                    ]
1260
                                ],
1261
                                'may_terminate' => true,
1262
                                'child_routes' => [
1263
                                    'excel' => [
1264
                                        'type' => Literal::class,
1265
                                        'options' => [
1266
                                            'route' => '/excel',
1267
                                            'defaults' => [
1268
                                                'controller' => '\LeadersLinked\Controller\MicrolearningReportsController',
1269
                                                'action' => 'progressForStudentExcel'
1270
                                            ]
1271
                                        ]
1272
                                    ],
1273
                                ],
1274
                            ],
187 efrain 1275
                            'comments-for-capsule' => [
1276
                                'type' => Literal::class,
1277
                                'options' => [
1278
                                    'route' => '/comments-for-capsule',
1279
                                    'defaults' => [
1280
                                        'controller' => '\LeadersLinked\Controller\MicrolearningReportsController',
1281
                                        'action' => 'commentsForCapsule'
1282
                                    ]
1283
                                ]
1284
                            ],
15390 efrain 1285
                            'devices-and-access' => [
2 efrain 1286
                                'type' => Literal::class,
1287
                                'options' => [
15390 efrain 1288
                                    'route' => '/devices-and-access',
2 efrain 1289
                                    'defaults' => [
1290
                                        'controller' => '\LeadersLinked\Controller\MicrolearningReportsController',
15390 efrain 1291
                                        'action' => 'devicesAndAccess'
2 efrain 1292
                                    ]
15390 efrain 1293
                                ],
1294
                                'may_terminate' => true,
1295
                                'child_routes' => [
1296
                                    'excel' => [
1297
                                        'type' => Literal::class,
1298
                                        'options' => [
1299
                                            'route' => '/excel',
1300
                                            'defaults' => [
1301
                                                'controller' => '\LeadersLinked\Controller\MicrolearningReportsController',
1302
                                                'action' => 'devicesAndAccess'
1303
                                            ]
1304
                                        ]
1305
                                    ],
1306
                                ],
2 efrain 1307
                            ],
1089 geraldo 1308
                        ]
1309
                    ],
1 www 1310
                    'content' => [
1311
                        'type' => Literal::class,
1312
                        'options' => [
1313
                            'route' => '/content',
1314
                            'defaults' => [
1315
                                'controller' => '\LeadersLinked\Controller\MicrolearningContentController',
1316
                                'action' => 'index'
1317
                            ]
1318
                        ],
1319
                        'may_terminate' => true,
1320
                        'child_routes' => [
66 efrain 1321
                            'quizzes' => [
1322
                                'type' => Segment::class,
1323
                                'options' => [
1324
                                    'route' => '/quizzes',
1325
                                    'defaults' => [
1326
                                        'controller' => '\LeadersLinked\Controller\MicrolearningQuizController',
1327
                                        'action' => 'index'
1328
                                    ]
1329
                                ],
1330
                                'may_terminate' => true,
1331
                                'child_routes' => [
1332
                                    'add' => [
1333
                                        'type' => Literal::class,
1334
                                        'options' => [
1335
                                            'route' => '/add',
1336
                                            'defaults' => [
1337
                                                'controller' => '\LeadersLinked\Controller\MicrolearningQuizController',
1338
                                                'action' => 'add'
1339
                                            ]
1340
                                        ]
1341
                                    ],
1342
                                    'edit' => [
1343
                                        'type' => Segment::class,
1344
                                        'options' => [
1345
                                            'route' => '/:quiz_id/edit',
1346
                                            'constraints' => [
1347
                                                'quiz_id' => '[A-Za-z0-9\-]+\=*'
1348
                                            ],
1349
                                            'defaults' => [
1350
                                                'controller' => '\LeadersLinked\Controller\MicrolearningQuizController',
1351
                                                'action' => 'edit'
1352
                                            ]
1353
                                        ]
1354
                                    ],
1355
                                    'delete' => [
1356
                                        'type' => Segment::class,
1357
                                        'options' => [
1358
                                            'route' => '/:quiz_id/delete',
1359
                                            'constraints' => [
1360
                                                'quiz_id' => '[A-Za-z0-9\-]+\=*'
1361
                                            ],
1362
                                            'defaults' => [
1363
                                                'controller' => '\LeadersLinked\Controller\MicrolearningQuizController',
1364
                                                'action' => 'delete'
1365
                                            ]
1366
                                        ]
1367
                                    ],
1368
                                    'check' => [
1369
                                        'type' => Segment::class,
1370
                                        'options' => [
1371
                                            'route' => '/:quiz_id/check',
1372
                                            'constraints' => [
1373
                                                'quiz_id' => '[A-Za-z0-9\-]+\=*'
1374
                                            ],
1375
                                            'defaults' => [
1376
                                                'controller' => '\LeadersLinked\Controller\MicrolearningQuizController',
1377
                                                'action' => 'check'
1378
                                            ]
1379
                                        ]
1380
                                    ],
1381
                                    'publish' => [
1382
                                        'type' => Segment::class,
1383
                                        'options' => [
1384
                                            'route' => '/:quiz_id/publish',
1385
                                            'constraints' => [
1386
                                                'quiz_id' => '[A-Za-z0-9\-]+\=*'
1387
                                            ],
1388
                                            'defaults' => [
1389
                                                'controller' => '\LeadersLinked\Controller\MicrolearningQuizController',
1390
                                                'action' => 'publish'
1391
                                            ]
1392
                                        ]
1393
                                    ],
1394
                                    'copy' => [
1395
                                        'type' => Segment::class,
1396
                                        'options' => [
1397
                                            'route' => '/:quiz_id/copy',
1398
                                            'constraints' => [
1399
                                                'quiz_id' => '[A-Za-z0-9\-]+\=*'
1400
                                            ],
1401
                                            'defaults' => [
1402
                                                'controller' => '\LeadersLinked\Controller\MicrolearningQuizController',
1403
                                                'action' => 'copy'
1404
                                            ]
1405
                                        ]
1406
                                    ],
1407
                                    'questions' => [
1408
                                        'type' => Segment::class,
1409
                                        'options' => [
1410
                                            'route' => '/:quiz_id/questions',
1411
                                            'constraints' => [
1412
                                                'quiz_id' => '[A-Za-z0-9\-]+\=*'
1413
                                            ],
1414
                                            'defaults' => [
1415
                                                'controller' => '\LeadersLinked\Controller\MicrolearningQuestionController',
1416
                                                'action' => 'index'
1417
                                            ]
1418
                                        ],
1419
                                        'may_terminate' => true,
1420
                                        'child_routes' => [
1421
                                            'add' => [
1422
                                                'type' => Literal::class,
1423
                                                'options' => [
1424
                                                    'route' => '/add',
1425
                                                    'defaults' => [
1426
                                                        'controller' => '\LeadersLinked\Controller\MicrolearningQuestionController',
1427
                                                        'action' => 'add'
1428
                                                    ]
1429
                                                ]
1430
                                            ],
1431
                                            'edit' => [
1432
                                                'type' => Segment::class,
1433
                                                'options' => [
1434
                                                    'route' => '/:question_id/edit',
1435
                                                    'constraints' => [
1436
                                                        'question_id' => '[A-Za-z0-9\-]+\=*'
1437
                                                    ],
1438
                                                    'defaults' => [
1439
                                                        'controller' => '\LeadersLinked\Controller\MicrolearningQuestionController',
1440
                                                        'action' => 'edit'
1441
                                                    ]
1442
                                                ]
1443
                                            ],
1444
                                            'delete' => [
1445
                                                'type' => Segment::class,
1446
                                                'options' => [
1447
                                                    'route' => '/:question_id/delete',
1448
                                                    'constraints' => [
1449
                                                        'question_id' => '[A-Za-z0-9\-]+\=*'
1450
                                                    ],
1451
                                                    'defaults' => [
1452
                                                        'controller' => '\LeadersLinked\Controller\MicrolearningQuestionController',
1453
                                                        'action' => 'delete'
1454
                                                    ]
1455
                                                ]
1456
                                            ],
1457
                                            'answers' => [
1458
                                                'type' => Segment::class,
1459
                                                'options' => [
1460
                                                    'route' => '/:question_id/answers',
1461
                                                    'constraints' => [
1462
                                                        'question_id' => '[A-Za-z0-9\-]+\=*'
1463
                                                    ],
1464
                                                    'defaults' => [
1465
                                                        'controller' => '\LeadersLinked\Controller\MicrolearningAnswerController',
1466
                                                        'action' => 'index'
1467
                                                    ]
1468
                                                ],
1469
                                                'may_terminate' => true,
1470
                                                'child_routes' => [
1471
                                                    'add' => [
1472
                                                        'type' => Literal::class,
1473
                                                        'options' => [
1474
                                                            'route' => '/add',
1475
                                                            'defaults' => [
1476
                                                                'controller' => '\LeadersLinked\Controller\MicrolearningAnswerController',
1477
                                                                'action' => 'add'
1478
                                                            ]
1479
                                                        ]
1480
                                                    ],
1481
                                                    'edit' => [
1482
                                                        'type' => Segment::class,
1483
                                                        'options' => [
1484
                                                            'route' => '/:answer_id/edit',
1485
                                                            'constraints' => [
1486
                                                                'answer_id' => '[A-Za-z0-9\-]+\=*'
1487
                                                            ],
1488
                                                            'defaults' => [
1489
                                                                'controller' => '\LeadersLinked\Controller\MicrolearningAnswerController',
1490
                                                                'action' => 'edit'
1491
                                                            ]
1492
                                                        ]
1493
                                                    ],
1494
                                                    'delete' => [
1495
                                                        'type' => Segment::class,
1496
                                                        'options' => [
1497
                                                            'route' => '/:answer_id/delete',
1498
                                                            'constraints' => [
1499
                                                                'answer_id' => '[A-Za-z0-9\-]+\=*'
1500
                                                            ],
1501
                                                            'defaults' => [
1502
                                                                'controller' => '\LeadersLinked\Controller\MicrolearningAnswerController',
1503
                                                                'action' => 'delete'
1504
                                                            ]
1505
                                                        ]
1506
                                                    ],
1507
                                                ]
1508
                                            ],
1509
                                        ]
1510
                                    ],
1511
                                ]
1089 geraldo 1512
                            ],
1 www 1513
                            'topics' => [
1514
                                'type' => Literal::class,
1515
                                'options' => [
1516
                                    'route' => '/topics',
1517
                                    'defaults' => [
1518
                                        'controller' => '\LeadersLinked\Controller\MicrolearningTopicController',
1519
                                        'action' => 'index'
1520
                                    ]
1521
                                ],
1522
                                'may_terminate' => true,
1523
                                'child_routes' => [
1524
                                    'add' => [
1525
                                        'type' => Literal::class,
1526
                                        'options' => [
1527
                                            'route' => '/add',
1528
                                            'defaults' => [
1529
                                                'controller' => '\LeadersLinked\Controller\MicrolearningTopicController',
1530
                                                'action' => 'add'
1531
                                            ]
1532
                                        ]
1533
                                    ],
1534
                                    'edit' => [
1535
                                        'type' => Segment::class,
1536
                                        'options' => [
1537
                                            'route' => '/edit/:id',
1538
                                            'constraints' => [
1539
                                                'id' => '[A-Za-z0-9\-]+\=*'
1540
                                            ],
1541
                                            'defaults' => [
1542
                                                'controller' => '\LeadersLinked\Controller\MicrolearningTopicController',
1543
                                                'action' => 'edit'
1544
                                            ]
1545
                                        ]
1546
                                    ],
1547
                                    'delete' => [
1548
                                        'type' => Segment::class,
1549
                                        'options' => [
1550
                                            'route' => '/delete/:id',
1551
                                            'constraints' => [
1552
                                                'id' => '[A-Za-z0-9\-]+\=*'
1553
                                            ],
1554
                                            'defaults' => [
1555
                                                'controller' => '\LeadersLinked\Controller\MicrolearningTopicController',
1556
                                                'action' => 'delete'
1557
                                            ]
1558
                                        ]
1559
                                    ]
1560
                                ]
1561
                            ],
1562
                            'capsules' => [
1563
                                'type' => Literal::class,
1564
                                'options' => [
1565
                                    'route' => '/capsules',
1566
                                    'defaults' => [
1567
                                        'controller' => '\LeadersLinked\Controller\MicrolearningCapsuleController',
1568
                                        'action' => 'index'
1569
                                    ]
1570
                                ],
1571
                                'may_terminate' => true,
1572
                                'child_routes' => [
1573
                                    'add' => [
17003 efrain 1574
                                        'type' => Literal::class,
1 www 1575
                                        'options' => [
17003 efrain 1576
                                            'route' => '/add',
1577
 
1 www 1578
                                            'defaults' => [
1579
                                                'controller' => '\LeadersLinked\Controller\MicrolearningCapsuleController',
1580
                                                'action' => 'add'
1581
                                            ]
1582
                                        ]
1583
                                    ],
1584
                                    'edit' => [
1585
                                        'type' => Segment::class,
1586
                                        'options' => [
17003 efrain 1587
                                            'route' => '/edit/:capsule_uuid',
1 www 1588
                                            'constraints' => [
1589
                                                'capsule_uuid' => '[A-Za-z0-9\-]+\=*',
1590
                                            ],
1591
                                            'defaults' => [
1592
                                                'controller' => '\LeadersLinked\Controller\MicrolearningCapsuleController',
1593
                                                'action' => 'edit'
1594
                                            ]
1595
                                        ]
1596
                                    ],
1597
                                    'delete' => [
1598
                                        'type' => Segment::class,
1599
                                        'options' => [
17003 efrain 1600
                                            'route' => '/delete/:capsule_uuid',
1 www 1601
                                            'constraints' => [
1602
                                                'capsule_uuid' => '[A-Za-z0-9\-]+\=*',
1603
                                            ],
1604
                                            'defaults' => [
1605
                                                'controller' => '\LeadersLinked\Controller\MicrolearningCapsuleController',
1606
                                                'action' => 'delete'
1607
                                            ]
1608
                                        ]
1609
                                    ],
1610
                                    'users' => [
1611
                                        'type' => Segment::class,
1612
                                        'options' => [
17003 efrain 1613
                                            'route' => '/users/id/:capsule_uuid/type/:type',
1 www 1614
                                            'constraints' => [
1615
                                                'capsule_uuid' => '[A-Za-z0-9\-]+\=*',
1616
                                                'type' => 'all|active',
1617
                                            ],
1618
                                            'defaults' => [
1619
                                                'controller' => '\LeadersLinked\Controller\MicrolearningCapsuleController',
1620
                                                'action' => 'users'
1621
                                            ]
1622
                                        ]
1623
                                    ],
1624
                                ]
1625
                            ],
1626
                            'slides' => [
1627
                                'type' => Literal::class,
1628
                                'options' => [
1629
                                    'route' => '/slides',
1630
                                    'defaults' => [
1631
                                        'controller' => '\LeadersLinked\Controller\MicrolearningSlideController',
1632
                                        'action' => 'index'
1633
                                    ]
1634
                                ],
1635
                                'may_terminate' => true,
1636
                                'child_routes' => [
1637
                                    'add' => [
1638
                                        'type' => Segment::class,
1639
                                        'options' => [
17003 efrain 1640
                                            'route' => '/add/capsule/:capsule_uuid',
1 www 1641
                                            'defaults' => [
1642
                                                'controller' => '\LeadersLinked\Controller\MicrolearningSlideController',
1643
                                                'action' => 'add'
1644
                                            ]
1645
                                        ]
1646
                                    ],
1647
                                    'edit' => [
1648
                                        'type' => Segment::class,
1649
                                        'options' => [
17003 efrain 1650
                                            'route' => '/edit/capsule/:capsule_uuid/slide/:slide_uuid',
1 www 1651
                                            'constraints' => [
1652
                                                'capsule_uuid' => '[A-Za-z0-9\-]+\=*',
1653
                                                'slide_uuid' => '[A-Za-z0-9\-]+\=*',
1654
                                            ],
1655
                                            'defaults' => [
1656
                                                'controller' => '\LeadersLinked\Controller\MicrolearningSlideController',
1657
                                                'action' => 'edit'
1658
                                            ]
1659
                                        ]
1660
                                    ],
1661
                                    'delete' => [
1662
                                        'type' => Segment::class,
1663
                                        'options' => [
17003 efrain 1664
                                            'route' => '/delete/capsule/:capsule_uuid/slide/:slide_uuid',
1 www 1665
                                            'constraints' => [
1666
                                                'capsule_uuid' => '[A-Za-z0-9\-]+\=*',
1667
                                                'slide_uuid' => '[A-Za-z0-9\-]+\=*',
1668
                                            ],
1669
                                            'defaults' => [
1670
                                                'controller' => '\LeadersLinked\Controller\MicrolearningSlideController',
1671
                                                'action' => 'delete'
1672
                                            ]
1673
                                        ]
1674
                                    ],
1675
                                    'text' => [
1676
                                        'type' => Segment::class,
1677
                                        'options' => [
17003 efrain 1678
                                            'route' => '/text/capsule/:capsule_uuid/slide/:slide_uuid',
1 www 1679
                                            'constraints' => [
1680
                                                'capsule_uuid' => '[A-Za-z0-9\-]+\=*',
1681
                                                'slide_uuid' => '[A-Za-z0-9\-]+\=*',
1682
                                            ],
1683
                                            'defaults' => [
1684
                                                'controller' => '\LeadersLinked\Controller\MicrolearningSlideController',
1685
                                                'action' => 'text'
1686
                                            ]
1687
                                        ]
1688
                                    ],
1689
                                ]
1690
                            ],
1089 geraldo 1691
                        ],
1692
                    ],
1 www 1693
                    'students' => [
1694
                        'type' => Literal::class,
1695
                        'options' => [
1696
                            'route' => '/students',
1697
                            'defaults' => [
1698
                                'controller' => '\LeadersLinked\Controller\MicrolearningStudentsController',
1699
                                'action' => 'index'
1700
                            ]
1701
                        ],
1702
                        'may_terminate' => true,
1703
                        'child_routes' => [
1704
                            'edit' => [
1705
                                'type' => Segment::class,
1706
                                'options' => [
1707
                                    'route' => '/edit/:id',
1708
                                    'constraints' => [
1709
                                        'id' => '[A-Za-z0-9\-]+\=*',
1710
                                    ],
1711
                                    'defaults' => [
1712
                                        'controller' => '\LeadersLinked\Controller\MicrolearningStudentsController',
1713
                                        'action' => 'edit'
1714
                                    ]
1715
                                ]
1716
                            ],
1717
                            'timeline' => [
1718
                                'type' => Segment::class,
1719
                                'options' => [
1720
                                    'route' => '/timeline/:id',
1721
                                    'constraints' => [
1722
                                        'id' => '[A-Za-z0-9\-]+\=*',
1723
                                    ],
1724
                                    'defaults' => [
1725
                                        'controller' => '\LeadersLinked\Controller\MicrolearningStudentsController',
1726
                                        'action' => 'timeline'
1727
                                    ]
1728
                                ]
1729
                            ],
1730
                            'change-password' => [
1731
                                'type' => Segment::class,
1732
                                'options' => [
1733
                                    'route' => '/change-password/:id',
1734
                                    'constraints' => [
1735
                                        'id' => '[A-Za-z0-9\-]+\=*'
1736
                                    ],
1737
                                    'defaults' => [
1738
                                        'controller' => '\LeadersLinked\Controller\MicrolearningStudentsController',
1739
                                        'action' => 'change-password'
1740
                                    ]
1741
                                ]
1742
                            ],
1743
                            'unblock' => [
1744
                                'type' => Segment::class,
1745
                                'options' => [
1746
                                    'route' => '/unblock/:id',
1747
                                    'constraints' => [
1748
                                        'id' => '[A-Za-z0-9\-]+\=*'
1749
                                    ],
1750
                                    'defaults' => [
1751
                                        'controller' => '\LeadersLinked\Controller\MicrolearningStudentsController',
1752
                                        'action' => 'unblock'
1753
                                    ]
1754
                                ]
1755
                            ],
1089 geraldo 1756
                        ]
1757
                    ],
1 www 1758
                    'access-for-students' => [
1759
                        'type' => Literal::class,
1760
                        'options' => [
1761
                            'route' => '/access-for-students',
1762
                            'defaults' => [
1763
                                'controller' => '\LeadersLinked\Controller\MicrolearningAccessForStudentsController',
1764
                                'action' => 'index'
1765
                            ]
1766
                        ],
1767
                        'may_terminate' => true,
1768
                        'child_routes' => [
1769
                            'revoke' => [
1770
                                'type' => Segment::class,
1771
                                'options' => [
1772
                                    'route' => '/revoke/topic/:topic_uuid/capsule/:capsule_uuid/user_uuid/:user_uuid',
1773
                                    'constraints' => [
1774
                                        'topic_uuid' => '[A-Za-z0-9\-]+\=*',
1775
                                        'capsule_uuid' => '[A-Za-z0-9\-]+\=*',
1776
                                        'user_uuid' => '[A-Za-z0-9\-]+\=*',
1777
                                    ],
1778
                                    'defaults' => [
1779
                                        'controller' => '\LeadersLinked\Controller\MicrolearningAccessForStudentsController',
1780
                                        'action' => 'revoke'
1781
                                    ]
1782
                                ]
1783
                            ],
1784
                            'unlimit' => [
1785
                                'type' => Segment::class,
1786
                                'options' => [
1787
                                    'route' => '/unlimit/topic/:topic_uuid/capsule/:capsule_uuid/user_uuid/:user_uuid',
1788
                                    'constraints' => [
1789
                                        'topic_uuid' => '[A-Za-z0-9\-]+\=*',
1790
                                        'capsule_uuid' => '[A-Za-z0-9\-]+\=*',
1791
                                        'user_uuid' => '[A-Za-z0-9\-]+\=*',
1792
                                    ],
1793
                                    'defaults' => [
1794
                                        'controller' => '\LeadersLinked\Controller\MicrolearningAccessForStudentsController',
1795
                                        'action' => 'unlimit'
1796
                                    ]
1797
                                ]
1798
                            ],
1799
                            'upload' => [
1800
                                'type' => Segment::class,
1801
                                'options' => [
1802
                                    'route' => '/upload/topic/:topic_uuid/capsule/:capsule_uuid',
1803
                                    'constraints' => [
1804
                                        'topic_uuid' => '[A-Za-z0-9\-]+\=*',
1805
                                        'capsule_uuid' => '[A-Za-z0-9\-]+\=*',
1806
                                    ],
1807
                                    'defaults' => [
1808
                                        'controller' => '\LeadersLinked\Controller\MicrolearningAccessForStudentsController',
1809
                                        'action' => 'upload'
1810
                                    ]
1811
                                ]
1812
                            ],
1813
                            'notification' => [
1814
                                'type' => Segment::class,
1815
                                'options' => [
1816
                                    'route' => '/notification/topic/:topic_uuid/capsule/:capsule_uuid',
1817
                                    'constraints' => [
1818
                                        'topic_uuid' => '[A-Za-z0-9\-]+\=*',
1819
                                        'capsule_uuid' => '[A-Za-z0-9\-]+\=*',
1820
                                    ],
1821
                                    'defaults' => [
1822
                                        'controller' => '\LeadersLinked\Controller\MicrolearningAccessForStudentsController',
1823
                                        'action' => 'notification'
1824
                                    ]
1825
                                ]
1826
                            ],
1827
                        ],
1089 geraldo 1828
                    ],
1 www 1829
                    'settings' => [
1830
                        'type' => Literal::class,
1831
                        'options' => [
1832
                            'route' => '/settings',
1833
                            'defaults' => [
1834
                                'controller' => '\LeadersLinked\Controller\MicrolearningController',
1835
                                'action' => 'index'
1836
                            ]
1837
                        ],
1838
                        'may_terminate' => true,
1839
                        'child_routes' => [
1840
                            'student-types' => [
1841
                                'type' => Literal::class,
1842
                                'options' => [
1843
                                    'route' => '/student-types',
1844
                                    'defaults' => [
1845
                                        'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserStudentTypeController',
1846
                                        'action' => 'index'
1847
                                    ]
1848
                                ],
1849
                                'may_terminate' => true,
1850
                                'child_routes' => [
1851
                                    'add' => [
1852
                                        'type' => Literal::class,
1853
                                        'options' => [
1854
                                            'route' => '/add',
1855
                                            'defaults' => [
1856
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserStudentTypeController',
1857
                                                'action' => 'add'
1858
                                            ]
1859
                                        ]
1860
                                    ],
1861
                                    'edit' => [
1862
                                        'type' => Segment::class,
1863
                                        'options' => [
1864
                                            'route' => '/edit/:id',
1865
                                            'constraints' => [
1866
                                                'id' => '[A-Za-z0-9\-]+\=*'
1867
                                            ],
1868
                                            'defaults' => [
1869
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserStudentTypeController',
1870
                                                'action' => 'edit'
1871
                                            ]
1872
                                        ]
1873
                                    ],
1874
                                    'delete' => [
1875
                                        'type' => Segment::class,
1876
                                        'options' => [
1877
                                            'route' => '/delete/:id',
1878
                                            'constraints' => [
1879
                                                'id' => '[A-Za-z0-9\-]+\=*'
1880
                                            ],
1881
                                            'defaults' => [
1882
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserStudentTypeController',
1883
                                                'action' => 'delete'
1884
                                            ]
1885
                                        ]
1886
                                    ]
1887
                                ]
1888
                            ],
1889
                            'functions' => [
1890
                                'type' => Literal::class,
1891
                                'options' => [
1892
                                    'route' => '/functions',
1893
                                    'defaults' => [
1894
                                        'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserFunctionController',
1895
                                        'action' => 'index'
1896
                                    ]
1897
                                ],
1898
                                'may_terminate' => true,
1899
                                'child_routes' => [
1900
                                    'add' => [
1901
                                        'type' => Literal::class,
1902
                                        'options' => [
1903
                                            'route' => '/add',
1904
                                            'defaults' => [
1905
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserFunctionController',
1906
                                                'action' => 'add'
1907
                                            ]
1908
                                        ]
1909
                                    ],
1910
                                    'edit' => [
1911
                                        'type' => Segment::class,
1912
                                        'options' => [
1913
                                            'route' => '/edit/:id',
1914
                                            'constraints' => [
1915
                                                'id' => '[A-Za-z0-9\-]+\=*'
1916
                                            ],
1917
                                            'defaults' => [
1918
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserFunctionController',
1919
                                                'action' => 'edit'
1920
                                            ]
1921
                                        ]
1922
                                    ],
1923
                                    'delete' => [
1924
                                        'type' => Segment::class,
1925
                                        'options' => [
1926
                                            'route' => '/delete/:id',
1927
                                            'constraints' => [
1928
                                                'id' => '[A-Za-z0-9\-]+\=*'
1929
                                            ],
1930
                                            'defaults' => [
1931
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserFunctionController',
1932
                                                'action' => 'delete'
1933
                                            ]
1934
                                        ]
1935
                                    ]
1936
                                ]
1937
                            ],
1938
                            'sectors' => [
1939
                                'type' => Literal::class,
1940
                                'options' => [
1941
                                    'route' => '/sectors',
1942
                                    'defaults' => [
1943
                                        'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserSectorController',
1944
                                        'action' => 'index'
1945
                                    ]
1946
                                ],
1947
                                'may_terminate' => true,
1948
                                'child_routes' => [
1949
                                    'add' => [
1950
                                        'type' => Literal::class,
1951
                                        'options' => [
1952
                                            'route' => '/add',
1953
                                            'defaults' => [
1954
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserSectorController',
1955
                                                'action' => 'add'
1956
                                            ]
1957
                                        ]
1958
                                    ],
1959
                                    'edit' => [
1960
                                        'type' => Segment::class,
1961
                                        'options' => [
1962
                                            'route' => '/edit/:id',
1963
                                            'constraints' => [
1964
                                                'id' => '[A-Za-z0-9\-]+\=*'
1965
                                            ],
1966
                                            'defaults' => [
1967
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserSectorController',
1968
                                                'action' => 'edit'
1969
                                            ]
1970
                                        ]
1971
                                    ],
1972
                                    'delete' => [
1973
                                        'type' => Segment::class,
1974
                                        'options' => [
1975
                                            'route' => '/delete/:id',
1976
                                            'constraints' => [
1977
                                                'id' => '[A-Za-z0-9\-]+\=*'
1978
                                            ],
1979
                                            'defaults' => [
1980
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserSectorController',
1981
                                                'action' => 'delete'
1982
                                            ]
1983
                                        ]
1984
                                    ]
1985
                                ]
1986
                            ],
1987
                            'programs' => [
1988
                                'type' => Literal::class,
1989
                                'options' => [
1990
                                    'route' => '/programs',
1991
                                    'defaults' => [
1992
                                        'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserProgramController',
1993
                                        'action' => 'index'
1994
                                    ]
1995
                                ],
1996
                                'may_terminate' => true,
1997
                                'child_routes' => [
1998
                                    'add' => [
1999
                                        'type' => Literal::class,
2000
                                        'options' => [
2001
                                            'route' => '/add',
2002
                                            'defaults' => [
2003
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserProgramController',
2004
                                                'action' => 'add'
2005
                                            ]
2006
                                        ]
2007
                                    ],
2008
                                    'edit' => [
2009
                                        'type' => Segment::class,
2010
                                        'options' => [
2011
                                            'route' => '/edit/:id',
2012
                                            'constraints' => [
2013
                                                'id' => '[A-Za-z0-9\-]+\=*'
2014
                                            ],
2015
                                            'defaults' => [
2016
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserProgramController',
2017
                                                'action' => 'edit'
2018
                                            ]
2019
                                        ]
2020
                                    ],
2021
                                    'delete' => [
2022
                                        'type' => Segment::class,
2023
                                        'options' => [
2024
                                            'route' => '/delete/:id',
2025
                                            'constraints' => [
2026
                                                'id' => '[A-Za-z0-9\-]+\=*'
2027
                                            ],
2028
                                            'defaults' => [
2029
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserProgramController',
2030
                                                'action' => 'delete'
2031
                                            ]
2032
                                        ]
2033
                                    ]
2034
                                ]
2035
                            ],
2036
                            'groups' => [
2037
                                'type' => Literal::class,
2038
                                'options' => [
2039
                                    'route' => '/groups',
2040
                                    'defaults' => [
2041
                                        'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserGroupController',
2042
                                        'action' => 'index'
2043
                                    ]
2044
                                ],
2045
                                'may_terminate' => true,
2046
                                'child_routes' => [
2047
                                    'add' => [
2048
                                        'type' => Literal::class,
2049
                                        'options' => [
2050
                                            'route' => '/add',
2051
                                            'defaults' => [
2052
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserGroupController',
2053
                                                'action' => 'add'
2054
                                            ]
2055
                                        ]
2056
                                    ],
2057
                                    'edit' => [
2058
                                        'type' => Segment::class,
2059
                                        'options' => [
2060
                                            'route' => '/edit/:id',
2061
                                            'constraints' => [
2062
                                                'id' => '[A-Za-z0-9\-]+\=*'
2063
                                            ],
2064
                                            'defaults' => [
2065
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserGroupController',
2066
                                                'action' => 'edit'
2067
                                            ]
2068
                                        ]
2069
                                    ],
2070
                                    'delete' => [
2071
                                        'type' => Segment::class,
2072
                                        'options' => [
2073
                                            'route' => '/delete/:id',
2074
                                            'constraints' => [
2075
                                                'id' => '[A-Za-z0-9\-]+\=*'
2076
                                            ],
2077
                                            'defaults' => [
2078
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserGroupController',
2079
                                                'action' => 'delete'
2080
                                            ]
2081
                                        ]
2082
                                    ]
2083
                                ]
2084
                            ],
15607 anderson 2085
 
1 www 2086
                            'companies' => [
2087
                                'type' => Literal::class,
2088
                                'options' => [
2089
                                    'route' => '/companies',
2090
                                    'defaults' => [
2091
                                        'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserCompanyController',
2092
                                        'action' => 'index'
2093
                                    ]
2094
                                ],
2095
                                'may_terminate' => true,
2096
                                'child_routes' => [
2097
                                    'add' => [
2098
                                        'type' => Literal::class,
2099
                                        'options' => [
2100
                                            'route' => '/add',
2101
                                            'defaults' => [
2102
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserCompanyController',
2103
                                                'action' => 'add'
2104
                                            ]
2105
                                        ]
2106
                                    ],
2107
                                    'edit' => [
2108
                                        'type' => Segment::class,
2109
                                        'options' => [
2110
                                            'route' => '/edit/:id',
2111
                                            'constraints' => [
2112
                                                'id' => '[A-Za-z0-9\-]+\=*'
2113
                                            ],
2114
                                            'defaults' => [
2115
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserCompanyController',
2116
                                                'action' => 'edit'
2117
                                            ]
2118
                                        ]
2119
                                    ],
2120
                                    'delete' => [
2121
                                        'type' => Segment::class,
2122
                                        'options' => [
2123
                                            'route' => '/delete/:id',
2124
                                            'constraints' => [
2125
                                                'id' => '[A-Za-z0-9\-]+\=*'
2126
                                            ],
2127
                                            'defaults' => [
2128
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserCompanyController',
2129
                                                'action' => 'delete'
2130
                                            ]
2131
                                        ]
2132
                                    ]
2133
                                ]
2134
                            ],
2135
                            'partners' => [
2136
                                'type' => Literal::class,
2137
                                'options' => [
2138
                                    'route' => '/partners',
2139
                                    'defaults' => [
2140
                                        'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserPartnerController',
2141
                                        'action' => 'index'
2142
                                    ]
2143
                                ],
2144
                                'may_terminate' => true,
2145
                                'child_routes' => [
2146
                                    'add' => [
2147
                                        'type' => Literal::class,
2148
                                        'options' => [
2149
                                            'route' => '/add',
2150
                                            'defaults' => [
2151
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserPartnerController',
2152
                                                'action' => 'add'
2153
                                            ]
2154
                                        ]
2155
                                    ],
2156
                                    'edit' => [
2157
                                        'type' => Segment::class,
2158
                                        'options' => [
2159
                                            'route' => '/edit/:id',
2160
                                            'constraints' => [
2161
                                                'id' => '[A-Za-z0-9\-]+\=*'
2162
                                            ],
2163
                                            'defaults' => [
2164
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserPartnerController',
2165
                                                'action' => 'edit'
2166
                                            ]
2167
                                        ]
2168
                                    ],
2169
                                    'delete' => [
2170
                                        'type' => Segment::class,
2171
                                        'options' => [
2172
                                            'route' => '/delete/:id',
2173
                                            'constraints' => [
2174
                                                'id' => '[A-Za-z0-9\-]+\=*'
2175
                                            ],
2176
                                            'defaults' => [
2177
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserPartnerController',
2178
                                                'action' => 'delete'
2179
                                            ]
2180
                                        ]
2181
                                    ]
2182
                                ]
2183
                            ],
2184
                            'institutions' => [
2185
                                'type' => Literal::class,
2186
                                'options' => [
2187
                                    'route' => '/institutions',
2188
                                    'defaults' => [
2189
                                        'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserInstitutionController',
2190
                                        'action' => 'index'
2191
                                    ]
2192
                                ],
2193
                                'may_terminate' => true,
2194
                                'child_routes' => [
2195
                                    'add' => [
2196
                                        'type' => Literal::class,
2197
                                        'options' => [
2198
                                            'route' => '/add',
2199
                                            'defaults' => [
2200
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserInstitutionController',
2201
                                                'action' => 'add'
2202
                                            ]
2203
                                        ]
2204
                                    ],
2205
                                    'edit' => [
2206
                                        'type' => Segment::class,
2207
                                        'options' => [
2208
                                            'route' => '/edit/:id',
2209
                                            'constraints' => [
2210
                                                'id' => '[A-Za-z0-9\-]+\=*'
2211
                                            ],
2212
                                            'defaults' => [
2213
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserInstitutionController',
2214
                                                'action' => 'edit'
2215
                                            ]
2216
                                        ]
2217
                                    ],
2218
                                    'delete' => [
2219
                                        'type' => Segment::class,
2220
                                        'options' => [
2221
                                            'route' => '/delete/:id',
2222
                                            'constraints' => [
2223
                                                'id' => '[A-Za-z0-9\-]+\=*'
2224
                                            ],
2225
                                            'defaults' => [
2226
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserInstitutionController',
2227
                                                'action' => 'delete'
2228
                                            ]
2229
                                        ]
2230
                                    ]
2231
                                ]
2232
                            ],
15394 efrain 2233
                            'countries' => [
2234
                                'type' => Literal::class,
2235
                                'options' => [
2236
                                    'route' => '/countries',
2237
                                    'defaults' => [
2238
                                        'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserCountryController',
2239
                                        'action' => 'index'
2240
                                    ]
2241
                                ],
2242
                                'may_terminate' => true,
2243
                                'child_routes' => [
2244
                                    'add' => [
2245
                                        'type' => Literal::class,
2246
                                        'options' => [
2247
                                            'route' => '/add',
2248
                                            'defaults' => [
2249
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserCountryController',
2250
                                                'action' => 'add'
2251
                                            ]
2252
                                        ]
2253
                                    ],
2254
                                    'edit' => [
2255
                                        'type' => Segment::class,
2256
                                        'options' => [
2257
                                            'route' => '/edit/:id',
2258
                                            'constraints' => [
2259
                                                'id' => '[A-Za-z0-9\-]+\=*'
2260
                                            ],
2261
                                            'defaults' => [
2262
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserCountryController',
2263
                                                'action' => 'edit'
2264
                                            ]
2265
                                        ]
2266
                                    ],
2267
                                    'delete' => [
2268
                                        'type' => Segment::class,
2269
                                        'options' => [
2270
                                            'route' => '/delete/:id',
2271
                                            'constraints' => [
2272
                                                'id' => '[A-Za-z0-9\-]+\=*'
2273
                                            ],
2274
                                            'defaults' => [
2275
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserCountryController',
2276
                                                'action' => 'delete'
2277
                                            ]
2278
                                        ]
2279
                                    ]
2280
                                ]
2281
                            ],
1 www 2282
                        ]
1089 geraldo 2283
                    ],
1 www 2284
                ],
1089 geraldo 2285
            ],
2286
            /*             * * START PUBLICATIONS ** */
1 www 2287
            'publications' => [
2288
                'type' => Literal::class,
2289
                'options' => [
2290
                    'route' => '/publications',
2291
                    'defaults' => [
2292
                        'controller' => '\LeadersLinked\Controller\DashboardController',
2293
                        'action' => 'index'
2294
                    ]
2295
                ],
2296
                'may_terminate' => true,
2297
                'child_routes' => [
2298
                    'pages' => [
2299
                        'type' => Literal::class,
2300
                        'options' => [
2301
                            'route' => '/pages',
2302
                            'defaults' => [
2303
                                'controller' => '\LeadersLinked\Controller\PageController',
2304
                                'action' => 'index'
2305
                            ]
2306
                        ],
2307
                        'may_terminate' => true,
2308
                        'child_routes' => [
2309
                            'add' => [
2310
                                'type' => Literal::class,
2311
                                'options' => [
2312
                                    'route' => '/add',
2313
                                    'defaults' => [
2314
                                        'controller' => '\LeadersLinked\Controller\PageController',
2315
                                        'action' => 'add'
2316
                                    ]
2317
                                ]
2318
                            ],
2319
                            'edit' => [
2320
                                'type' => Segment::class,
2321
                                'options' => [
2322
                                    'route' => '/edit/:id',
2323
                                    'constraints' => [
2324
                                        'id' => '[A-Za-z0-9\-]+\=*'
2325
                                    ],
2326
                                    'defaults' => [
2327
                                        'controller' => '\LeadersLinked\Controller\PageController',
2328
                                        'action' => 'edit'
2329
                                    ]
2330
                                ]
2331
                            ],
2332
                            'delete' => [
2333
                                'type' => Segment::class,
2334
                                'options' => [
2335
                                    'route' => '/delete/:id',
2336
                                    'constraints' => [
2337
                                        'id' => '[A-Za-z0-9\-]+\=*'
2338
                                    ],
2339
                                    'defaults' => [
2340
                                        'controller' => '\LeadersLinked\Controller\PageController',
2341
                                        'action' => 'delete'
2342
                                    ]
2343
                                ]
2344
                            ]
2345
                        ]
2346
                    ],
2347
                    'posts' => [
2348
                        'type' => Literal::class,
2349
                        'options' => [
2350
                            'route' => '/posts',
2351
                            'defaults' => [
2352
                                'controller' => '\LeadersLinked\Controller\PostController',
2353
                                'action' => 'index'
2354
                            ]
2355
                        ],
2356
                        'may_terminate' => true,
2357
                        'child_routes' => [
2358
                            'add' => [
2359
                                'type' => Literal::class,
2360
                                'options' => [
2361
                                    'route' => '/add',
2362
                                    'defaults' => [
2363
                                        'controller' => '\LeadersLinked\Controller\PostController',
2364
                                        'action' => 'add'
2365
                                    ]
2366
                                ]
2367
                            ],
2368
                            'edit' => [
2369
                                'type' => Segment::class,
2370
                                'options' => [
2371
                                    'route' => '/edit/:id',
2372
                                    'constraints' => [
2373
                                        'id' => '[A-Za-z0-9\-]+\=*'
2374
                                    ],
2375
                                    'defaults' => [
2376
                                        'controller' => '\LeadersLinked\Controller\PostController',
2377
                                        'action' => 'edit'
2378
                                    ]
2379
                                ]
2380
                            ],
2381
                            'delete' => [
2382
                                'type' => Segment::class,
2383
                                'options' => [
2384
                                    'route' => '/delete/:id',
2385
                                    'constraints' => [
2386
                                        'id' => '[A-Za-z0-9\-]+\=*'
2387
                                    ],
2388
                                    'defaults' => [
2389
                                        'controller' => '\LeadersLinked\Controller\PostController',
2390
                                        'action' => 'delete'
2391
                                    ]
2392
                                ]
2393
                            ]
2394
                        ]
2395
                    ],
2396
                ]
1089 geraldo 2397
            ],
15540 efrain 2398
            'engagement' => [
2399
                'type' => Literal::class,
2400
                'options' => [
2401
                    'route' => '/engagement',
2402
                    'defaults' => [
2403
                        'controller' => '\LeadersLinked\Controller\EngagementController',
2404
                        'action' => 'index'
2405
                    ]
2406
                ],
2407
                'may_terminate' => true,
2408
                'child_routes' => [
2409
                    'setup' => [
2410
                        'type' => Literal::class,
2411
                        'options' => [
2412
                            'route' => '/setup',
2413
                            'defaults' => [
2414
                                'controller' => '\LeadersLinked\Controller\EngagementController',
2415
                                'action' => 'setup'
2416
                            ]
2417
                        ],
2418
                    ],
15543 efrain 2419
                    'rewards' => [
2420
                        'type' => Literal::class,
2421
                        'options' => [
2422
                            'route' => '/rewards',
2423
                            'defaults' => [
2424
                                'controller' => '\LeadersLinked\Controller\EngagementRewardController',
2425
                                'action' => 'index'
2426
                            ]
2427
                        ],
2428
                        'may_terminate' => true,
2429
                        'child_routes' => [
2430
                            'add' => [
2431
                                'type' => Literal::class,
2432
                                'options' => [
2433
                                    'route' => '/add',
2434
                                    'defaults' => [
2435
                                        'controller' => '\LeadersLinked\Controller\EngagementRewardController',
2436
                                        'action' => 'add'
2437
                                    ]
2438
                                ]
2439
                            ],
2440
                            'edit' => [
2441
                                'type' => Segment::class,
2442
                                'options' => [
2443
                                    'route' => '/edit/:id',
2444
                                    'constraints' => [
2445
                                        'id' => '[A-Za-z0-9\-]+\=*'
2446
                                    ],
2447
                                    'defaults' => [
2448
                                        'controller' => '\LeadersLinked\Controller\EngagementRewardController',
2449
                                        'action' => 'edit'
2450
                                    ]
2451
                                ]
2452
                            ],
2453
                            'delete' => [
2454
                                'type' => Segment::class,
2455
                                'options' => [
2456
                                    'route' => '/delete/:id',
2457
                                    'constraints' => [
2458
                                        'id' => '[A-Za-z0-9\-]+\=*'
2459
                                    ],
2460
                                    'defaults' => [
2461
                                        'controller' => '\LeadersLinked\Controller\EngagementRewardController',
2462
                                        'action' => 'delete'
2463
                                    ]
2464
                                ]
2465
                            ]
2466
                        ],
15607 anderson 2467
 
15543 efrain 2468
                    ],
15540 efrain 2469
                    'reports' => [
2470
                        'type' => Literal::class,
2471
                        'options' => [
2472
                            'route' => '/reports',
2473
                            'defaults' => [
2474
                                'controller' => '\LeadersLinked\Controller\EngagementReportsController',
2475
                                'action' => 'index'
2476
                            ]
2477
                        ],
2478
                        'may_terminate' => true,
2479
                        'child_routes' => [
2480
                            'overview' => [
2481
                                'type' => Literal::class,
2482
                                'options' => [
2483
                                    'route' => '/overview',
2484
                                    'defaults' => [
2485
                                        'controller' => '\LeadersLinked\Controller\EngagementReportsController',
2486
                                        'action' => 'overview'
2487
                                    ]
2488
                                ]
2489
                            ],
15607 anderson 2490
 
15540 efrain 2491
                        ]
15607 anderson 2492
                    ],
2493
                ],
2494
            ],
2495
 
15540 efrain 2496
            /*** DAILY PULSE ****/
2497
            'daily-pulse' => [
2498
                'type' => Literal::class,
2499
                'options' => [
2500
                    'route' => '/daily-pulse',
2501
                    'defaults' => [
2502
                        'controller' => '\LeadersLinked\Controller\DailyPulseController',
2503
                        'action' => 'index'
2504
                    ]
2505
                ],
2506
                'may_terminate' => true,
2507
                'child_routes' => [
16796 efrain 2508
                    'setup' => [
2509
                        'type' => Literal::class,
2510
                        'options' => [
2511
                            'route' => '/setup',
2512
                            'defaults' => [
2513
                                'controller' => '\LeadersLinked\Controller\DailyPulseController',
2514
                                'action' => 'setup'
2515
                            ]
2516
                        ],
2517
                        'may_terminate' => true,
2518
                    ],
15540 efrain 2519
                    'emojis' => [
2520
                        'type' => Literal::class,
2521
                        'options' => [
2522
                            'route' => '/emojis',
2523
                            'defaults' => [
2524
                                'controller' => '\LeadersLinked\Controller\DailyPulseEmojiController',
2525
                                'action' => 'index'
2526
                            ]
2527
                        ],
2528
                        'may_terminate' => true,
2529
                        'child_routes' => [
2530
                            'add' => [
2531
                                'type' => Literal::class,
2532
                                'options' => [
2533
                                    'route' => '/add',
2534
                                    'defaults' => [
2535
                                        'controller' => '\LeadersLinked\Controller\DailyPulseEmojiController',
2536
                                        'action' => 'add'
2537
                                    ]
2538
                                ]
2539
                            ],
2540
                            'edit' => [
2541
                                'type' => Segment::class,
2542
                                'options' => [
2543
                                    'route' => '/edit/:id',
2544
                                    'constraints' => [
2545
                                        'id' => '[A-Za-z0-9\-]+\=*'
2546
                                    ],
2547
                                    'defaults' => [
2548
                                        'controller' => '\LeadersLinked\Controller\DailyPulseEmojiController',
2549
                                        'action' => 'edit'
2550
                                    ]
2551
                                ]
2552
                            ],
2553
                            'delete' => [
2554
                                'type' => Segment::class,
2555
                                'options' => [
2556
                                    'route' => '/delete/:id',
2557
                                    'constraints' => [
2558
                                        'id' => '[A-Za-z0-9\-]+\=*'
2559
                                    ],
2560
                                    'defaults' => [
2561
                                        'controller' => '\LeadersLinked\Controller\DailyPulseEmojiController',
2562
                                        'action' => 'delete'
2563
                                    ]
2564
                                ]
2565
                            ]
2566
                        ],
15607 anderson 2567
 
15540 efrain 2568
                    ],
2569
                    'reports' => [
2570
                        'type' => Literal::class,
2571
                        'options' => [
2572
                            'route' => '/reports',
2573
                            'defaults' => [
2574
                                'controller' => '\LeadersLinked\Controller\DailyPulseReportsController',
2575
                                'action' => 'index'
2576
                            ]
2577
                        ],
2578
                        'may_terminate' => true,
2579
                        'child_routes' => [
2580
                            'overview' => [
2581
                                'type' => Literal::class,
2582
                                'options' => [
2583
                                    'route' => '/overview',
2584
                                    'defaults' => [
2585
                                        'controller' => '\LeadersLinked\Controller\DailyPulseReportsController',
2586
                                        'action' => 'overview'
2587
                                    ]
2588
                                ],
2589
                                'may_terminate' => true,
2590
                                'child_routes' => [
2591
                                    'download' => [
2592
                                        'type' => Literal::class,
2593
                                        'options' => [
2594
                                            'route' => '/download',
2595
                                            'defaults' => [
2596
                                                'controller' => '\LeadersLinked\Controller\DailyPulseReportsController',
2597
                                                'action' => 'overviewDownload'
2598
                                            ]
2599
                                        ]
2600
                                    ],
2601
                                ]
2602
                            ],
15607 anderson 2603
 
15540 efrain 2604
                        ]
15607 anderson 2605
                    ],
15540 efrain 2606
                ],
15607 anderson 2607
            ],
1089 geraldo 2608
            /*             * * START SELF EVALUATION ** */
114 efrain 2609
            'self-evaluation' => [
2610
                'type' => Literal::class,
2611
                'options' => [
2612
                    'route' => '/self-evaluation',
2613
                    'defaults' => [
115 efrain 2614
                        'controller' => '\LeadersLinked\Controller\SelfEvaluationController',
114 efrain 2615
                        'action' => 'index'
2616
                    ]
2617
                ],
2618
                'may_terminate' => true,
2619
                'child_routes' => [
2620
                    'forms' => [
2621
                        'type' => Literal::class,
2622
                        'options' => [
2623
                            'route' => '/forms',
2624
                            'defaults' => [
115 efrain 2625
                                'controller' => '\LeadersLinked\Controller\SelfEvaluationFormController',
114 efrain 2626
                                'action' => 'index'
2627
                            ]
2628
                        ],
2629
                        'may_terminate' => true,
2630
                        'child_routes' => [
2631
                            'add' => [
2632
                                'type' => Literal::class,
2633
                                'options' => [
2634
                                    'route' => '/add',
2635
                                    'defaults' => [
115 efrain 2636
                                        'controller' => '\LeadersLinked\Controller\SelfEvaluationFormController',
114 efrain 2637
                                        'action' => 'add'
2638
                                    ]
2639
                                ]
2640
                            ],
2641
                            'edit' => [
2642
                                'type' => Segment::class,
2643
                                'options' => [
2644
                                    'route' => '/edit/:id',
2645
                                    'constraints' => [
2646
                                        'id' => '[A-Za-z0-9\-]+\=*'
2647
                                    ],
2648
                                    'defaults' => [
115 efrain 2649
                                        'controller' => '\LeadersLinked\Controller\SelfEvaluationFormController',
114 efrain 2650
                                        'action' => 'edit'
2651
                                    ]
2652
                                ]
2653
                            ],
2654
                            'delete' => [
2655
                                'type' => Segment::class,
2656
                                'options' => [
2657
                                    'route' => '/delete/:id',
2658
                                    'constraints' => [
2659
                                        'id' => '[A-Za-z0-9\-]+\=*'
2660
                                    ],
2661
                                    'defaults' => [
115 efrain 2662
                                        'controller' => '\LeadersLinked\Controller\SelfEvaluationFormController',
114 efrain 2663
                                        'action' => 'delete'
2664
                                    ]
2665
                                ]
2666
                            ]
2667
                        ]
2668
                    ],
115 efrain 2669
                    'users' => [
2670
                        'type' => Literal::class,
2671
                        'options' => [
2672
                            'route' => '/users',
2673
                            'defaults' => [
2674
                                'controller' => '\LeadersLinked\Controller\SelfEvaluationFormUserController',
2675
                                'action' => 'index'
2676
                            ]
2677
                        ],
2678
                        'may_terminate' => true,
2679
                        'child_routes' => [
2680
                            'add' => [
2681
                                'type' => Segment::class,
2682
                                'options' => [
2683
                                    'route' => '/add/:form_id/:user_id',
2684
                                    'constraints' => [
2685
                                        'form_id' => '[A-Za-z0-9\-]+\=*',
2686
                                        'user_id' => '[A-Za-z0-9\-]+\=*'
2687
                                    ],
2688
                                    'defaults' => [
2689
                                        'controller' => '\LeadersLinked\Controller\SelfEvaluationFormUserController',
2690
                                        'action' => 'add'
2691
                                    ]
2692
                                ]
2693
                            ],
2694
                            'delete' => [
2695
                                'type' => Segment::class,
2696
                                'options' => [
2697
                                    'route' => '/delete/:form_id/:user_id',
2698
                                    'constraints' => [
2699
                                        'form_id' => '[A-Za-z0-9\-]+\=*',
2700
                                        'user_id' => '[A-Za-z0-9\-]+\=*'
2701
                                    ],
2702
                                    'defaults' => [
2703
                                        'controller' => '\LeadersLinked\Controller\SelfEvaluationFormUserController',
2704
                                        'action' => 'delete'
2705
                                    ]
2706
                                ]
2707
                            ]
2708
                        ]
2709
                    ],
114 efrain 2710
                    'reviews' => [
2711
                        'type' => Literal::class,
2712
                        'options' => [
2713
                            'route' => '/reviews',
2714
                            'defaults' => [
115 efrain 2715
                                'controller' => '\LeadersLinked\Controller\SelfEvaluationReviewController',
114 efrain 2716
                                'action' => 'index'
2717
                            ]
2718
                        ],
2719
                        'may_terminate' => true,
2720
                        'child_routes' => [
2721
                            'edit' => [
2722
                                'type' => Segment::class,
2723
                                'options' => [
2724
                                    'route' => '/edit/:id',
2725
                                    'constraints' => [
2726
                                        'id' => '[A-Za-z0-9\-]+\=*'
2727
                                    ],
2728
                                    'defaults' => [
115 efrain 2729
                                        'controller' => '\LeadersLinked\Controller\SelfEvaluationReviewController',
486 geraldo 2730
                                        'action' => 'edit'
114 efrain 2731
                                    ]
2732
                                ]
2733
                            ],
469 geraldo 2734
                            'report' => [
2735
                                'type' => Segment::class,
2736
                                'options' => [
2737
                                    'route' => '/report/:id',
2738
                                    'constraints' => [
2739
                                        'id' => '[A-Za-z0-9\-]+\=*'
2740
                                    ],
2741
                                    'defaults' => [
2742
                                        'controller' => '\LeadersLinked\Controller\SelfEvaluationReviewController',
487 geraldo 2743
                                        'action' => 'report'
469 geraldo 2744
                                    ]
2745
                                ]
2746
                            ],
114 efrain 2747
                        ]
2748
                    ],
2749
                ]
1089 geraldo 2750
            ],
2751
            /*             * * END SELF EVALUATION ** */
15607 anderson 2752
 
15451 efrain 2753
            /*             * * START MY COACH ** */
2754
            'my-coach' => [
2755
                'type' => Literal::class,
2756
                'options' => [
2757
                    'route' => '/my-coach',
2758
                    'defaults' => [
2759
                        'controller' => '\LeadersLinked\Controller\MyCoachController',
2760
                        'action' => 'index'
2761
                    ]
2762
                ],
2763
                'may_terminate' => true,
2764
                'child_routes' => [
2765
                    'categories' => [
2766
                        'type' => Literal::class,
2767
                        'options' => [
2768
                            'route' => '/categories',
2769
                            'defaults' => [
2770
                                'controller' => '\LeadersLinked\Controller\MyCoachCategoryController',
2771
                                'action' => 'index'
2772
                            ]
2773
                        ],
2774
                        'may_terminate' => true,
2775
                        'child_routes' => [
2776
                            'add' => [
2777
                                'type' => Literal::class,
2778
                                'options' => [
2779
                                    'route' => '/add',
2780
                                    'defaults' => [
2781
                                        'controller' =>  '\LeadersLinked\Controller\MyCoachCategoryController',
2782
                                        'action' => 'add'
2783
                                    ]
2784
                                ]
2785
                            ],
2786
                            'edit' => [
2787
                                'type' => Segment::class,
2788
                                'options' => [
2789
                                    'route' => '/edit/:id',
2790
                                    'constraints' => [
2791
                                        'id' => '[A-Za-z0-9\-]+\=*'
2792
                                    ],
2793
                                    'defaults' => [
2794
                                        'controller' =>  '\LeadersLinked\Controller\MyCoachCategoryController',
2795
                                        'action' => 'edit'
2796
                                    ]
2797
                                ]
2798
                            ],
2799
                            'delete' => [
2800
                                'type' => Segment::class,
2801
                                'options' => [
2802
                                    'route' => '/delete/:id',
2803
                                    'constraints' => [
2804
                                        'id' => '[A-Za-z0-9\-]+\=*'
2805
                                    ],
2806
                                    'defaults' => [
2807
                                        'controller' =>  '\LeadersLinked\Controller\MyCoachCategoryController',
2808
                                        'action' => 'delete'
2809
                                    ]
2810
                                ]
2811
                            ],
15831 efrain 2812
                            'users' => [
2813
                                'type' =>  Literal::class,
2814
                                'options' => [
2815
                                    'route' => '/users',
2816
                                    'defaults' => [
2817
                                        'controller' =>  '\LeadersLinked\Controller\MyCoachCategoryUserController',
2818
                                        'action' => 'index'
2819
                                    ]
2820
                                ],
2821
                                'may_terminate' => true,
2822
                                'child_routes' => [
2823
                                    'add' => [
2824
                                        'type' => Segment::class,
2825
                                        'options' => [
2826
                                            'route' => '/add/:id',
2827
                                            'constraints' => [
2828
                                                'id' => '[A-Za-z0-9\-]+\=*'
2829
                                            ],
2830
                                            'defaults' => [
2831
                                                'controller' =>  '\LeadersLinked\Controller\MyCoachCategoryUserController',
2832
                                                'action' => 'add'
2833
                                            ]
2834
                                        ]
2835
                                    ],
2836
                                    'edit' => [
2837
                                        'type' => Segment::class,
2838
                                        'options' => [
2839
                                            'route' => '/edit/:id/:user_id',
2840
                                            'constraints' => [
2841
                                                'id' => '[A-Za-z0-9\-]+\=*',
2842
                                                'user_id' => '[A-Za-z0-9\-]+\=*'
2843
                                            ],
2844
                                            'defaults' => [
2845
                                                'controller' =>  '\LeadersLinked\Controller\MyCoachCategoryUserController',
2846
                                                'action' => 'edit'
2847
                                            ]
2848
                                        ]
2849
                                    ],
2850
                                    'delete' => [
2851
                                        'type' => Segment::class,
2852
                                        'options' => [
2853
                                            'route' => '/delete/:id/:user_id',
2854
                                            'constraints' => [
2855
                                                'id' => '[A-Za-z0-9\-]+\=*',
2856
                                                'user_id' => '[A-Za-z0-9\-]+\=*'
2857
                                            ],
2858
                                            'defaults' => [
2859
                                                'controller' =>  '\LeadersLinked\Controller\MyCoachCategoryUserController',
2860
                                                'action' => 'delete'
2861
                                            ]
2862
                                        ]
2863
                                    ],
2864
                                    'upload' => [
2865
                                        'type' => Segment::class,
2866
                                        'options' => [
2867
                                            'route' => '/upload/:id',
2868
                                            'constraints' => [
2869
                                                'id' => '[A-Za-z0-9\-]+\=*',
2870
                                            ],
2871
                                            'defaults' => [
2872
                                                'controller' =>  '\LeadersLinked\Controller\MyCoachCategoryUserController',
2873
                                                'action' => 'upload'
2874
                                            ]
2875
                                        ]
2876
                                    ],
16797 efrain 2877
                                    'jobs-description' => [
2878
                                        'type' => Segment::class,
2879
                                        'options' => [
2880
                                            'route' => '/jobs-description/:id',
2881
                                            'constraints' => [
2882
                                                'id' => '[A-Za-z0-9\-]+\=*',
2883
                                            ],
2884
                                            'defaults' => [
2885
                                                'controller' =>  '\LeadersLinked\Controller\MyCoachCategoryUserController',
2886
                                                'action' => 'jobsDescription'
2887
                                            ]
2888
                                        ]
2889
                                    ],
16180 anderson 2890
                                ]
15831 efrain 2891
                            ],
16180 anderson 2892
 
15451 efrain 2893
                        ]
2894
                    ],
2895
                ]
2896
            ],
15607 anderson 2897
 
15451 efrain 2898
            /*             * * END MY COACH ** */
16270 anderson 2899
 
16248 efrain 2900
            /*             * * START KNOWLEDGE AREA ** */
2901
            'knowledge-area' => [
2902
                'type' => Literal::class,
2903
                'options' => [
2904
                    'route' => '/knowledge-area',
2905
                    'defaults' => [
2906
                        'controller' => '\LeadersLinked\Controller\KnowledgeAreaController',
2907
                        'action' => 'index'
2908
                    ]
2909
                ],
2910
                'may_terminate' => true,
2911
                'child_routes' => [
2912
                    'categories' => [
2913
                        'type' => Literal::class,
2914
                        'options' => [
2915
                            'route' => '/categories',
2916
                            'defaults' => [
2917
                                'controller' => '\LeadersLinked\Controller\KnowledgeAreaCategoryController',
2918
                                'action' => 'index'
2919
                            ]
2920
                        ],
2921
                        'may_terminate' => true,
2922
                        'child_routes' => [
2923
                            'add' => [
2924
                                'type' => Literal::class,
2925
                                'options' => [
2926
                                    'route' => '/add',
2927
                                    'defaults' => [
2928
                                        'controller' =>  '\LeadersLinked\Controller\KnowledgeAreaCategoryController',
2929
                                        'action' => 'add'
2930
                                    ]
2931
                                ]
2932
                            ],
2933
                            'edit' => [
2934
                                'type' => Segment::class,
2935
                                'options' => [
2936
                                    'route' => '/edit/:id',
2937
                                    'constraints' => [
2938
                                        'id' => '[A-Za-z0-9\-]+\=*'
2939
                                    ],
2940
                                    'defaults' => [
2941
                                        'controller' =>  '\LeadersLinked\Controller\KnowledgeAreaCategoryController',
2942
                                        'action' => 'edit'
2943
                                    ]
2944
                                ]
2945
                            ],
2946
                            'delete' => [
2947
                                'type' => Segment::class,
2948
                                'options' => [
2949
                                    'route' => '/delete/:id',
2950
                                    'constraints' => [
2951
                                        'id' => '[A-Za-z0-9\-]+\=*'
2952
                                    ],
2953
                                    'defaults' => [
2954
                                        'controller' =>  '\LeadersLinked\Controller\KnowledgeAreaCategoryController',
2955
                                        'action' => 'delete'
2956
                                    ]
2957
                                ]
2958
                            ],
2959
                            'users' => [
2960
                                'type' =>  Literal::class,
2961
                                'options' => [
2962
                                    'route' => '/users',
2963
                                    'defaults' => [
2964
                                        'controller' =>  '\LeadersLinked\Controller\KnowledgeAreaCategoryUserController',
2965
                                        'action' => 'index'
2966
                                    ]
2967
                                ],
2968
                                'may_terminate' => true,
2969
                                'child_routes' => [
2970
                                    'add' => [
2971
                                        'type' => Segment::class,
2972
                                        'options' => [
2973
                                            'route' => '/add/:id',
2974
                                            'constraints' => [
2975
                                                'id' => '[A-Za-z0-9\-]+\=*'
2976
                                            ],
2977
                                            'defaults' => [
2978
                                                'controller' =>  '\LeadersLinked\Controller\KnowledgeAreaCategoryUserController',
2979
                                                'action' => 'add'
2980
                                            ]
2981
                                        ]
2982
                                    ],
2983
                                    'edit' => [
2984
                                        'type' => Segment::class,
2985
                                        'options' => [
2986
                                            'route' => '/edit/:id/:user_id',
2987
                                            'constraints' => [
2988
                                                'id' => '[A-Za-z0-9\-]+\=*',
2989
                                                'user_id' => '[A-Za-z0-9\-]+\=*'
2990
                                            ],
2991
                                            'defaults' => [
2992
                                                'controller' =>  '\LeadersLinked\Controller\KnowledgeAreaCategoryUserController',
2993
                                                'action' => 'edit'
2994
                                            ]
2995
                                        ]
2996
                                    ],
2997
                                    'delete' => [
2998
                                        'type' => Segment::class,
2999
                                        'options' => [
3000
                                            'route' => '/delete/:id/:user_id',
3001
                                            'constraints' => [
3002
                                                'id' => '[A-Za-z0-9\-]+\=*',
3003
                                                'user_id' => '[A-Za-z0-9\-]+\=*'
3004
                                            ],
3005
                                            'defaults' => [
3006
                                                'controller' =>  '\LeadersLinked\Controller\KnowledgeAreaCategoryUserController',
3007
                                                'action' => 'delete'
3008
                                            ]
3009
                                        ]
3010
                                    ],
3011
                                    'upload' => [
3012
                                        'type' => Segment::class,
3013
                                        'options' => [
3014
                                            'route' => '/upload/:id',
3015
                                            'constraints' => [
3016
                                                'id' => '[A-Za-z0-9\-]+\=*',
3017
                                            ],
3018
                                            'defaults' => [
3019
                                                'controller' =>  '\LeadersLinked\Controller\KnowledgeAreaCategoryUserController',
3020
                                                'action' => 'upload'
3021
                                            ]
3022
                                        ]
3023
                                    ],
16797 efrain 3024
                                    'jobs-description' => [
3025
                                        'type' => Segment::class,
3026
                                        'options' => [
3027
                                            'route' => '/jobs-description/:id',
3028
                                            'constraints' => [
3029
                                                'id' => '[A-Za-z0-9\-]+\=*',
3030
                                            ],
3031
                                            'defaults' => [
3032
                                                'controller' =>  '\LeadersLinked\Controller\KnowledgeAreaCategoryUserController',
3033
                                                'action' => 'jobsDescription'
3034
                                            ]
3035
                                        ]
3036
                                    ],
16248 efrain 3037
                                ]
3038
                            ],
16270 anderson 3039
 
16248 efrain 3040
                        ]
3041
                    ],
3042
                ]
3043
            ],
16270 anderson 3044
 
16248 efrain 3045
            /*             * * END KNOWLEDGE AREA ** */
17007 efrain 3046
 
3047
 
3048
 
3049
            /*             * * START HABITS ** */
3050
            'habits' => [
3051
                'type' => Literal::class,
3052
                'options' => [
3053
                    'route' => '/habits',
3054
                    'defaults' => [
3055
                        'controller' => '\LeadersLinked\Controller\UnknownController',
3056
                        'action' => 'index'
3057
                    ]
3058
                ],
3059
                'may_terminate' => true,
3060
                'child_routes' => [
3061
                    'skills' => [
3062
                        'type' => Literal::class,
3063
                        'options' => [
3064
                            'route' => '/skills',
3065
                            'defaults' => [
3066
                                'controller' => '\LeadersLinked\Controller\HabitSkillController',
3067
                                'action' => 'index'
3068
                            ]
3069
                        ],
3070
                        'may_terminate' => true,
3071
                        'child_routes' => [
3072
                            'add' => [
3073
                                'type' => Literal::class,
3074
                                'options' => [
3075
                                    'route' => '/add',
3076
                                    'defaults' => [
3077
                                        'controller' =>  '\LeadersLinked\Controller\HabitSkillController',
3078
                                        'action' => 'add'
3079
                                    ]
3080
                                ]
3081
                            ],
3082
                            'edit' => [
3083
                                'type' => Segment::class,
3084
                                'options' => [
3085
                                    'route' => '/edit/:id',
3086
                                    'constraints' => [
3087
                                        'id' => '[A-Za-z0-9\-]+\=*'
3088
                                    ],
3089
                                    'defaults' => [
3090
                                        'controller' =>  '\LeadersLinked\Controller\HabitSkillController',
3091
                                        'action' => 'edit'
3092
                                    ]
3093
                                ]
3094
                            ],
3095
                            'delete' => [
3096
                                'type' => Segment::class,
3097
                                'options' => [
3098
                                    'route' => '/delete/:id',
3099
                                    'constraints' => [
3100
                                        'id' => '[A-Za-z0-9\-]+\=*'
3101
                                    ],
3102
                                    'defaults' => [
3103
                                        'controller' =>  '\LeadersLinked\Controller\HabitSkillController',
3104
                                        'action' => 'delete'
3105
                                    ]
3106
                                ]
3107
                            ],
17008 efrain 3108
 
3109
 
3110
                        ]
3111
                    ],
3112
 
3113
 
3114
                    'users' => [
3115
                        'type' =>  Literal::class,
3116
                        'options' => [
3117
                            'route' => '/users',
3118
                            'defaults' => [
3119
                                'controller' =>  '\LeadersLinked\Controller\HabitUserController',
3120
                                'action' => 'index'
3121
                            ]
3122
                        ],
3123
                        'may_terminate' => true,
3124
                        'child_routes' => [
3125
                            'add' => [
3126
                                'type' => Literal::class,
17007 efrain 3127
                                'options' => [
17008 efrain 3128
                                    'route' => '/add',
17007 efrain 3129
                                    'defaults' => [
3130
                                        'controller' =>  '\LeadersLinked\Controller\HabitUserController',
17008 efrain 3131
                                        'action' => 'add'
17007 efrain 3132
                                    ]
17008 efrain 3133
                                ]
3134
                            ],
3135
                            /*
3136
                             'edit' => [
3137
                             'type' => Segment::class,
3138
                             'options' => [
3139
                             'route' => '/edit/:id/:user_id',
3140
                             'constraints' => [
3141
                             'id' => '[A-Za-z0-9\-]+\=*',
3142
                             'user_id' => '[A-Za-z0-9\-]+\=*'
3143
                             ],
3144
                             'defaults' => [
3145
                             'controller' =>  '\LeadersLinked\Controller\HabitUserController',
3146
                             'action' => 'edit'
3147
                             ]
3148
                             ]
3149
                             ],*/
3150
                            'delete' => [
3151
                                'type' => Segment::class,
3152
                                'options' => [
3153
                                    'route' => '/delete/:id/:user_id',
3154
                                    'constraints' => [
3155
                                        'id' => '[A-Za-z0-9\-]+\=*',
3156
                                        'user_id' => '[A-Za-z0-9\-]+\=*'
17007 efrain 3157
                                    ],
17008 efrain 3158
                                    'defaults' => [
3159
                                        'controller' =>  '\LeadersLinked\Controller\HabitUserController',
3160
                                        'action' => 'delete'
3161
                                    ]
3162
                                ]
3163
                            ],
3164
                            'upload' => [
3165
                                'type' => Segment::class,
3166
                                'options' => [
3167
                                    'route' => '/upload/:id',
3168
                                    'constraints' => [
3169
                                        'id' => '[A-Za-z0-9\-]+\=*',
17007 efrain 3170
                                    ],
17008 efrain 3171
                                    'defaults' => [
3172
                                        'controller' =>  '\LeadersLinked\Controller\HabitUserController',
3173
                                        'action' => 'upload'
3174
                                    ]
17007 efrain 3175
                                ]
3176
                            ],
3177
 
3178
                        ]
3179
                    ],
17008 efrain 3180
 
3181
 
3182
 
3183
 
17007 efrain 3184
                ]
3185
            ],
3186
 
3187
            /*             * * END HABITS ** */
946 geraldo 3188
 
15607 anderson 3189
 
1089 geraldo 3190
            /*             * * START PERFOMANCE EVALUATION ** */
946 geraldo 3191
            'performance-evaluation' => [
3192
                'type' => Literal::class,
3193
                'options' => [
3194
                    'route' => '/performance-evaluation',
3195
                    'defaults' => [
15394 efrain 3196
                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationController',
946 geraldo 3197
                        'action' => 'index'
3198
                    ]
3199
                ],
3200
                'may_terminate' => true,
3201
                'child_routes' => [
3202
                    'forms' => [
3203
                        'type' => Literal::class,
3204
                        'options' => [
3205
                            'route' => '/forms',
3206
                            'defaults' => [
977 geraldo 3207
                                'controller' => '\LeadersLinked\Controller\PerformanceEvaluationFormController',
946 geraldo 3208
                                'action' => 'index'
3209
                            ]
3210
                        ],
3211
                        'may_terminate' => true,
3212
                        'child_routes' => [
3213
                            'add' => [
3214
                                'type' => Literal::class,
3215
                                'options' => [
3216
                                    'route' => '/add',
3217
                                    'defaults' => [
977 geraldo 3218
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationFormController',
946 geraldo 3219
                                        'action' => 'add'
3220
                                    ]
3221
                                ]
3222
                            ],
3223
                            'edit' => [
3224
                                'type' => Segment::class,
3225
                                'options' => [
3226
                                    'route' => '/edit/:id',
3227
                                    'constraints' => [
3228
                                        'id' => '[A-Za-z0-9\-]+\=*'
3229
                                    ],
3230
                                    'defaults' => [
986 geraldo 3231
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationFormController',
946 geraldo 3232
                                        'action' => 'edit'
3233
                                    ]
3234
                                ]
3235
                            ],
3236
                            'delete' => [
3237
                                'type' => Segment::class,
3238
                                'options' => [
3239
                                    'route' => '/delete/:id',
3240
                                    'constraints' => [
3241
                                        'id' => '[A-Za-z0-9\-]+\=*'
3242
                                    ],
3243
                                    'defaults' => [
986 geraldo 3244
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationFormController',
946 geraldo 3245
                                        'action' => 'delete'
3246
                                    ]
3247
                                ]
15079 efrain 3248
                            ],
15442 efrain 3249
                            'active' => [
3250
                                'type' => Segment::class,
15079 efrain 3251
                                'options' => [
15442 efrain 3252
                                    'route' => '/active/:id',
3253
                                    'constraints' => [
3254
                                        'id' => '[A-Za-z0-9\-]+\=*'
3255
                                    ],
15079 efrain 3256
                                    'defaults' => [
3257
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationFormController',
15442 efrain 3258
                                        'action' => 'active'
3259
                                    ]
3260
                                ]
3261
                            ],
3262
                            'inactive' => [
3263
                                'type' => Segment::class,
3264
                                'options' => [
3265
                                    'route' => '/inactive/:id',
3266
                                    'constraints' => [
3267
                                        'id' => '[A-Za-z0-9\-]+\=*'
3268
                                    ],
3269
                                    'defaults' => [
3270
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationFormController',
3271
                                        'action' => 'inactive'
3272
                                    ]
3273
                                ]
3274
                            ],
3275
                            'job-description' => [
3276
                                'type' => Segment::class,
3277
                                'options' => [
3278
                                    'route' => '/job-description/:id',
3279
                                    'constraints' => [
3280
                                        'id' => '[A-Za-z0-9\-]+\=*',
3281
                                    ],
3282
                                    'defaults' => [
3283
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationFormController',
15079 efrain 3284
                                        'action' => 'jobDescription'
3285
                                    ]
3286
                                ]
3287
                            ],
1263 geraldo 3288
                            'report' => [
3289
                                'type' => Segment::class,
3290
                                'options' => [
3291
                                    'route' => '/report/:id',
3292
                                    'constraints' => [
3293
                                        'id' => '[A-Za-z0-9\-]+\=*'
3294
                                    ],
3295
                                    'defaults' => [
3296
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationFormController',
3297
                                        'action' => 'report'
3298
                                    ]
3299
                                ]
3300
                            ],
946 geraldo 3301
                        ]
3302
                    ],
15442 efrain 3303
                    'evaluations' => [
946 geraldo 3304
                        'type' => Literal::class,
3305
                        'options' => [
15442 efrain 3306
                            'route' => '/evaluations',
946 geraldo 3307
                            'defaults' => [
15394 efrain 3308
                                'controller' => '\LeadersLinked\Controller\PerformanceEvaluationTestController',
946 geraldo 3309
                                'action' => 'index'
3310
                            ]
3311
                        ],
3312
                        'may_terminate' => true,
3313
                        'child_routes' => [
1383 efrain 3314
                            'add' => [
1320 efrain 3315
                                'type' => Literal::class,
946 geraldo 3316
                                'options' => [
1383 efrain 3317
                                    'route' => '/add',
946 geraldo 3318
                                    'defaults' => [
15394 efrain 3319
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationTestController',
1383 efrain 3320
                                        'action' => 'add'
946 geraldo 3321
                                    ]
1383 efrain 3322
                                ]
3323
                            ],
7902 eleazar 3324
                            'delete' => [
1383 efrain 3325
                                'type' => Segment::class,
3326
                                'options' => [
7902 eleazar 3327
                                    'route' => '/delete/:id',
1383 efrain 3328
                                    'constraints' => [
3329
                                        'id' => '[A-Za-z0-9\-]+\=*',
1320 efrain 3330
                                    ],
1383 efrain 3331
                                    'defaults' => [
15394 efrain 3332
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationTestController',
7902 eleazar 3333
                                        'action' => 'delete'
1320 efrain 3334
                                    ]
946 geraldo 3335
                                ]
1383 efrain 3336
                            ],
15607 anderson 3337
                            'report' => [
7947 eleazar 3338
                                'type' => Segment::class,
1383 efrain 3339
                                'options' => [
15442 efrain 3340
                                    'route' => '/report/:id',
7907 eleazar 3341
                                    'constraints' => [
8176 eleazar 3342
                                        'id' => '[A-Za-z0-9\-]+\=*'
3343
                                    ],
3344
                                    'defaults' => [
15394 efrain 3345
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationTestController',
15442 efrain 3346
                                        'action' => 'report',
8176 eleazar 3347
                                    ],
3348
                                ],
3349
                            ],
946 geraldo 3350
                        ]
3351
                    ],
3352
                ]
1089 geraldo 3353
            ],
15607 anderson 3354
 
1089 geraldo 3355
            /*             * * END PERFORMANCE EVALUATION ** */
3356
 
15442 efrain 3357
            /* START JOBS DESCRIPTION */
15607 anderson 3358
 
15442 efrain 3359
            'jobs-description' => [
1 www 3360
                'type' => Literal::class,
3361
                'options' => [
15442 efrain 3362
                    'route' => '/jobs-description',
1 www 3363
                    'defaults' => [
15442 efrain 3364
                        'controller' => '\LeadersLinked\Controller\JobDescriptionController',
1 www 3365
                        'action' => 'index'
3366
                    ]
3367
                ],
3368
                'may_terminate' => true,
3369
                'child_routes' => [
16787 efrain 3370
                    'search' => [
3371
                        'type' => Literal::class,
3372
                        'options' => [
3373
                            'route' => '/search',
3374
                            'defaults' => [
3375
                                'controller' => '\LeadersLinked\Controller\JobDescriptionController',
3376
                                'action' => 'search'
3377
                            ]
3378
                        ]
3379
                    ],
16954 efrain 3380
                    'dictionary' => [
3381
                        'type' => Literal::class,
3382
                        'options' => [
3383
                            'route' => '/dictionary',
3384
                            'defaults' => [
3385
                                'controller' => '\LeadersLinked\Controller\JobDescriptionController',
3386
                                'action' => 'dictionary'
3387
                            ]
3388
                        ]
3389
                    ],
15442 efrain 3390
                    'add' => [
16787 efrain 3391
                        'type' => Literal::class,
15336 efrain 3392
                        'options' => [
16787 efrain 3393
                            'route' => '/add',
15336 efrain 3394
                            'defaults' => [
15442 efrain 3395
                                'controller' => '\LeadersLinked\Controller\JobDescriptionController',
3396
                                'action' => 'add'
15336 efrain 3397
                            ]
15442 efrain 3398
                        ]
3399
                    ],
3400
                    'edit' => [
3401
                        'type' => Segment::class,
3402
                        'options' => [
3403
                            'route' => '/edit/:id',
3404
                            'constraints' => [
3405
                                'id' => '[A-Za-z0-9\-]+\=*'
15336 efrain 3406
                            ],
15442 efrain 3407
                            'defaults' => [
3408
                                'controller' => '\LeadersLinked\Controller\JobDescriptionController',
3409
                                'action' => 'edit'
3410
                            ]
15336 efrain 3411
                        ]
3412
                    ],
15442 efrain 3413
                    'delete' => [
3414
                        'type' => Segment::class,
15336 efrain 3415
                        'options' => [
15442 efrain 3416
                            'route' => '/delete/:id',
3417
                            'constraints' => [
3418
                                'id' => '[A-Za-z0-9\-]+\=*'
3419
                            ],
15336 efrain 3420
                            'defaults' => [
15442 efrain 3421
                                'controller' => '\LeadersLinked\Controller\JobDescriptionController',
3422
                                'action' => 'delete'
15336 efrain 3423
                            ]
15442 efrain 3424
                        ]
3425
                    ],
3426
                    'report' => [
3427
                        'type' => Segment::class,
3428
                        'options' => [
3429
                            'route' => '/report/:id',
3430
                            'constraints' => [
3431
                                'id' => '[A-Za-z0-9\-]+\=*'
15336 efrain 3432
                            ],
15442 efrain 3433
                            'defaults' => [
3434
                                'controller' => '\LeadersLinked\Controller\JobDescriptionController',
3435
                                'action' => 'report'
15336 efrain 3436
                            ]
3437
                        ]
3438
                    ],
15442 efrain 3439
                    'import' => [
1 www 3440
                        'type' => Literal::class,
3441
                        'options' => [
15442 efrain 3442
                            'route' => '/import',
1 www 3443
                            'defaults' => [
15442 efrain 3444
                                'controller' => '\LeadersLinked\Controller\JobDescriptionController',
3445
                                'action' => 'import'
1 www 3446
                            ]
3447
                        ]
3448
                    ],
3449
                    'competency-types' => [
3450
                        'type' => Literal::class,
3451
                        'options' => [
3452
                            'route' => '/competency-types',
3453
                            'defaults' => [
3454
                                'controller' => '\LeadersLinked\Controller\CompetencyTypeController',
3455
                                'action' => 'index'
3456
                            ]
3457
                        ],
3458
                        'may_terminate' => true,
3459
                        'child_routes' => [
3460
                            'add' => [
3461
                                'type' => Literal::class,
3462
                                'options' => [
3463
                                    'route' => '/add',
3464
                                    'defaults' => [
3465
                                        'controller' => '\LeadersLinked\Controller\CompetencyTypeController',
3466
                                        'action' => 'add'
3467
                                    ]
3468
                                ]
3469
                            ],
3470
                            'edit' => [
3471
                                'type' => Segment::class,
3472
                                'options' => [
3473
                                    'route' => '/edit/:id',
3474
                                    'constraints' => [
3475
                                        'id' => '[A-Za-z0-9\-]+\=*'
3476
                                    ],
3477
                                    'defaults' => [
3478
                                        'controller' => '\LeadersLinked\Controller\CompetencyTypeController',
3479
                                        'action' => 'edit'
3480
                                    ]
3481
                                ]
3482
                            ],
3483
                            'delete' => [
3484
                                'type' => Segment::class,
3485
                                'options' => [
3486
                                    'route' => '/delete/:id',
3487
                                    'constraints' => [
3488
                                        'id' => '[A-Za-z0-9\-]+\=*'
3489
                                    ],
3490
                                    'defaults' => [
3491
                                        'controller' => '\LeadersLinked\Controller\CompetencyTypeController',
3492
                                        'action' => 'delete'
3493
                                    ]
3494
                                ]
28 efrain 3495
                            ],
3496
                            'import' => [
3497
                                'type' => Literal::class,
3498
                                'options' => [
3499
                                    'route' => '/import',
3500
                                    'defaults' => [
3501
                                        'controller' => '\LeadersLinked\Controller\CompetencyTypeController',
3502
                                        'action' => 'import'
3503
                                    ]
3504
                                ]
3505
                            ],
1 www 3506
                        ]
3507
                    ],
1104 geraldo 3508
                    'behaviors' => [
3509
                        'type' => Literal::class,
3510
                        'options' => [
3511
                            'route' => '/behaviors',
3512
                            'defaults' => [
3513
                                'controller' => '\LeadersLinked\Controller\BehaviorsController',
3514
                                'action' => 'index'
3515
                            ]
3516
                        ],
3517
                        'may_terminate' => true,
3518
                        'child_routes' => [
3519
                            'add' => [
3520
                                'type' => Literal::class,
3521
                                'options' => [
14989 efrain 3522
                                    'route' => '/add[/inline/:inline]',
3523
                                    'constraints' => [
3524
                                        'inline' => 'yes|no'
3525
                                    ],
1104 geraldo 3526
                                    'defaults' => [
3527
                                        'controller' => '\LeadersLinked\Controller\BehaviorsController',
3528
                                        'action' => 'add'
3529
                                    ]
3530
                                ]
1115 geraldo 3531
                            ],
3532
                            'edit' => [
3533
                                'type' => Segment::class,
3534
                                'options' => [
3535
                                    'route' => '/edit/:id',
3536
                                    'constraints' => [
3537
                                        'id' => '[A-Za-z0-9\-]+\=*'
3538
                                    ],
3539
                                    'defaults' => [
3540
                                        'controller' => '\LeadersLinked\Controller\BehaviorsController',
3541
                                        'action' => 'edit'
3542
                                    ]
3543
                                ]
3544
                            ],
14280 kerby 3545
                            'delete' => [
3546
                                'type' => Segment::class,
3547
                                'options' => [
14875 efrain 3548
                                    'route' => '/delete/:id',
14280 kerby 3549
                                    'constraints' => [
14292 kerby 3550
                                        'id' => '[A-Za-z0-9\-]+\=*'
14280 kerby 3551
                                    ],
3552
                                    'defaults' => [
3553
                                        'controller' => '\LeadersLinked\Controller\BehaviorsController',
3554
                                        'action' => 'delete'
3555
                                    ]
3556
                                ]
14875 efrain 3557
                            ],
3558
                            'import' => [
3559
                                'type' => Literal::class,
3560
                                'options' => [
3561
                                    'route' => '/import',
3562
                                    'defaults' => [
3563
                                        'controller' => '\LeadersLinked\Controller\BehaviorsController',
3564
                                        'action' => 'import'
3565
                                    ]
3566
                                ]
3567
                            ],
15607 anderson 3568
 
1104 geraldo 3569
                        ]
3570
                    ],
1 www 3571
                    'competencies' => [
3572
                        'type' => Literal::class,
3573
                        'options' => [
3574
                            'route' => '/competencies',
3575
                            'defaults' => [
3576
                                'controller' => '\LeadersLinked\Controller\CompetencyController',
3577
                                'action' => 'index'
3578
                            ]
3579
                        ],
3580
                        'may_terminate' => true,
3581
                        'child_routes' => [
3582
                            'add' => [
3583
                                'type' => Literal::class,
3584
                                'options' => [
3585
                                    'route' => '/add',
3586
                                    'defaults' => [
3587
                                        'controller' => '\LeadersLinked\Controller\CompetencyController',
3588
                                        'action' => 'add'
3589
                                    ]
3590
                                ]
3591
                            ],
3592
                            'edit' => [
3593
                                'type' => Segment::class,
3594
                                'options' => [
3595
                                    'route' => '/edit/:id',
3596
                                    'constraints' => [
3597
                                        'id' => '[A-Za-z0-9\-]+\=*'
3598
                                    ],
3599
                                    'defaults' => [
3600
                                        'controller' => '\LeadersLinked\Controller\CompetencyController',
3601
                                        'action' => 'edit'
3602
                                    ]
3603
                                ]
3604
                            ],
3605
                            'delete' => [
3606
                                'type' => Segment::class,
3607
                                'options' => [
3608
                                    'route' => '/delete/:id',
3609
                                    'constraints' => [
3610
                                        'id' => '[A-Za-z0-9\-]+\=*'
3611
                                    ],
3612
                                    'defaults' => [
3613
                                        'controller' => '\LeadersLinked\Controller\CompetencyController',
3614
                                        'action' => 'delete'
3615
                                    ]
3616
                                ]
28 efrain 3617
                            ],
3618
                            'import' => [
3619
                                'type' => Literal::class,
3620
                                'options' => [
3621
                                    'route' => '/import',
3622
                                    'defaults' => [
3623
                                        'controller' => '\LeadersLinked\Controller\CompetencyController',
3624
                                        'action' => 'import'
3625
                                    ]
3626
                                ]
3627
                            ],
14875 efrain 3628
                            'behaviors' => [
3629
                                'type' => Segment::class,
3630
                                'options' => [
3631
                                    'route' => '/behaviors/:id',
3632
                                    'constraints' => [
3633
                                        'id' => '[A-Za-z0-9\-]+\=*'
3634
                                    ],
3635
                                    'defaults' => [
3636
                                        'controller' => '\LeadersLinked\Controller\CompetencyController',
3637
                                        'action' => 'behaviors'
3638
                                    ]
3639
                                ],
3640
                                'child_routes' => [
3641
                                    'add' => [
3642
                                        'type' => Literal::class,
3643
                                        'options' => [
3644
                                            'route' => '/add',
3645
                                            'defaults' => [
3646
                                                'controller' => '\LeadersLinked\Controller\CompetencyController',
3647
                                                'action' => 'behaviorAdd'
3648
                                            ]
3649
                                        ]
3650
                                    ],
3651
                                    'set' => [
3652
                                        'type' => Segment::class,
3653
                                        'options' => [
3654
                                            'route' => '/set/:behavior_id',
3655
                                            'constraints' => [
3656
                                                'behavior_id' => '[A-Za-z0-9\-]+\=*'
3657
                                            ],
3658
                                            'defaults' => [
3659
                                                'controller' => '\LeadersLinked\Controller\CompetencyController',
3660
                                                'action' => 'behaviorSet'
3661
                                            ]
3662
                                        ]
3663
                                    ],
3664
                                    'unset' => [
3665
                                        'type' => Segment::class,
3666
                                        'options' => [
3667
                                            'route' => '/unset/:behavior_id',
3668
                                            'constraints' => [
3669
                                                'behavior_id' => '[A-Za-z0-9\-]+\=*'
3670
                                            ],
3671
                                            'defaults' => [
3672
                                                'controller' => '\LeadersLinked\Controller\CompetencyController',
3673
                                                'action' => 'behaviorUnset'
3674
                                            ]
3675
                                        ]
3676
                                    ],
3677
                                ]
3678
                            ],
1 www 3679
                        ]
3680
                    ],
16766 efrain 3681
 
3682
                ]
3683
            ],
3684
 
3685
            /* END JOBS DESCRIPTION */
3686
 
3687
 
16770 efrain 3688
            /**** ORGANIZATION  START ****/
3689
            'organization' => [
16766 efrain 3690
                'type' => Literal::class,
3691
                'options' => [
16770 efrain 3692
                    'route' => '/organization',
16766 efrain 3693
                    'defaults' => [
3694
                        'controller' => '\LeadersLinked\Controller\OrganizationChartController',
3695
                        'action' => 'index'
3696
                    ]
3697
                ],
3698
                'may_terminate' => true,
3699
                'child_routes' => [
15457 efrain 3700
                    'positions' => [
3701
                        'type' => Literal::class,
3702
                        'options' => [
3703
                            'route' => '/positions',
3704
                            'defaults' => [
16770 efrain 3705
                                'controller' => '\LeadersLinked\Controller\OrganizationPositionController',
15457 efrain 3706
                                'action' => 'index'
3707
                            ]
3708
                        ],
3709
                        'may_terminate' => true,
3710
                        'child_routes' => [
3711
                            'add' => [
16791 efrain 3712
                                'type' =>  Literal::class,
15457 efrain 3713
                                'options' => [
16791 efrain 3714
                                    'route' => '/add',
15457 efrain 3715
                                    'defaults' => [
16770 efrain 3716
                                        'controller' => '\LeadersLinked\Controller\OrganizationPositionController',
15457 efrain 3717
                                        'action' => 'add'
3718
                                    ]
3719
                                ]
3720
                            ],
3721
                            'edit' => [
3722
                                'type' => Segment::class,
3723
                                'options' => [
3724
                                    'route' => '/edit/:id',
3725
                                    'constraints' => [
3726
                                        'id' => '[A-Za-z0-9\-]+\=*'
3727
                                    ],
3728
                                    'defaults' => [
16770 efrain 3729
                                        'controller' => '\LeadersLinked\Controller\OrganizationPositionController',
15457 efrain 3730
                                        'action' => 'edit'
3731
                                    ]
3732
                                ]
3733
                            ],
3734
                            'delete' => [
3735
                                'type' => Segment::class,
3736
                                'options' => [
3737
                                    'route' => '/delete/:id',
3738
                                    'constraints' => [
3739
                                        'id' => '[A-Za-z0-9\-]+\=*'
3740
                                    ],
3741
                                    'defaults' => [
16770 efrain 3742
                                        'controller' => '\LeadersLinked\Controller\OrganizationPositionController',
15457 efrain 3743
                                        'action' => 'delete'
3744
                                    ]
3745
                                ]
3746
                            ],
16791 efrain 3747
                            'boss' => [
3748
                                'type' => Literal::class,
15457 efrain 3749
                                'options' => [
16791 efrain 3750
                                    'route' => '/boss',
15457 efrain 3751
                                    'defaults' => [
16770 efrain 3752
                                        'controller' => '\LeadersLinked\Controller\OrganizationPositionController',
16791 efrain 3753
                                        'action' => 'boss'
15457 efrain 3754
                                    ]
16791 efrain 3755
                                ]
15457 efrain 3756
                            ],
3757
                        ]
3758
                    ],
16766 efrain 3759
                ]
15442 efrain 3760
            ],
16766 efrain 3761
 
3762
 
3763
            /**** ORIGANIZATION CHART END ****/
15607 anderson 3764
 
3765
 
15442 efrain 3766
            /*             * * START SETTINGS ** */
3767
            'settings' => [
3768
                'type' => Literal::class,
3769
                'options' => [
3770
                    'route' => '/settings',
3771
                    'defaults' => [
3772
                        'controller' => '\LeadersLinked\Controller\DashboardController',
3773
                        'action' => 'index'
3774
                    ]
3775
                ],
3776
                'may_terminate' => true,
3777
                'child_routes' => [
3778
                    'my-private-network' => [
3779
                        'type' => Literal::class,
3780
                        'options' => [
3781
                            'route' => '/my-private-network',
3782
                            'defaults' => [
3783
                                'controller' => '\LeadersLinked\Controller\MyPrivateNetworkController',
3784
                                'action' => 'index'
3785
                            ]
3786
                        ],
3787
                        'may_terminate' => true,
3788
                        'child_routes' => [
3789
                            'intro' => [
3790
                                'type' => Literal::class,
3791
                                'options' => [
3792
                                    'route' => '/intro',
3793
                                    'defaults' => [
3794
                                        'controller' =>  '\LeadersLinked\Controller\MyPrivateNetworkController',
3795
                                        'action' => 'intro'
3796
                                    ]
3797
                                ]
3798
                            ],
3799
                            'calendar' => [
3800
                                'type' => Literal::class,
3801
                                'options' => [
3802
                                    'route' => '/calendar',
3803
                                    'defaults' => [
3804
                                        'controller' =>  '\LeadersLinked\Controller\MyPrivateNetworkController',
3805
                                        'action' => 'calendar'
3806
                                    ]
3807
                                ]
3808
                            ],
3809
                            'styles-and-colors' => [
3810
                                'type' => Literal::class,
3811
                                'options' => [
3812
                                    'route' => '/styles-and-colors',
3813
                                    'defaults' => [
3814
                                        'controller' =>  '\LeadersLinked\Controller\MyPrivateNetworkController',
3815
                                        'action' => 'stylesAndColors'
3816
                                    ]
3817
                                ]
3818
                            ],
3819
                            'navbar' => [
3820
                                'type' => Literal::class,
3821
                                'options' => [
3822
                                    'route' => '/navbar',
3823
                                    'defaults' => [
3824
                                        'controller' =>  '\LeadersLinked\Controller\MyPrivateNetworkController',
3825
                                        'action' => 'navbar'
3826
                                    ]
3827
                                ]
3828
                            ],
3829
                            'favicon' => [
3830
                                'type' => Literal::class,
3831
                                'options' => [
3832
                                    'route' => '/favicon',
3833
                                    'defaults' => [
3834
                                        'controller' =>  '\LeadersLinked\Controller\MyPrivateNetworkController',
3835
                                        'action' => 'favicon'
3836
                                    ]
3837
                                ]
3838
                            ],
3839
                            'logo' => [
3840
                                'type' => Literal::class,
3841
                                'options' => [
3842
                                    'route' => '/logo',
3843
                                    'defaults' => [
3844
                                        'controller' =>  '\LeadersLinked\Controller\MyPrivateNetworkController',
3845
                                        'action' => 'logo'
3846
                                    ]
3847
                                ]
3848
                            ],
15831 efrain 3849
                            'moodle' => [
3850
                                'type' => Literal::class,
3851
                                'options' => [
3852
                                    'route' => '/moodle',
3853
                                    'defaults' => [
3854
                                        'controller' =>  '\LeadersLinked\Controller\MyPrivateNetworkController',
3855
                                        'action' => 'moodle'
3856
                                    ]
3857
                                ]
3858
                            ],
15607 anderson 3859
 
15442 efrain 3860
                        ]
3861
                    ],
15607 anderson 3862
 
15442 efrain 3863
                    'private-networks' => [
1 www 3864
                        'type' => Literal::class,
3865
                        'options' => [
15442 efrain 3866
                            'route' => '/private-networks',
1 www 3867
                            'defaults' => [
15442 efrain 3868
                                'controller' => '\LeadersLinked\Controller\PrivateNetworksController',
1 www 3869
                                'action' => 'index'
3870
                            ]
3871
                        ],
3872
                        'may_terminate' => true,
3873
                        'child_routes' => [
3874
                            'add' => [
3875
                                'type' => Literal::class,
3876
                                'options' => [
3877
                                    'route' => '/add',
3878
                                    'defaults' => [
15442 efrain 3879
                                        'controller' => '\LeadersLinked\Controller\PrivateNetworksController',
1 www 3880
                                        'action' => 'add'
3881
                                    ]
3882
                                ]
3883
                            ],
3884
                            'edit' => [
3885
                                'type' => Segment::class,
3886
                                'options' => [
3887
                                    'route' => '/edit/:id',
3888
                                    'constraints' => [
3889
                                        'id' => '[A-Za-z0-9\-]+\=*'
3890
                                    ],
3891
                                    'defaults' => [
15442 efrain 3892
                                        'controller' => '\LeadersLinked\Controller\PrivateNetworksController',
1 www 3893
                                        'action' => 'edit'
3894
                                    ]
3895
                                ]
3896
                            ],
3897
                            'delete' => [
3898
                                'type' => Segment::class,
3899
                                'options' => [
3900
                                    'route' => '/delete/:id',
3901
                                    'constraints' => [
3902
                                        'id' => '[A-Za-z0-9\-]+\=*'
3903
                                    ],
3904
                                    'defaults' => [
15442 efrain 3905
                                        'controller' => '\LeadersLinked\Controller\PrivateNetworksController',
1 www 3906
                                        'action' => 'delete'
3907
                                    ]
3908
                                ]
3909
                            ]
3910
                        ]
3911
                    ],
15442 efrain 3912
                    'company-sizes' => [
1 www 3913
                        'type' => Literal::class,
3914
                        'options' => [
15442 efrain 3915
                            'route' => '/company-sizes',
1 www 3916
                            'defaults' => [
15442 efrain 3917
                                'controller' => '\LeadersLinked\Controller\CompanySizeController',
1 www 3918
                                'action' => 'index'
3919
                            ]
3920
                        ],
3921
                        'may_terminate' => true,
3922
                        'child_routes' => [
3923
                            'add' => [
3924
                                'type' => Literal::class,
3925
                                'options' => [
3926
                                    'route' => '/add',
3927
                                    'defaults' => [
15442 efrain 3928
                                        'controller' => '\LeadersLinked\Controller\CompanySizeController',
1 www 3929
                                        'action' => 'add'
3930
                                    ]
3931
                                ]
3932
                            ],
3933
                            'edit' => [
3934
                                'type' => Segment::class,
3935
                                'options' => [
3936
                                    'route' => '/edit/:id',
3937
                                    'constraints' => [
3938
                                        'id' => '[A-Za-z0-9\-]+\=*'
3939
                                    ],
3940
                                    'defaults' => [
15442 efrain 3941
                                        'controller' => '\LeadersLinked\Controller\CompanySizeController',
1 www 3942
                                        'action' => 'edit'
3943
                                    ]
3944
                                ]
3945
                            ],
3946
                            'delete' => [
3947
                                'type' => Segment::class,
3948
                                'options' => [
3949
                                    'route' => '/delete/:id',
3950
                                    'constraints' => [
3951
                                        'id' => '[A-Za-z0-9\-]+\=*'
3952
                                    ],
3953
                                    'defaults' => [
15442 efrain 3954
                                        'controller' => '\LeadersLinked\Controller\CompanySizeController',
1 www 3955
                                        'action' => 'delete'
3956
                                    ]
3957
                                ]
3958
                            ]
3959
                        ]
3960
                    ],
15607 anderson 3961
 
3962
 
15460 efrain 3963
                    'countries' => [
3964
                        'type' => Literal::class,
3965
                        'options' => [
3966
                            'route' => '/countries',
3967
                            'defaults' => [
3968
                                'controller' => '\LeadersLinked\Controller\CountriesController',
3969
                                'action' => 'index'
3970
                            ]
3971
                        ],
3972
                        'may_terminate' => true,
3973
                        'child_routes' => [
3974
                            'add' => [
3975
                                'type' => Literal::class,
3976
                                'options' => [
3977
                                    'route' => '/add',
3978
                                    'defaults' => [
3979
                                        'controller' => '\LeadersLinked\Controller\CountriesController',
3980
                                        'action' => 'add'
3981
                                    ]
3982
                                ]
3983
                            ],
3984
                            'edit' => [
3985
                                'type' => Segment::class,
3986
                                'options' => [
3987
                                    'route' => '/edit/:id',
3988
                                    'constraints' => [
3989
                                        'id' => '[A-Za-z0-9\-]+\=*'
3990
                                    ],
3991
                                    'defaults' => [
3992
                                        'controller' => '\LeadersLinked\Controller\CountriesController',
3993
                                        'action' => 'edit'
3994
                                    ]
3995
                                ]
3996
                            ],
3997
                            'delete' => [
3998
                                'type' => Segment::class,
3999
                                'options' => [
4000
                                    'route' => '/delete/:id',
4001
                                    'constraints' => [
4002
                                        'id' => '[A-Za-z0-9\-]+\=*'
4003
                                    ],
4004
                                    'defaults' => [
4005
                                        'controller' => '\LeadersLinked\Controller\CountriesController',
4006
                                        'action' => 'delete'
4007
                                    ]
4008
                                ]
4009
                            ]
4010
                        ]
4011
                    ],
15607 anderson 4012
 
4013
 
15442 efrain 4014
                    'degrees' => [
1 www 4015
                        'type' => Literal::class,
4016
                        'options' => [
15442 efrain 4017
                            'route' => '/degrees',
1 www 4018
                            'defaults' => [
15442 efrain 4019
                                'controller' => '\LeadersLinked\Controller\DegreeController',
1 www 4020
                                'action' => 'index'
4021
                            ]
4022
                        ],
4023
                        'may_terminate' => true,
4024
                        'child_routes' => [
4025
                            'add' => [
4026
                                'type' => Literal::class,
4027
                                'options' => [
4028
                                    'route' => '/add',
4029
                                    'defaults' => [
15442 efrain 4030
                                        'controller' => '\LeadersLinked\Controller\DegreeController',
1 www 4031
                                        'action' => 'add'
4032
                                    ]
4033
                                ]
4034
                            ],
4035
                            'edit' => [
4036
                                'type' => Segment::class,
4037
                                'options' => [
4038
                                    'route' => '/edit/:id',
4039
                                    'constraints' => [
4040
                                        'id' => '[A-Za-z0-9\-]+\=*'
4041
                                    ],
4042
                                    'defaults' => [
15442 efrain 4043
                                        'controller' => '\LeadersLinked\Controller\DegreeController',
1 www 4044
                                        'action' => 'edit'
4045
                                    ]
4046
                                ]
4047
                            ],
4048
                            'delete' => [
4049
                                'type' => Segment::class,
4050
                                'options' => [
4051
                                    'route' => '/delete/:id',
4052
                                    'constraints' => [
4053
                                        'id' => '[A-Za-z0-9\-]+\=*'
4054
                                    ],
4055
                                    'defaults' => [
15442 efrain 4056
                                        'controller' => '\LeadersLinked\Controller\DegreeController',
1 www 4057
                                        'action' => 'delete'
4058
                                    ]
4059
                                ]
4060
                            ]
4061
                        ]
4062
                    ],
4063
                    'group-types' => [
4064
                        'type' => Literal::class,
4065
                        'options' => [
16796 efrain 4066
                            'route' => '/group-types',
1 www 4067
                            'defaults' => [
4068
                                'controller' => '\LeadersLinked\Controller\GroupTypeController',
4069
                                'action' => 'index'
4070
                            ]
4071
                        ],
4072
                        'may_terminate' => true,
4073
                        'child_routes' => [
4074
                            'add' => [
4075
                                'type' => Literal::class,
4076
                                'options' => [
4077
                                    'route' => '/add',
4078
                                    'defaults' => [
4079
                                        'controller' => '\LeadersLinked\Controller\GroupTypeController',
4080
                                        'action' => 'add'
4081
                                    ]
4082
                                ]
4083
                            ],
4084
                            'edit' => [
4085
                                'type' => Segment::class,
4086
                                'options' => [
4087
                                    'route' => '/edit/:id',
4088
                                    'constraints' => [
4089
                                        'id' => '[A-Za-z0-9\-]+\=*'
4090
                                    ],
4091
                                    'defaults' => [
4092
                                        'controller' => '\LeadersLinked\Controller\GroupTypeController',
4093
                                        'action' => 'edit'
4094
                                    ]
4095
                                ]
4096
                            ],
4097
                            'delete' => [
4098
                                'type' => Segment::class,
4099
                                'options' => [
4100
                                    'route' => '/delete/:id',
4101
                                    'constraints' => [
4102
                                        'id' => '[A-Za-z0-9\-]+\=*'
4103
                                    ],
4104
                                    'defaults' => [
4105
                                        'controller' => '\LeadersLinked\Controller\GroupTypeController',
4106
                                        'action' => 'delete'
4107
                                    ]
4108
                                ]
4109
                            ]
4110
                        ]
4111
                    ],
15442 efrain 4112
                    'industries' => [
1 www 4113
                        'type' => Literal::class,
4114
                        'options' => [
15442 efrain 4115
                            'route' => '/industries',
1 www 4116
                            'defaults' => [
15442 efrain 4117
                                'controller' => '\LeadersLinked\Controller\IndustryController',
1 www 4118
                                'action' => 'index'
4119
                            ]
4120
                        ],
4121
                        'may_terminate' => true,
4122
                        'child_routes' => [
4123
                            'add' => [
4124
                                'type' => Literal::class,
4125
                                'options' => [
4126
                                    'route' => '/add',
4127
                                    'defaults' => [
15442 efrain 4128
                                        'controller' => '\LeadersLinked\Controller\IndustryController',
1 www 4129
                                        'action' => 'add'
4130
                                    ]
4131
                                ]
4132
                            ],
4133
                            'edit' => [
4134
                                'type' => Segment::class,
4135
                                'options' => [
4136
                                    'route' => '/edit/:id',
4137
                                    'constraints' => [
4138
                                        'id' => '[A-Za-z0-9\-]+\=*'
4139
                                    ],
4140
                                    'defaults' => [
15442 efrain 4141
                                        'controller' => '\LeadersLinked\Controller\IndustryController',
1 www 4142
                                        'action' => 'edit'
4143
                                    ]
4144
                                ]
4145
                            ],
4146
                            'delete' => [
4147
                                'type' => Segment::class,
4148
                                'options' => [
4149
                                    'route' => '/delete/:id',
4150
                                    'constraints' => [
4151
                                        'id' => '[A-Za-z0-9\-]+\=*'
4152
                                    ],
4153
                                    'defaults' => [
15442 efrain 4154
                                        'controller' => '\LeadersLinked\Controller\IndustryController',
1 www 4155
                                        'action' => 'delete'
4156
                                    ]
4157
                                ]
4158
                            ]
4159
                        ]
4160
                    ],
15442 efrain 4161
                    'group-types' => [
28 efrain 4162
                        'type' => Literal::class,
4163
                        'options' => [
15442 efrain 4164
                            'route' => '/group-types',
28 efrain 4165
                            'defaults' => [
15442 efrain 4166
                                'controller' => '\LeadersLinked\Controller\GroupTypeController',
28 efrain 4167
                                'action' => 'index'
4168
                            ]
4169
                        ],
4170
                        'may_terminate' => true,
4171
                        'child_routes' => [
4172
                            'add' => [
4173
                                'type' => Literal::class,
4174
                                'options' => [
4175
                                    'route' => '/add',
4176
                                    'defaults' => [
15442 efrain 4177
                                        'controller' => '\LeadersLinked\Controller\GroupTypeController',
28 efrain 4178
                                        'action' => 'add'
4179
                                    ]
4180
                                ]
4181
                            ],
4182
                            'edit' => [
4183
                                'type' => Segment::class,
4184
                                'options' => [
4185
                                    'route' => '/edit/:id',
4186
                                    'constraints' => [
4187
                                        'id' => '[A-Za-z0-9\-]+\=*'
4188
                                    ],
4189
                                    'defaults' => [
15442 efrain 4190
                                        'controller' => '\LeadersLinked\Controller\GroupTypeController',
28 efrain 4191
                                        'action' => 'edit'
4192
                                    ]
4193
                                ]
4194
                            ],
4195
                            'delete' => [
4196
                                'type' => Segment::class,
4197
                                'options' => [
4198
                                    'route' => '/delete/:id',
4199
                                    'constraints' => [
4200
                                        'id' => '[A-Za-z0-9\-]+\=*'
4201
                                    ],
4202
                                    'defaults' => [
15442 efrain 4203
                                        'controller' => '\LeadersLinked\Controller\GroupTypeController',
28 efrain 4204
                                        'action' => 'delete'
4205
                                    ]
4206
                                ]
15442 efrain 4207
                            ]
4208
                        ]
4209
                    ],
4210
                    'job-categories' => [
4211
                        'type' => Literal::class,
4212
                        'options' => [
4213
                            'route' => '/job-categories',
4214
                            'defaults' => [
4215
                                'controller' => '\LeadersLinked\Controller\JobCategoryController',
4216
                                'action' => 'index'
4217
                            ]
4218
                        ],
4219
                        'may_terminate' => true,
4220
                        'child_routes' => [
4221
                            'add' => [
4222
                                'type' => Literal::class,
4223
                                'options' => [
4224
                                    'route' => '/add',
4225
                                    'defaults' => [
4226
                                        'controller' => '\LeadersLinked\Controller\JobCategoryController',
4227
                                        'action' => 'add'
4228
                                    ]
4229
                                ]
559 geraldo 4230
                            ],
15442 efrain 4231
                            'edit' => [
559 geraldo 4232
                                'type' => Segment::class,
4233
                                'options' => [
15442 efrain 4234
                                    'route' => '/edit/:id',
559 geraldo 4235
                                    'constraints' => [
4236
                                        'id' => '[A-Za-z0-9\-]+\=*'
4237
                                    ],
4238
                                    'defaults' => [
15442 efrain 4239
                                        'controller' => '\LeadersLinked\Controller\JobCategoryController',
4240
                                        'action' => 'edit'
559 geraldo 4241
                                    ]
4242
                                ]
4243
                            ],
15442 efrain 4244
                            'delete' => [
4245
                                'type' => Segment::class,
846 geraldo 4246
                                'options' => [
15442 efrain 4247
                                    'route' => '/delete/:id',
4248
                                    'constraints' => [
4249
                                        'id' => '[A-Za-z0-9\-]+\=*'
4250
                                    ],
846 geraldo 4251
                                    'defaults' => [
15442 efrain 4252
                                        'controller' => '\LeadersLinked\Controller\JobCategoryController',
4253
                                        'action' => 'delete'
846 geraldo 4254
                                    ]
4255
                                ]
15442 efrain 4256
                            ]
28 efrain 4257
                        ]
4258
                    ],
15607 anderson 4259
 
1 www 4260
                    'email-templates' => [
4261
                        'type' => Literal::class,
4262
                        'options' => [
4263
                            'route' => '/email-templates',
4264
                            'defaults' => [
4265
                                'controller' => '\LeadersLinked\Controller\EmailTemplateController',
4266
                                'action' => 'index'
4267
                            ]
4268
                        ],
4269
                        'may_terminate' => true,
4270
                        'child_routes' => [
4271
                            'edit' => [
4272
                                'type' => Segment::class,
4273
                                'options' => [
4274
                                    'route' => '/edit/:id',
4275
                                    'constraints' => [
4276
                                        'id' => '[A-Za-z0-9\-]+\=*'
4277
                                    ],
4278
                                    'defaults' => [
4279
                                        'controller' => '\LeadersLinked\Controller\EmailTemplateController',
4280
                                        'action' => 'edit'
4281
                                    ]
4282
                                ]
4283
                            ],
4284
                        ]
4285
                    ],
15607 anderson 4286
 
1 www 4287
                    'push-templates' => [
4288
                        'type' => Literal::class,
4289
                        'options' => [
4290
                            'route' => '/push-templates',
4291
                            'defaults' => [
4292
                                'controller' => '\LeadersLinked\Controller\PushTemplateController',
4293
                                'action' => 'index'
4294
                            ]
4295
                        ],
4296
                        'may_terminate' => true,
4297
                        'child_routes' => [
4298
                            'edit' => [
4299
                                'type' => Segment::class,
4300
                                'options' => [
4301
                                    'route' => '/edit/:id',
4302
                                    'constraints' => [
4303
                                        'id' => '[A-Za-z0-9\-]+\=*'
4304
                                    ],
4305
                                    'defaults' => [
4306
                                        'controller' => '\LeadersLinked\Controller\PushTemplateController',
4307
                                        'action' => 'edit'
4308
                                    ]
4309
                                ]
4310
                            ],
15355 efrain 4311
                            'import' => [
4312
                                'type' => Literal::class,
4313
                                'options' => [
4314
                                    'route' => '/import',
4315
                                    'defaults' => [
4316
                                        'controller' => '\LeadersLinked\Controller\PushTemplateController',
4317
                                        'action' => 'import'
4318
                                    ]
4319
                                ]
4320
                            ],
1 www 4321
                        ]
4322
                    ],
4323
                    'skills' => [
4324
                        'type' => Literal::class,
4325
                        'options' => [
4326
                            'route' => '/skills',
4327
                            'defaults' => [
4328
                                'controller' => '\LeadersLinked\Controller\SkillController',
4329
                                'action' => 'index'
4330
                            ]
4331
                        ],
4332
                        'may_terminate' => true,
4333
                        'child_routes' => [
4334
                            'add' => [
4335
                                'type' => Literal::class,
4336
                                'options' => [
4337
                                    'route' => '/add',
4338
                                    'defaults' => [
4339
                                        'controller' => '\LeadersLinked\Controller\SkillController',
4340
                                        'action' => 'add'
4341
                                    ]
4342
                                ]
4343
                            ],
4344
                            'edit' => [
4345
                                'type' => Segment::class,
4346
                                'options' => [
4347
                                    'route' => '/edit/:id',
4348
                                    'constraints' => [
4349
                                        'id' => '[A-Za-z0-9\-]+\=*'
4350
                                    ],
4351
                                    'defaults' => [
4352
                                        'controller' => '\LeadersLinked\Controller\SkillController',
4353
                                        'action' => 'edit'
4354
                                    ]
4355
                                ]
4356
                            ],
4357
                            'delete' => [
4358
                                'type' => Segment::class,
4359
                                'options' => [
4360
                                    'route' => '/delete/:id',
4361
                                    'constraints' => [
4362
                                        'id' => '[A-Za-z0-9\-]+\=*'
4363
                                    ],
4364
                                    'defaults' => [
4365
                                        'controller' => '\LeadersLinked\Controller\SkillController',
4366
                                        'action' => 'delete'
4367
                                    ]
4368
                                ]
4369
                            ]
4370
                        ]
4371
                    ],
15392 efrain 4372
                    'aptitudes' => [
4373
                        'type' => Literal::class,
4374
                        'options' => [
4375
                            'route' => '/aptitudes',
4376
                            'defaults' => [
4377
                                'controller' => '\LeadersLinked\Controller\AptitudeController',
4378
                                'action' => 'index'
4379
                            ]
4380
                        ],
4381
                        'may_terminate' => true,
4382
                        'child_routes' => [
4383
                            'add' => [
4384
                                'type' => Literal::class,
4385
                                'options' => [
4386
                                    'route' => '/add',
4387
                                    'defaults' => [
4388
                                        'controller' => '\LeadersLinked\Controller\AptitudeController',
4389
                                        'action' => 'add'
4390
                                    ]
4391
                                ]
4392
                            ],
4393
                            'edit' => [
4394
                                'type' => Segment::class,
4395
                                'options' => [
4396
                                    'route' => '/edit/:id',
4397
                                    'constraints' => [
4398
                                        'id' => '[A-Za-z0-9\-]+\=*'
4399
                                    ],
4400
                                    'defaults' => [
4401
                                        'controller' => '\LeadersLinked\Controller\AptitudeController',
4402
                                        'action' => 'edit'
4403
                                    ]
4404
                                ]
4405
                            ],
4406
                            'delete' => [
4407
                                'type' => Segment::class,
4408
                                'options' => [
4409
                                    'route' => '/delete/:id',
4410
                                    'constraints' => [
4411
                                        'id' => '[A-Za-z0-9\-]+\=*'
4412
                                    ],
4413
                                    'defaults' => [
4414
                                        'controller' => '\LeadersLinked\Controller\AptitudeController',
4415
                                        'action' => 'delete'
4416
                                    ]
4417
                                ]
4418
                            ]
4419
                        ]
4420
                    ],
4421
                    'hobbies-and-interests' => [
4422
                        'type' => Literal::class,
4423
                        'options' => [
4424
                            'route' => '/hobbies-and-interests',
4425
                            'defaults' => [
4426
                                'controller' => '\LeadersLinked\Controller\HobbyAndInterestController',
4427
                                'action' => 'index'
4428
                            ]
4429
                        ],
4430
                        'may_terminate' => true,
4431
                        'child_routes' => [
4432
                            'add' => [
4433
                                'type' => Literal::class,
4434
                                'options' => [
4435
                                    'route' => '/add',
4436
                                    'defaults' => [
4437
                                        'controller' => '\LeadersLinked\Controller\HobbyAndInterestController',
4438
                                        'action' => 'add'
4439
                                    ]
4440
                                ]
4441
                            ],
4442
                            'edit' => [
4443
                                'type' => Segment::class,
4444
                                'options' => [
4445
                                    'route' => '/edit/:id',
4446
                                    'constraints' => [
4447
                                        'id' => '[A-Za-z0-9\-]+\=*'
4448
                                    ],
4449
                                    'defaults' => [
4450
                                        'controller' => '\LeadersLinked\Controller\HobbyAndInterestController',
4451
                                        'action' => 'edit'
4452
                                    ]
4453
                                ]
4454
                            ],
4455
                            'delete' => [
4456
                                'type' => Segment::class,
4457
                                'options' => [
4458
                                    'route' => '/delete/:id',
4459
                                    'constraints' => [
4460
                                        'id' => '[A-Za-z0-9\-]+\=*'
4461
                                    ],
4462
                                    'defaults' => [
4463
                                        'controller' => '\LeadersLinked\Controller\HobbyAndInterestController',
4464
                                        'action' => 'delete'
4465
                                    ]
4466
                                ]
4467
                            ]
4468
                        ]
4469
                    ],
1089 geraldo 4470
                ]
1 www 4471
            ],
15607 anderson 4472
            /*         * * FIN SETTINGS ** */
4473
 
1333 efrain 4474
            'own-professional-network' => [
4475
                'type' => Literal::class,
4476
                'options' => [
4477
                    'route' => '/own-professional-network',
4478
                    'defaults' => [
4479
                        'controller' => '\LeadersLinked\Controller\UnknownController',
4480
                        'action' => 'index'
4481
                    ]
4482
                ],
4483
                'may_terminate' => true,
15607 anderson 4484
                'child_routes' => []
1333 efrain 4485
            ],
15607 anderson 4486
 
1333 efrain 4487
            'organizational-design' => [
4488
                'type' => Literal::class,
4489
                'options' => [
4490
                    'route' => '/organizational-design',
4491
                    'defaults' => [
4492
                        'controller' => '\LeadersLinked\Controller\UnknownController',
4493
                        'action' => 'index'
4494
                    ]
4495
                ],
4496
                'may_terminate' => true,
15607 anderson 4497
                'child_routes' => []
1333 efrain 4498
            ],
15607 anderson 4499
 
16766 efrain 4500
            'planning' => [
1333 efrain 4501
                'type' => Literal::class,
4502
                'options' => [
16766 efrain 4503
                    'route' => '/planning',
1333 efrain 4504
                    'defaults' => [
16766 efrain 4505
                        'controller' => '\LeadersLinked\Controller\PlanningController',
1951 nelberth 4506
                        'action' => 'index'
1333 efrain 4507
                    ]
4508
                ],
4509
                'may_terminate' => true,
4510
                'child_routes' => [
16785 efrain 4511
                    'periods' => [
4512
                        'type' => Literal::class,
4513
                        'options' => [
4514
                            'route' => '/periods',
4515
                            'defaults' => [
4516
                                'controller' => '\LeadersLinked\Controller\PlanningPeriodController',
4517
                                'action' => 'index'
4518
                            ]
4519
                        ],
4520
                        'may_terminate' => true,
4521
                        'child_routes' => [
4522
                            'add' => [
4523
                                'type' => Literal::class,
4524
                                'options' => [
4525
                                    'route' => '/add',
4526
                                    'defaults' => [
4527
                                        'controller' => '\LeadersLinked\Controller\PlanningPeriodController',
4528
                                        'action' => 'add'
4529
                                    ]
4530
                                ]
4531
                            ],
4532
                            'edit' => [
4533
                                'type' => Segment::class,
4534
                                'options' => [
4535
                                    'route' => '/edit/:id',
4536
                                    'constraints' => [
4537
                                        'id' => '[A-Za-z0-9\-]+\=*'
4538
                                    ],
4539
                                    'defaults' => [
4540
                                        'controller' => '\LeadersLinked\Controller\PlanningPeriodController',
4541
                                        'action' => 'edit'
4542
                                    ]
4543
                                ]
4544
                            ],
4545
                            'delete' => [
4546
                                'type' => Segment::class,
4547
                                'options' => [
4548
                                    'route' => '/delete/:id',
4549
                                    'constraints' => [
4550
                                        'id' => '[A-Za-z0-9\-]+\=*'
4551
                                    ],
4552
                                    'defaults' => [
4553
                                        'controller' => '\LeadersLinked\Controller\PlanningPeriodController',
4554
                                        'action' => 'delete'
4555
                                    ]
4556
                                ]
4557
                            ],
4558
                        ]
4559
                    ],
4560
 
2238 nelberth 4561
                    'objectives' => [
2250 nelberth 4562
                        'type' => Literal::class,
1914 nelberth 4563
                        'options' => [
2248 nelberth 4564
                            'route' => '/objectives',
1914 nelberth 4565
                            'defaults' => [
16785 efrain 4566
                                'controller' => '\LeadersLinked\Controller\PlanningObjectiveController',
2238 nelberth 4567
                                'action' => 'index'
1914 nelberth 4568
                            ]
2251 nelberth 4569
                        ],
15607 anderson 4570
 
2251 nelberth 4571
                        'may_terminate' => true,
4572
                        'child_routes' => [
2324 nelberth 4573
 
2251 nelberth 4574
                            'add' => [
16785 efrain 4575
                                'type' => Segment::class,
2251 nelberth 4576
                                'options' => [
16785 efrain 4577
                                    'route' => '/add/[:period_id]',
4578
                                    'constraints' => [
4579
                                        'period_id' => '[A-Za-z0-9\-]+\=*'
4580
                                    ],
2251 nelberth 4581
                                    'defaults' => [
16785 efrain 4582
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectiveController',
2251 nelberth 4583
                                        'action' => 'add'
4584
                                    ]
4585
                                ]
4586
                            ],
4587
                            'edit' => [
4588
                                'type' => Segment::class,
4589
                                'options' => [
4590
                                    'route' => '/edit/:id',
4591
                                    'constraints' => [
4592
                                        'id' => '[A-Za-z0-9\-]+\=*'
4593
                                    ],
4594
                                    'defaults' => [
16785 efrain 4595
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectiveController',
2251 nelberth 4596
                                        'action' => 'edit'
4597
                                    ]
4598
                                ]
4599
                            ],
4600
                            'delete' => [
4601
                                'type' => Segment::class,
4602
                                'options' => [
4603
                                    'route' => '/delete/:id',
4604
                                    'constraints' => [
4605
                                        'id' => '[A-Za-z0-9\-]+\=*'
4606
                                    ],
4607
                                    'defaults' => [
16766 efrain 4608
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectiveController',
2251 nelberth 4609
                                        'action' => 'delete'
4610
                                    ]
4611
                                ]
2324 nelberth 4612
                            ],
16785 efrain 4613
                            'analysis' => [
3462 nelberth 4614
                                'type' => Segment::class,
4615
                                'options' => [
16785 efrain 4616
                                    'route' => '/analysis/:id',
3462 nelberth 4617
                                    'constraints' => [
4618
                                        'id' => '[A-Za-z0-9\-]+\=*'
4619
                                    ],
4620
                                    'defaults' => [
16785 efrain 4621
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectiveController',
4622
                                        'action' => 'analysis'
3462 nelberth 4623
                                    ]
4624
                                ]
15607 anderson 4625
                            ],
16785 efrain 4626
                            'full' => [
4627
                                'type' => Segment::class,
3986 nelberth 4628
                                'options' => [
16785 efrain 4629
                                    'route' => '/report-full/:id',
4630
                                    'constraints' => [
4631
                                        'id' => '[A-Za-z0-9\-]+\=*'
4632
                                    ],
3986 nelberth 4633
                                    'defaults' => [
16785 efrain 4634
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectiveController',
4635
                                        'action' => 'full'
3986 nelberth 4636
                                    ]
4637
                                ]
3462 nelberth 4638
                            ],
16785 efrain 4639
                            'matrix' => [
4640
                                'type' => Segment::class,
4041 nelberth 4641
                                'options' => [
16785 efrain 4642
                                    'route' => '/matrix/:id',
4643
                                    'constraints' => [
4644
                                        'id' => '[A-Za-z0-9\-]+\=*'
4645
                                    ],
4041 nelberth 4646
                                    'defaults' => [
16785 efrain 4647
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectiveController',
4648
                                        'action' => 'matrix'
4041 nelberth 4649
                                    ]
4650
                                ]
4651
                            ],
16785 efrain 4652
 
4653
                        ]
4654
                    ],
4655
 
4656
                    'goals' => [
4657
                        'type' => Literal::class,
4658
                        'options' => [
4659
                            'route' => '/goals',
4660
                            'defaults' => [
4661
                                'controller' => '\LeadersLinked\Controller\PlanningGoalController',
4662
                                'action' => 'index'
4663
                            ]
4664
                        ],
4665
 
4666
                        'may_terminate' => true,
4667
                        'child_routes' => [
4668
                            'add' => [
2336 nelberth 4669
                                'type' => Segment::class,
2324 nelberth 4670
                                'options' => [
16785 efrain 4671
                                    'route' => '/add/:objective_id',
2324 nelberth 4672
                                    'constraints' => [
11092 nelberth 4673
                                        'objective_id' => '[A-Za-z0-9\-]+\=*'
2324 nelberth 4674
                                    ],
4675
                                    'defaults' => [
16785 efrain 4676
                                        'controller' => '\LeadersLinked\Controller\PlanningGoalController',
4677
                                        'action' => 'add'
2324 nelberth 4678
                                    ]
16785 efrain 4679
                                ]
4680
                            ],
4681
                            'edit' => [
4682
                                'type' => Segment::class,
4683
                                'options' => [
4684
                                    'route' => '/edit/:id',
4685
                                    'constraints' => [
4686
                                        'id' => '[A-Za-z0-9\-]+\=*'
2370 nelberth 4687
                                    ],
16785 efrain 4688
                                    'defaults' => [
4689
                                        'controller' => '\LeadersLinked\Controller\PlanningGoalController',
4690
                                        'action' => 'edit'
4691
                                    ]
4692
                                ]
4693
                            ],
4694
                            'delete' => [
4695
                                'type' => Segment::class,
4696
                                'options' => [
4697
                                    'route' => '/delete/:id',
4698
                                    'constraints' => [
4699
                                        'id' => '[A-Za-z0-9\-]+\=*'
2370 nelberth 4700
                                    ],
16785 efrain 4701
                                    'defaults' => [
4702
                                        'controller' => '\LeadersLinked\Controller\PlanningGoalController',
4703
                                        'action' => 'delete'
4704
                                    ]
4705
                                ]
4706
                            ],
4707
                        ]
4708
                    ],
4709
 
4710
                    'tasks' => [
4711
                        'type' => Literal::class,
4712
                        'options' => [
4713
                            'route' => '/tasks',
4714
                            'defaults' => [
4715
                                'controller' => '\LeadersLinked\Controller\PlanningTaskController',
4716
                                'action' => 'index'
4717
                            ]
4718
                        ],
4719
 
4720
                        'may_terminate' => true,
4721
                        'child_routes' => [
4722
                            'add' => [
4723
                                'type' => Segment::class,
4724
                                'options' => [
4725
                                    'route' => '/add/:goal_id',
4726
                                    'constraints' => [
4727
                                        'goal_id' => '[A-Za-z0-9\-]+\=*',
2370 nelberth 4728
                                    ],
16785 efrain 4729
                                    'defaults' => [
4730
                                        'controller' => '\LeadersLinked\Controller\PlanningTaskController',
4731
                                        'action' => 'add'
4732
                                    ]
4733
                                ]
4734
                            ],
4735
                            'edit' => [
4736
                                'type' => Segment::class,
4737
                                'options' => [
4738
                                    'route' => '/edit/:id',
4739
                                    'constraints' => [
4740
                                        'id' => '[A-Za-z0-9\-]+\=*'
15607 anderson 4741
                                    ],
16785 efrain 4742
                                    'defaults' => [
4743
                                        'controller' => '\LeadersLinked\Controller\PlanningTaskController',
4744
                                        'action' => 'edit'
4745
                                    ]
15607 anderson 4746
                                ]
4747
                            ],
16785 efrain 4748
                            'delete' => [
4749
                                'type' => Segment::class,
4750
                                'options' => [
4751
                                    'route' => '/delete/:id',
4752
                                    'constraints' => [
4753
                                        'id' => '[A-Za-z0-9\-]+\=*'
4754
                                    ],
4755
                                    'defaults' => [
4756
                                        'controller' => '\LeadersLinked\Controller\PlanningTaskController',
4757
                                        'action' => 'delete'
4758
                                    ]
4759
                                ]
4760
                            ],
4761
                            'view' => [
4762
                                'type' => Segment::class,
4763
                                'options' => [
4764
                                    'route' => '/view/:id',
4765
                                    'constraints' => [
4766
                                        'id' => '[A-Za-z0-9\-]+\=*'
4767
                                    ],
4768
                                    'defaults' => [
4769
                                        'controller' => '\LeadersLinked\Controller\PlanningTaskController',
4770
                                        'action' => 'view'
4771
                                    ]
4772
                                ]
4773
                            ],
1914 nelberth 4774
                        ]
16785 efrain 4775
                    ],
1333 efrain 4776
                ]
4777
            ],
15607 anderson 4778
 
4779
 
15401 efrain 4780
            'discovery-contacts' => [
4781
                'type' => Literal::class,
4782
                'options' => [
4783
                    'route' => '/discovery-contacts',
4784
                    'defaults' => [
4785
                        'controller' => '\LeadersLinked\Controller\DiscoveryContactController',
4786
                        'action' => 'index'
4787
                    ]
4788
                ],
4789
                'may_terminate' => true,
4790
                'child_routes' => [
4791
                    'add' => [
4792
                        'type' => Literal::class,
4793
                        'options' => [
4794
                            'route' => '/add',
4795
                            'defaults' => [
4796
                                'controller' => '\LeadersLinked\Controller\DiscoveryContactController',
4797
                                'action' => 'add'
4798
                            ]
4799
                        ]
4800
                    ],
4801
                    'edit' => [
4802
                        'type' => Segment::class,
4803
                        'options' => [
4804
                            'route' => '/edit/:id',
4805
                            'constraints' => [
4806
                                'id' => '[A-Za-z0-9\-]+\=*'
4807
                            ],
4808
                            'defaults' => [
4809
                                'controller' => '\LeadersLinked\Controller\DiscoveryContactController',
4810
                                'action' => 'edit'
4811
                            ]
4812
                        ]
4813
                    ],
4814
                    'delete' => [
4815
                        'type' => Segment::class,
4816
                        'options' => [
4817
                            'route' => '/delete/:id',
4818
                            'constraints' => [
4819
                                'id' => '[A-Za-z0-9\-]+\=*'
4820
                            ],
4821
                            'defaults' => [
4822
                                'controller' => '\LeadersLinked\Controller\DiscoveryContactController',
4823
                                'action' => 'delete'
4824
                            ]
4825
                        ]
4826
                    ],
4827
                    'view' => [
4828
                        'type' => Segment::class,
4829
                        'options' => [
4830
                            'route' => '/view/:id',
4831
                            'constraints' => [
4832
                                'id' => '[A-Za-z0-9\-]+\=*'
4833
                            ],
4834
                            'defaults' => [
4835
                                'controller' => '\LeadersLinked\Controller\DiscoveryContactController',
4836
                                'action' => 'view'
4837
                            ]
4838
                        ]
4839
                    ],
15546 efrain 4840
                    'upload' => [
4841
                        'type' => Segment::class,
4842
                        'options' => [
4843
                            'route' => '/upload',
4844
                            'defaults' => [
4845
                                'controller' => '\LeadersLinked\Controller\DiscoveryContactController',
4846
                                'action' => 'upload'
4847
                            ]
4848
                        ]
4849
                    ],
15634 anderson 4850
                    'interaction-types' => [
4851
                        'type' => Literal::class,
4852
                        'options' => [
4853
                            'route' => '/interaction-types',
4854
                            'defaults' => [
4855
                                'controller' => '\LeadersLinked\Controller\DiscoveryContactInteractionTypeController',
4856
                                'action' => 'index'
4857
                            ]
4858
                        ],
4859
                        'may_terminate' => true,
4860
                        'child_routes' => [
4861
                            'add' => [
4862
                                'type' => Literal::class,
4863
                                'options' => [
4864
                                    'route' => '/add',
4865
                                    'defaults' => [
4866
                                        'controller' => '\LeadersLinked\Controller\DiscoveryContactInteractionTypeController',
4867
                                        'action' => 'add'
4868
                                    ]
4869
                                ]
4870
                            ],
4871
                            'edit' => [
4872
                                'type' => Segment::class,
4873
                                'options' => [
4874
                                    'route' => '/edit/:id',
4875
                                    'constraints' => [
4876
                                        'id' => '[A-Za-z0-9\-]+\=*'
4877
                                    ],
4878
                                    'defaults' => [
4879
                                        'controller' => '\LeadersLinked\Controller\DiscoveryContactInteractionTypeController',
4880
                                        'action' => 'edit'
4881
                                    ]
4882
                                ]
4883
                            ],
4884
                            'delete' => [
4885
                                'type' => Segment::class,
4886
                                'options' => [
4887
                                    'route' => '/delete/:id',
4888
                                    'constraints' => [
4889
                                        'id' => '[A-Za-z0-9\-]+\=*'
4890
                                    ],
4891
                                    'defaults' => [
4892
                                        'controller' => '\LeadersLinked\Controller\DiscoveryContactInteractionTypeController',
4893
                                        'action' => 'delete'
4894
                                    ]
4895
                                ]
4896
                            ],
15401 efrain 4897
 
15607 anderson 4898
 
4899
 
15634 anderson 4900
                        ]
4901
                    ],
15401 efrain 4902
                    'interactions' => [
4903
                        'type' => Segment::class,
4904
                        'options' => [
4905
                            'route' => '/interactions/:id',
4906
                            'constraints' => [
4907
                                'id' => '[A-Za-z0-9\-]+\=*'
4908
                            ],
4909
                            'defaults' => [
4910
                                'controller' => '\LeadersLinked\Controller\DiscoveryContactInteractionController',
4911
                                'action' => 'index'
4912
                            ]
4913
                        ],
4914
                        'may_terminate' => true,
4915
                        'child_routes' => [
4916
                            'add' => [
4917
                                'type' => Segment::class,
4918
                                'options' => [
4919
                                    'route' => '/add',
4920
                                    'defaults' => [
4921
                                        'controller' => '\LeadersLinked\Controller\DiscoveryContactInteractionController',
4922
                                        'action' => 'add'
4923
                                    ]
4924
                                ]
4925
                            ],
4926
                            'delete' => [
4927
                                'type' => Segment::class,
4928
                                'options' => [
4929
                                    'route' => '/delete/:interaction',
4930
                                    'constraints' => [
4931
                                        'interaction' => '[A-Za-z0-9\-]+\=*'
4932
                                    ],
4933
                                    'defaults' => [
4934
                                        'controller' => '\LeadersLinked\Controller\DiscoveryContactInteractionController',
4935
                                        'action' => 'delete'
4936
                                    ]
4937
                                ]
4938
                            ],
15607 anderson 4939
 
4940
 
4941
 
15401 efrain 4942
                        ]
4943
                    ],
4944
                    'logs' => [
17003 efrain 4945
                        'type' => Segment::class,
15401 efrain 4946
                        'options' => [
4947
                            'route' => '/log/:id',
4948
                            'constraints' => [
4949
                                'id' => '[A-Za-z0-9\-]+\=*'
4950
                            ],
4951
                            'defaults' => [
4952
                                'controller' => '\LeadersLinked\Controller\DiscoveryContactLogController',
4953
                                'action' => 'index'
4954
                            ]
4955
                        ],
4956
                        'may_terminate' => true,
15607 anderson 4957
                        'child_routes' => []
15401 efrain 4958
                    ],
15607 anderson 4959
 
16758 efrain 4960
 
15637 anderson 4961
                    'progress-by-day' => [
16758 efrain 4962
                        'type' => Literal::class,
15637 anderson 4963
                        'options' => [
16758 efrain 4964
                            'route' => '/progress-by-day',
15637 anderson 4965
                            'defaults' => [
16758 efrain 4966
                                'controller' => '\LeadersLinked\Controller\DiscoveryContactProgressController',
15637 anderson 4967
                                'action'     => 'index',
4968
                            ],
4969
                        ],
16758 efrain 4970
                        'may_terminate' => true,
4971
                        'child_routes' => [
4972
                            'download' => [
4973
                                'type' => Literal::class,
4974
                                'options' => [
4975
                                    'route' => '/download',
4976
                                    'defaults' => [
4977
                                        'controller' => '\LeadersLinked\Controller\DiscoveryContactProgressController',
4978
                                        'action'     => 'download',
4979
                                    ],
4980
                                ],
4981
                            ],
4982
                        ]
15637 anderson 4983
                    ],
16758 efrain 4984
 
16971 efrain 4985
 
4986
                    'progress-by-day-and-user' => [
4987
                        'type' => Literal::class,
4988
                        'options' => [
4989
                            'route' => '/progress-by-day-and-user',
4990
                            'defaults' => [
4991
                                'controller' => '\LeadersLinked\Controller\DiscoveryContactProgressUserController',
4992
                                'action'     => 'index',
4993
                            ],
4994
                        ],
4995
                        'may_terminate' => true,
4996
                        'child_routes' => [
4997
                            'download' => [
4998
                                'type' => Literal::class,
4999
                                'options' => [
5000
                                    'route' => '/download',
5001
                                    'defaults' => [
5002
                                        'controller' => '\LeadersLinked\Controller\DiscoveryContactProgressUserController',
5003
                                        'action'     => 'download',
5004
                                    ],
5005
                                ],
5006
                            ],
5007
                        ]
5008
                    ],
5009
 
5010
 
5011
 
5012
 
5013
 
5014
 
16758 efrain 5015
                    'report' => [
5016
                        'type' => Literal::class,
5017
                        'options' => [
5018
                            'route' => '/report',
5019
                            'defaults' => [
5020
                                'controller' => '\LeadersLinked\Controller\DiscoveryContactReportController',
5021
                                'action'     => 'index',
5022
                            ],
5023
                        ],
5024
                        'may_terminate' => true,
5025
                        'child_routes' => [
5026
                            'download' => [
5027
                                'type' => Literal::class,
5028
                                'options' => [
5029
                                    'route' => '/download',
5030
                                    'defaults' => [
5031
                                        'controller' => '\LeadersLinked\Controller\DiscoveryContactReportController',
5032
                                        'action'     => 'download',
5033
                                    ],
5034
                                ],
5035
                            ],
5036
                        ]
5037
                    ],
16971 efrain 5038
 
16974 efrain 5039
                    'report-by-user' => [
5040
                        'type' => Literal::class,
5041
                        'options' => [
5042
                            'route' => '/report-by-user',
5043
                            'defaults' => [
5044
                                'controller' => '\LeadersLinked\Controller\DiscoveryContactReportUserController',
5045
                                'action'     => 'index',
5046
                            ],
5047
                        ],
5048
                        'may_terminate' => true,
5049
                        'child_routes' => [
5050
                            'download' => [
5051
                                'type' => Literal::class,
5052
                                'options' => [
5053
                                    'route' => '/download',
5054
                                    'defaults' => [
5055
                                        'controller' => '\LeadersLinked\Controller\DiscoveryContactReportUserController',
5056
                                        'action'     => 'download',
5057
                                    ],
5058
                                ],
5059
                            ],
5060
                        ]
5061
                    ],
16971 efrain 5062
 
16974 efrain 5063
 
5064
 
16971 efrain 5065
                    'blacklist' => [
5066
                        'type' => Literal::class,
5067
                        'options' => [
5068
                            'route' => '/blacklist',
5069
                            'defaults' => [
5070
                                'controller' => '\LeadersLinked\Controller\DiscoveryContactBlackListController',
5071
                                'action'     => 'index',
5072
                            ],
5073
                        ],
5074
                        'may_terminate' => true,
5075
                        'child_routes' => [
5076
                            'search-email' => [
5077
                                'type' => Literal::class,
5078
                                'options' => [
5079
                                    'route' => '/search-email',
5080
                                    'defaults' => [
5081
                                        'controller' => '\LeadersLinked\Controller\DiscoveryContactBlackListController',
5082
                                        'action'     => 'searchEmail',
5083
                                    ],
5084
                                ],
5085
                            ],
5086
                            'add' => [
5087
                                'type' => Literal::class,
5088
                                'options' => [
5089
                                    'route' => '/add',
5090
                                    'defaults' => [
5091
                                        'controller' => '\LeadersLinked\Controller\DiscoveryContactBlackListController',
5092
                                        'action'     => 'add',
5093
                                    ],
5094
                                ],
5095
                            ],
5096
                            'edit' => [
5097
                                'type' => Segment::class,
5098
                                'options' => [
5099
                                    'route' => '/edit/:id',
5100
                                    'constraints' => [
5101
                                        'id' => '[A-Za-z0-9\-]+\=*'
5102
                                    ],
5103
                                    'defaults' => [
5104
                                        'controller' => '\LeadersLinked\Controller\DiscoveryContactBlackListController',
5105
                                        'action'     => 'edit',
5106
                                    ],
5107
                                ],
5108
                            ],
5109
                            'delete' => [
5110
                                'type' => Segment::class,
5111
                                'options' => [
5112
                                    'route' => '/delete/:id',
5113
                                    'constraints' => [
5114
                                        'id' => '[A-Za-z0-9\-]+\=*'
5115
                                    ],
5116
                                    'defaults' => [
5117
                                        'controller' => '\LeadersLinked\Controller\DiscoveryContactBlackListController',
5118
                                        'action'     => 'delete',
5119
                                    ],
5120
                                ],
5121
                            ],
5122
                            'upload' => [
5123
                                'type' => Literal::class,
5124
                                'options' => [
5125
                                    'route' => '/upload',
5126
                                    'defaults' => [
5127
                                        'controller' => '\LeadersLinked\Controller\DiscoveryContactBlackListController',
5128
                                        'action'     => 'upload',
5129
                                    ],
5130
                                ],
5131
                            ],
5132
 
5133
                        ]
5134
                    ],
5135
 
5136
                    'blacklist-reasons' => [
5137
                        'type' => Literal::class,
5138
                        'options' => [
5139
                            'route' => '/blacklist-reasons',
5140
                            'defaults' => [
5141
                                'controller' => '\LeadersLinked\Controller\DiscoveryContactBlackListReasonController',
5142
                                'action'     => 'index',
5143
                            ],
5144
                        ],
5145
                        'may_terminate' => true,
5146
                        'child_routes' => [
5147
                            'add' => [
5148
                                'type' => Literal::class,
5149
                                'options' => [
5150
                                    'route' => '/add',
5151
                                    'defaults' => [
5152
                                        'controller' => '\LeadersLinked\Controller\DiscoveryContactBlackListReasonController',
5153
                                        'action'     => 'add',
5154
                                    ],
5155
                                ],
5156
                            ],
5157
                            'edit' => [
5158
                                'type' => Segment::class,
5159
                                'options' => [
5160
                                    'route' => '/edit/:id',
5161
                                    'constraints' => [
5162
                                        'id' => '[A-Za-z0-9\-]+\=*'
5163
                                    ],
5164
                                    'defaults' => [
5165
                                        'controller' => '\LeadersLinked\Controller\DiscoveryContactBlackListReasonController',
5166
                                        'action'     => 'edit',
5167
                                    ],
5168
                                ],
5169
                            ],
5170
                            'delete' => [
5171
                                'type' => Segment::class,
5172
                                'options' => [
5173
                                    'route' => '/delete/:id',
5174
                                    'constraints' => [
5175
                                        'id' => '[A-Za-z0-9\-]+\=*'
5176
                                    ],
5177
                                    'defaults' => [
5178
                                        'controller' => '\LeadersLinked\Controller\DiscoveryContactBlackListReasonController',
5179
                                        'action'     => 'delete',
5180
                                    ],
5181
                                ],
5182
                            ],
5183
                        ]
5184
                    ],
5185
 
16758 efrain 5186
 
15637 anderson 5187
 
15401 efrain 5188
                ]
5189
            ],
5190
 
15607 anderson 5191
 
5192
 
1333 efrain 5193
            'development-and-training' => [
5194
                'type' => Literal::class,
5195
                'options' => [
5196
                    'route' => '/development-and-training',
5197
                    'defaults' => [
5198
                        'controller' => '\LeadersLinked\Controller\UnknownController',
5199
                        'action' => 'index'
5200
                    ]
5201
                ],
5202
                'may_terminate' => true,
15607 anderson 5203
                'child_routes' => []
1333 efrain 5204
            ],
1477 efrain 5205
 
15607 anderson 5206
 
1477 efrain 5207
            'recruitment-and-selection' => [
1333 efrain 5208
                'type' => Literal::class,
5209
                'options' => [
1477 efrain 5210
                    'route' => '/recruitment-and-selection',
1333 efrain 5211
                    'defaults' => [
1477 efrain 5212
                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionController',
1333 efrain 5213
                        'action' => 'index'
5214
                    ]
5215
                ],
5216
                'may_terminate' => true,
5217
                'child_routes' => [
1477 efrain 5218
                    'vacancies' => [
1345 eleazar 5219
                        'type' => Literal::class,
5220
                        'options' => [
1477 efrain 5221
                            'route' => '/vacancies',
1345 eleazar 5222
                            'defaults' => [
1385 eleazar 5223
                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionVacancyController',
1345 eleazar 5224
                                'action' => 'index'
5225
                            ]
5226
                        ],
5227
                        'may_terminate' => true,
5228
                        'child_routes' => [
5229
                            'add' => [
5230
                                'type' => Literal::class,
5231
                                'options' => [
5232
                                    'route' => '/add',
5233
                                    'defaults' => [
1385 eleazar 5234
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionVacancyController',
1345 eleazar 5235
                                        'action' => 'add'
5236
                                    ]
5237
                                ]
5238
                            ],
5239
                            'edit' => [
5240
                                'type' => Segment::class,
5241
                                'options' => [
5242
                                    'route' => '/edit/:id',
5243
                                    'constraints' => [
5244
                                        'id' => '[A-Za-z0-9\-]+\=*'
5245
                                    ],
5246
                                    'defaults' => [
1385 eleazar 5247
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionVacancyController',
1345 eleazar 5248
                                        'action' => 'edit'
5249
                                    ]
5250
                                ]
5251
                            ],
5252
                            'delete' => [
5253
                                'type' => Segment::class,
5254
                                'options' => [
5255
                                    'route' => '/delete/:id',
5256
                                    'constraints' => [
5257
                                        'id' => '[A-Za-z0-9\-]+\=*'
5258
                                    ],
5259
                                    'defaults' => [
1385 eleazar 5260
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionVacancyController',
1345 eleazar 5261
                                        'action' => 'delete'
5262
                                    ]
5263
                                ]
5264
                            ]
5265
                        ]
5266
                    ],
15461 efrain 5267
                    'applications' => [
5268
                        'type' =>  Literal::class,
5269
                        'options' => [
5270
                            'route' => '/applications',
5271
                            'defaults' => [
5272
                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionApplicationController',
5273
                                'action' => 'index'
5274
                            ]
5275
                        ],
5276
                        'may_terminate' => true,
5277
                        'child_routes' => [
5278
                            'add' => [
5279
                                'type' => Segment::class,
5280
                                'options' => [
5281
                                    'route' => '/add/vacancy/:vacancy_id',
5282
                                    'constraints' => [
5283
                                        'vacancy_id' => '[A-Za-z0-9\-]+\=*'
5284
                                    ],
5285
                                    'defaults' => [
5286
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionApplicationController',
5287
                                        'action' => 'add'
5288
                                    ]
5289
                                ]
5290
                            ],
5291
                            'delete' => [
5292
                                'type' => Segment::class,
5293
                                'options' => [
5294
                                    'route' => '/delete/vacancy/:vacancy_id/application/:application_id',
5295
                                    'constraints' => [
5296
                                        'vacancy_id' => '[A-Za-z0-9\-]+\=*',
5297
                                        'application_id' => '[A-Za-z0-9\-]+\=*'
5298
                                    ],
5299
                                    'defaults' => [
5300
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionApplicationController',
5301
                                        'action' => 'delete'
5302
                                    ]
5303
                                ]
5304
                            ],
5305
                            'user-by-email' => [
5306
                                'type' => Literal::class,
5307
                                'options' => [
5308
                                    'route' => '/user-by-email',
5309
                                    'defaults' => [
5310
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionApplicationController',
5311
                                        'action' => 'userByEmail'
5312
                                    ]
5313
                                ]
5314
                            ],
5315
                            'view' => [
5316
                                'type' => Segment::class,
5317
                                'options' => [
5318
                                    'route' => '/view/vacancy/:vacancy_id/application/:application_id',
5319
                                    'constraints' => [
5320
                                        'vacancy_id' => '[A-Za-z0-9\-]+\=*',
5321
                                        'application_id' => '[A-Za-z0-9\-]+\=*'
5322
                                    ],
5323
                                    'defaults' => [
5324
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionApplicationController',
5325
                                        'action' => 'view'
5326
                                    ]
5327
                                ]
5328
                            ],
5329
                            'comment' => [
5330
                                'type' => Segment::class,
5331
                                'options' => [
5332
                                    'route' => '/comment/vacancy/:vacancy_id/application/:application_id',
5333
                                    'constraints' => [
5334
                                        'vacancy_id' => '[A-Za-z0-9\-]+\=*',
5335
                                        'application_id' => '[A-Za-z0-9\-]+\=*'
5336
                                    ],
5337
                                    'defaults' => [
5338
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionApplicationController',
5339
                                        'action' => 'comment'
5340
                                    ]
5341
                                ]
5342
                            ],
5343
                            'status' => [
5344
                                'type' => Segment::class,
5345
                                'options' => [
5346
                                    'route' => '/status/vacancy/:vacancy_id/application/:application_id',
5347
                                    'constraints' => [
5348
                                        'vacancy_id' => '[A-Za-z0-9\-]+\=*',
5349
                                        'iapplication_id' => '[A-Za-z0-9\-]+\=*'
5350
                                    ],
5351
                                    'defaults' => [
5352
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionApplicationController',
5353
                                        'action' => 'status'
5354
                                    ]
5355
                                ]
5356
                            ],
5357
                            'level' => [
5358
                                'type' => Segment::class,
5359
                                'options' => [
5360
                                    'route' => '/level/vacancy/:vacancy_id/application/:application_id',
5361
                                    'constraints' => [
5362
                                        'vacancy_id' => '[A-Za-z0-9\-]+\=*',
5363
                                        'application_id' => '[A-Za-z0-9\-]+\=*'
5364
                                    ],
5365
                                    'defaults' => [
5366
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionApplicationController',
5367
                                        'action' => 'level'
5368
                                    ]
5369
                                ]
5370
                            ],
5371
                            'files' => [
5372
                                'type' => Segment::class,
5373
                                'options' => [
5374
                                    'route' => '/files/vacancy/:vacancy_id/application/:application_id',
5375
                                    'constraints' => [
5376
                                        'vacancy_id' => '[A-Za-z0-9\-]+\=*',
5377
                                        'application_id' => '[A-Za-z0-9\-]+\=*'
5378
                                    ],
5379
                                    'defaults' => [
5380
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionFileController',
5381
                                        'action' => 'index'
5382
                                    ]
5383
                                ],
5384
                                'may_terminate' => true,
5385
                                'child_routes' => [
5386
                                    'add' => [
5387
                                        'type' => Segment::class,
5388
                                        'options' => [
5389
                                            'route' => '/add',
5390
                                            'defaults' => [
5391
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionFileController',
5392
                                                'action' => 'add'
5393
                                            ]
5394
                                        ]
5395
                                    ],
5396
                                    'delete' => [
5397
                                        'type' => Segment::class,
5398
                                        'options' => [
5399
                                            'route' => '/delete/:id',
5400
                                            'constraints' => [
5401
                                                'id' => '[A-Za-z0-9\-]+\=*'
5402
                                            ],
5403
                                            'defaults' => [
5404
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionFileController',
5405
                                                'action' => 'delete'
5406
                                            ]
5407
                                        ]
5408
                                    ],
5409
                                    'view' => [
5410
                                        'type' => Segment::class,
5411
                                        'options' => [
5412
                                            'route' => '/view/:id',
5413
                                            'constraints' => [
5414
                                                'id' => '[A-Za-z0-9\-]+\=*'
5415
                                            ],
5416
                                            'defaults' => [
5417
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionFileController',
5418
                                                'action' => 'view'
5419
                                            ]
5420
                                        ]
5421
                                    ],
15607 anderson 5422
                                ]
15461 efrain 5423
                            ],
5424
                            'interviews' => [
5425
                                'type' => Segment::class,
5426
                                'options' => [
5427
                                    'route' => '/interviews/vacancy/:vacancy_id/application/:application_id',
5428
                                    'constraints' => [
5429
                                        'vacancy_id' => '[A-Za-z0-9\-]+\=*',
5430
                                        'application_id' => '[A-Za-z0-9\-]+\=*'
5431
                                    ],
5432
                                    'defaults' => [
5433
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewController',
5434
                                        'action' => 'index'
5435
                                    ]
5436
                                ],
5437
                                'may_terminate' => true,
5438
                                'child_routes' => [
5439
                                    'add' => [
5440
                                        'type' => Segment::class,
5441
                                        'options' => [
5442
                                            'route' => '/add',
5443
                                            'defaults' => [
5444
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewController',
5445
                                                'action' => 'add'
5446
                                            ]
5447
                                        ]
5448
                                    ],
5449
                                    'delete' => [
5450
                                        'type' => Segment::class,
5451
                                        'options' => [
5452
                                            'route' => '/delete/:id',
5453
                                            'constraints' => [
5454
                                                'id' => '[A-Za-z0-9\-]+\=*'
5455
                                            ],
5456
                                            'defaults' => [
5457
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewController',
5458
                                                'action' => 'delete'
5459
                                            ]
5460
                                        ]
5461
                                    ],
5462
                                    'report' => [
5463
                                        'type' => Segment::class,
5464
                                        'options' => [
5465
                                            'route' => '/report/:id',
5466
                                            'constraints' => [
5467
                                                'id' => '[A-Za-z0-9\-]+\=*'
5468
                                            ],
5469
                                            'defaults' => [
5470
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewController',
5471
                                                'action' => 'report'
5472
                                            ]
5473
                                        ]
5474
                                    ],
5475
                                    'edit' => [
5476
                                        'type' => Segment::class,
5477
                                        'options' => [
5478
                                            'route' => '/edit/:id',
5479
                                            'constraints' => [
5480
                                                'id' => '[A-Za-z0-9\-]+\=*'
5481
                                            ],
5482
                                            'defaults' => [
5483
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewController',
5484
                                                'action' => 'edit'
5485
                                            ]
5486
                                        ]
5487
                                    ],
5488
                                ]
5489
                            ],
5490
                        ]
5491
 
15607 anderson 5492
 
5493
                    ],
15461 efrain 5494
                    /*
1459 eleazar 5495
                    'candidates' => [
5496
                        'type' => Segment::class,
5497
                        'options' => [
1501 eleazar 5498
                            'route' => '/candidates[/:vacancy_uuid]',
1459 eleazar 5499
                            'constraints' => [
1508 eleazar 5500
                                'vacancy_uuid' => '[A-Za-z0-9\-]+\=*'
1459 eleazar 5501
                            ],
5502
                            'defaults' => [
5503
                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
1502 eleazar 5504
                                'action' => 'index',
1503 eleazar 5505
                                'vacancy_uuid' => '',
1459 eleazar 5506
                            ]
5507
                        ],
5508
                        'may_terminate' => true,
5509
                        'child_routes' => [
5510
                            'add' => [
5511
                                'type' => Literal::class,
5512
                                'options' => [
1506 eleazar 5513
                                    'route' => '/add',
1459 eleazar 5514
                                    'defaults' => [
5515
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
5516
                                        'action' => 'add'
5517
                                    ]
5518
                                ]
5519
                            ],
5520
                            'edit' => [
5521
                                'type' => Segment::class,
5522
                                'options' => [
5523
                                    'route' => '/edit/:id',
5524
                                    'constraints' => [
5525
                                        'id' => '[A-Za-z0-9\-]+\=*'
5526
                                    ],
5527
                                    'defaults' => [
5528
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
5529
                                        'action' => 'edit'
5530
                                    ]
5531
                                ]
5532
                            ],
5533
                            'delete' => [
5534
                                'type' => Segment::class,
5535
                                'options' => [
5536
                                    'route' => '/delete/:id',
5537
                                    'constraints' => [
5538
                                        'id' => '[A-Za-z0-9\-]+\=*'
5539
                                    ],
5540
                                    'defaults' => [
5541
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
5542
                                        'action' => 'delete'
5543
                                    ]
5544
                                ]
1630 eleazar 5545
                            ],
5546
                            'email' => [
5547
                                'type' => Literal::class,
5548
                                'options' => [
5549
                                    'route' => '/email',
5550
                                    'defaults' => [
5551
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
5552
                                        'action' => 'email'
5553
                                    ]
5554
                                ]
5555
                            ],
1459 eleazar 5556
                        ]
5557
                    ],
1635 eleazar 5558
                    'user-by-email' => [
5559
                        'type' => Literal::class,
5560
                        'options' => [
5561
                            'route' => '/user-by-email',
5562
                            'defaults' => [
5563
                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
5564
                                'action' => 'email'
5565
                            ]
5566
                        ]
1709 eleazar 5567
                    ],
5568
                    'interview' => [
5569
                        'type' => Segment::class,
5570
                        'options' => [
5571
                            'route' => '/interview',
5572
                            'defaults' => [
5573
                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewController',
5574
                                'action' => 'index',
5575
                            ],
5576
                        ],
5577
                        'may_terminate' => true,
5578
                        'child_routes' => [
5579
                            'form' => [
4351 eleazar 5580
                                'type' => Segment::class,
1709 eleazar 5581
                                'options' => [
4349 eleazar 5582
                                    'route' => '/form[/:vacancy_uuid]',
5583
                                    'constraints' => [
5584
                                        'vacancy_uuid' => '[A-Za-z0-9\-]+\=*'
5585
                                    ],
1709 eleazar 5586
                                    'defaults' => [
1711 eleazar 5587
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
2029 eleazar 5588
                                        'action' => 'index',
4352 eleazar 5589
                                        'vacancy_uuid' => '',
1709 eleazar 5590
                                    ],
5591
                                ],
5592
                                'may_terminate' => true,
5593
                                'child_routes' => [
5594
                                    'add' => [
2059 eleazar 5595
                                        'type' => Segment::class,
1709 eleazar 5596
                                        'options' => [
3563 eleazar 5597
                                            'route' => '/add',
1709 eleazar 5598
                                            'defaults' => [
1899 eleazar 5599
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
1709 eleazar 5600
                                                'action' => 'add'
5601
                                            ],
5602
                                        ],
5603
                                    ],
5604
                                    'edit' => [
2775 eleazar 5605
                                        'type' => Segment::class,
1709 eleazar 5606
                                        'options' => [
2764 eleazar 5607
                                            'route' => '/edit/:interview_uuid',
2765 eleazar 5608
                                            'constraints' => [
5609
                                                'interview_uuid' => '[A-Za-z0-9\-]+\=*'
5610
                                            ],
1709 eleazar 5611
                                            'defaults' => [
1944 eleazar 5612
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
1709 eleazar 5613
                                                'action' => 'edit'
5614
                                            ],
5615
                                        ],
5616
                                    ],
5617
                                    'delete' => [
2775 eleazar 5618
                                        'type' => Segment::class,
1709 eleazar 5619
                                        'options' => [
2764 eleazar 5620
                                            'route' => '/delete/:interview_uuid',
2765 eleazar 5621
                                            'constraints' => [
5622
                                                'interview_uuid' => '[A-Za-z0-9\-]+\=*'
5623
                                            ],
1709 eleazar 5624
                                            'defaults' => [
2766 eleazar 5625
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
1709 eleazar 5626
                                                'action' => 'delete'
5627
                                            ],
5628
                                        ],
5629
                                    ],
8781 eleazar 5630
                                ],
5631
                            ],
5632
                            'file' => [
5633
                                'type' => Segment::class,
5634
                                'options' => [
5635
                                    'route' => '/:interview_uuid/file',
5636
                                    'constraints' => [
5637
                                        'interview_uuid' => '[A-Za-z0-9\-]+\=*'
5638
                                    ],
5639
                                    'defaults' => [
5640
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFileController',
5641
                                        'action' => 'index'
5642
                                    ],
5643
                                ],
5644
                                'may_terminate' => true,
5645
                                'child_routes' => [
5646
                                    'add' => [
5647
                                        'type' => Literal::class,
5648
                                        'options' => [
5649
                                            'route' => '/add',
5650
                                            'defaults' => [
5651
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFileController',
5652
                                                'action' => 'add'
5653
                                            ]
5654
                                        ]
5655
                                    ],
5656
                                    'edit' => [
8779 eleazar 5657
                                        'type' => Segment::class,
5658
                                        'options' => [
8874 eleazar 5659
                                            'route' => '/edit/:id',
8779 eleazar 5660
                                            'constraints' => [
8781 eleazar 5661
                                                'id' => '[A-Za-z0-9\-]+\=*'
8779 eleazar 5662
                                            ],
5663
                                            'defaults' => [
5664
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFileController',
8781 eleazar 5665
                                                'action' => 'edit'
5666
                                            ]
5667
                                        ]
5668
                                    ],
5669
                                    'delete' => [
5670
                                        'type' => Segment::class,
5671
                                        'options' => [
8874 eleazar 5672
                                            'route' => '/delete/:id',
8781 eleazar 5673
                                            'constraints' => [
5674
                                                'id' => '[A-Za-z0-9\-]+\=*'
8779 eleazar 5675
                                            ],
8781 eleazar 5676
                                            'defaults' => [
5677
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFileController',
5678
                                                'action' => 'delete'
8779 eleazar 5679
                                            ]
5680
                                        ]
8874 eleazar 5681
                                    ],
8781 eleazar 5682
                                ]
1709 eleazar 5683
                            ],
5684
                            'report' =>[
5685
                                'type' => Segment::class,
5686
                                'options' => [
2864 eleazar 5687
                                    'route' => '/report/:interview_uuid',
5688
                                    'constraints' => [
5689
                                        'interview_uuid' => '[A-Za-z0-9\-]+\=*'
5690
                                    ],
1709 eleazar 5691
                                    'defaults' => [
2864 eleazar 5692
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
5693
                                        'action' => 'report',
1709 eleazar 5694
                                    ],
5695
                                ],
5696
                            ],
3571 eleazar 5697
                            'vacancy' =>[
5698
                                'type' => Segment::class,
5699
                                'options' => [
5700
                                    'route' => '/vacancy/:vacancy_uuid',
5701
                                    'constraints' => [
5702
                                        'vacancy_uuid' => '[A-Za-z0-9\-]+\=*'
5703
                                    ],
5704
                                    'defaults' => [
5705
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
5706
                                        'action' => 'vacancy',
5707
                                    ],
5708
                                ],
5709
                            ],
4367 eleazar 5710
                            'type' =>[
4365 eleazar 5711
                                'type' => Segment::class,
5712
                                'options' => [
4367 eleazar 5713
                                    'route' => '/type/:candidate_uuid',
4365 eleazar 5714
                                    'constraints' => [
5715
                                        'candidate_uuid' => '[A-Za-z0-9\-]+\=*'
5716
                                    ],
5717
                                    'defaults' => [
5718
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
4367 eleazar 5719
                                        'action' => 'type',
4365 eleazar 5720
                                    ],
5721
                                ],
5722
                            ],
1709 eleazar 5723
                        ],
15607 anderson 5724
                    ], */
1459 eleazar 5725
                ],
1333 efrain 5726
            ],
15607 anderson 5727
 
1333 efrain 5728
            'induction' => [
5729
                'type' => Literal::class,
5730
                'options' => [
5731
                    'route' => '/induction',
5732
                    'defaults' => [
5733
                        'controller' => '\LeadersLinked\Controller\UnknownController',
5734
                        'action' => 'index'
5735
                    ]
5736
                ],
5737
                'may_terminate' => true,
15607 anderson 5738
                'child_routes' => []
1333 efrain 5739
            ],
15607 anderson 5740
 
1333 efrain 5741
            'organizational-climate' => [
5742
                'type' => Literal::class,
5743
                'options' => [
5744
                    'route' => '/organizational-climate',
5745
                    'defaults' => [
7218 eleazar 5746
                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateController',
1333 efrain 5747
                        'action' => 'index'
5748
                    ]
5749
                ],
5750
                'may_terminate' => true,
5751
                'child_routes' => [
16817 efrain 5752
                    'campaign' => [
7218 eleazar 5753
                        'type' => Segment::class,
5754
                        'options' => [
16817 efrain 5755
                            'route' => '/campaign',
7218 eleazar 5756
                            'defaults' => [
16817 efrain 5757
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateCampaignController',
7218 eleazar 5758
                                'action' => 'index',
5759
                            ],
5760
                        ],
5761
                        'may_terminate' => true,
5762
                        'child_routes' => [
5763
                            'add' => [
5764
                                'type' => Segment::class,
5765
                                'options' => [
5766
                                    'route' => '/add',
5767
                                    'defaults' => [
16817 efrain 5768
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateCampaignController',
7218 eleazar 5769
                                        'action' => 'add'
5770
                                    ],
5771
                                ],
5772
                            ],
16817 efrain 5773
                            'overview' => [
7218 eleazar 5774
                                'type' => Segment::class,
5775
                                'options' => [
16817 efrain 5776
                                    'route' => '/overview/:id',
7218 eleazar 5777
                                    'constraints' => [
5778
                                        'id' => '[A-Za-z0-9\-]+\=*'
5779
                                    ],
5780
                                    'defaults' => [
16817 efrain 5781
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateCampaignController',
5782
                                        'action' => 'overview'
7218 eleazar 5783
                                    ]
5784
                                ]
5785
                            ],
16817 efrain 5786
                            'pdf' => [
7218 eleazar 5787
                                'type' => Segment::class,
5788
                                'options' => [
16817 efrain 5789
                                    'route' => '/pdf/:id',
7218 eleazar 5790
                                    'constraints' => [
5791
                                        'id' => '[A-Za-z0-9\-]+\=*'
5792
                                    ],
5793
                                    'defaults' => [
16817 efrain 5794
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateCampaignController',
5795
                                        'action' => 'pdf'
7218 eleazar 5796
                                    ]
5797
                                ]
5798
                            ],
16817 efrain 5799
                            'excel' => [
7218 eleazar 5800
                                'type' => Segment::class,
5801
                                'options' => [
16817 efrain 5802
                                    'route' => '/excel/:id',
5803
                                    'constraints' => [
5804
                                        'id' => '[A-Za-z0-9\-]+\=*'
7218 eleazar 5805
                                    ],
5806
                                    'defaults' => [
16817 efrain 5807
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateCampaignController',
5808
                                        'action' => 'excel'
5809
                                    ]
5810
                                ]
7218 eleazar 5811
                            ],
5812
                            'delete' => [
5813
                                'type' => Segment::class,
5814
                                'options' => [
5815
                                    'route' => '/delete/:id',
16817 efrain 5816
                                    'constraints' => [
5817
                                        'id' => '[A-Za-z0-9\-]+\=*'
5818
                                    ],
7218 eleazar 5819
                                    'defaults' => [
16817 efrain 5820
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateCampaignController',
7218 eleazar 5821
                                        'action' => 'delete'
5822
                                    ]
5823
                                ]
5824
                            ]
5825
                        ],
5826
                    ],
16817 efrain 5827
 
5828
                    'form' => [
7218 eleazar 5829
                        'type' => Segment::class,
5830
                        'options' => [
16817 efrain 5831
                            'route' => '/form',
7218 eleazar 5832
                            'defaults' => [
16817 efrain 5833
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateFormController',
7218 eleazar 5834
                                'action' => 'index',
5835
                            ],
5836
                        ],
5837
                        'may_terminate' => true,
5838
                        'child_routes' => [
16817 efrain 5839
                            'add' => [
7218 eleazar 5840
                                'type' => Segment::class,
5841
                                'options' => [
16817 efrain 5842
                                    'route' => '/add[/:id]',
5843
                                    'constraints' => [
5844
                                        'id' => '[A-Za-z0-9\-]+\=*'
5845
                                    ],
7218 eleazar 5846
                                    'defaults' => [
16817 efrain 5847
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateFormController',
5848
                                        'action' => 'add'
5849
                                    ],
5850
                                ],
7218 eleazar 5851
                            ],
16817 efrain 5852
                            'edit' => [
7218 eleazar 5853
                                'type' => Segment::class,
5854
                                'options' => [
16817 efrain 5855
                                    'route' => '/edit/:id',
5856
                                    'constraints' => [
5857
                                        'id' => '[A-Za-z0-9\-]+\=*'
5858
                                    ],
7218 eleazar 5859
                                    'defaults' => [
16817 efrain 5860
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateFormController',
5861
                                        'action' => 'edit'
7218 eleazar 5862
                                    ]
5863
                                ]
5864
                            ],
16817 efrain 5865
                            'delete' => [
7218 eleazar 5866
                                'type' => Segment::class,
5867
                                'options' => [
16817 efrain 5868
                                    'route' => '/delete/:id',
5869
                                    'constraints' => [
5870
                                        'id' => '[A-Za-z0-9\-]+\=*'
5871
                                    ],
7218 eleazar 5872
                                    'defaults' => [
16817 efrain 5873
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateFormController',
5874
                                        'action' => 'delete'
7218 eleazar 5875
                                    ]
5876
                                ]
16817 efrain 5877
                            ]
7218 eleazar 5878
                        ],
5879
                    ],
5880
                ],
1333 efrain 5881
            ],
15607 anderson 5882
 
1333 efrain 5883
            'culture' => [
5884
                'type' => Literal::class,
5885
                'options' => [
5886
                    'route' => '/culture',
5887
                    'defaults' => [
5888
                        'controller' => '\LeadersLinked\Controller\UnknownController',
5889
                        'action' => 'index'
5890
                    ]
5891
                ],
5892
                'may_terminate' => true,
15607 anderson 5893
                'child_routes' => []
1333 efrain 5894
            ],
16766 efrain 5895
 
5896
 
5897
            'helpers' => [
13553 nelberth 5898
                'type' => Literal::class,
1333 efrain 5899
                'options' => [
16766 efrain 5900
                    'route' => '/helpers',
1333 efrain 5901
                    'defaults' => [
16766 efrain 5902
                        'controller' => '\LeadersLinked\Controller\HelperController',
13170 nelberth 5903
                        'action' => 'index'
1333 efrain 5904
                    ]
5905
                ],
5906
                'may_terminate' => true,
5907
                'child_routes' => [
16766 efrain 5908
 
5909
 
5910
                    'search-people' => [
13760 nelberth 5911
                        'type' => Literal::class,
5912
                        'options' => [
16766 efrain 5913
                            'route' => '/search-people',
13760 nelberth 5914
                            'defaults' => [
16766 efrain 5915
                                'controller' =>  '\LeadersLinked\Controller\HelperController',
5916
                                'action' => 'searchPeople'
13760 nelberth 5917
                            ]
5918
                        ]
5919
                    ],
16798 efrain 5920
                    'search-people-by-company' => [
5921
                        'type' => Literal::class,
5922
                        'options' => [
5923
                            'route' => '/search-people-by-company',
5924
                            'defaults' => [
5925
                                'controller' =>  '\LeadersLinked\Controller\HelperController',
5926
                                'action' => 'searchPeopleByCompany'
5927
                            ]
5928
                        ]
5929
                    ],
16766 efrain 5930
                ],
5931
            ],
5932
 
5933
            'inmail-personal' => [
5934
                'type' =>  Literal::class,
5935
                'options' => [
5936
                    'route' => '/inmail-personal',
5937
                    'defaults' => [
17003 efrain 5938
                        'controller' => '\LeadersLinked\Controller\HomeController',
5939
                        'action' => 'inMailPersonal'
5940
                    ]
5941
                ],
5942
                'may_terminate' => true,
5943
            ],
5944
 
5945
 
5946
            'inmail-company' => [
5947
                'type' => Literal::class,
5948
                'options' => [
5949
                    'route' => '/inmail-company',
5950
 
5951
                    'defaults' => [
5952
                        'controller' => '\LeadersLinked\Controller\HomeController',
5953
                        'action' => 'inMailCompany'
5954
                    ]
5955
                ],
5956
                'may_terminate' => true,
5957
            ],
5958
 
5959
 
5960
            'communication' => [
5961
                'type' => Literal::class,
5962
                'options' => [
5963
                    'route' => '/communication',
5964
                    'defaults' => [
5965
                        'controller' => '\LeadersLinked\Controller\CommunicationController',
16766 efrain 5966
                        'action' => 'index'
5967
                    ]
5968
                ],
5969
                'may_terminate' => true,
5970
                'child_routes' => [
17003 efrain 5971
                    'send' => [
13524 nelberth 5972
                        'type' => Literal::class,
13013 nelberth 5973
                        'options' => [
17003 efrain 5974
                            'route' => '/send',
13013 nelberth 5975
                            'defaults' => [
17003 efrain 5976
                                'controller' => '\LeadersLinked\Controller\CommunicationController',
5977
                                'action' => 'send'
13028 nelberth 5978
                            ]
13524 nelberth 5979
                        ]
5980
                    ],
17003 efrain 5981
                    'search-people' => [
5982
                        'type' => Literal::class,
13524 nelberth 5983
                        'options' => [
17003 efrain 5984
                            'route' => '/search-people',
13524 nelberth 5985
                            'defaults' => [
17003 efrain 5986
                                'controller' => '\LeadersLinked\Controller\CommunicationController',
5987
                                'action' => 'searchPeople'
13524 nelberth 5988
                            ]
16766 efrain 5989
                        ]
5990
                    ],
17003 efrain 5991
                ]
5992
            ],
5993
 
5994
            'media' => [
5995
                'type' => Literal::class,
5996
                'options' => [
5997
                    'route' => '/media',
5998
                    'defaults' => [
5999
                        'controller' => '\LeadersLinked\Controller\UnknownController',
6000
                        'action' => 'index'
6001
                    ]
6002
                ],
6003
                'may_terminate' => true,
6004
                'child_routes' => [
6005
                    'categories' => [
6006
                        'type' => Literal::class,
16766 efrain 6007
                        'options' => [
17003 efrain 6008
                            'route' => '/categories',
16766 efrain 6009
                            'defaults' => [
17003 efrain 6010
                                'controller' => '\LeadersLinked\Controller\MediaCategoryController',
6011
                                'action' => 'index'
16766 efrain 6012
                            ]
13028 nelberth 6013
                        ],
6014
                        'may_terminate' => true,
6015
                        'child_routes' => [
17003 efrain 6016
                            'add' => [
16766 efrain 6017
                                'type' => Segment::class,
13028 nelberth 6018
                                'options' => [
17003 efrain 6019
                                    'route' => '/add',
6020
                                    'defaults' => [
6021
                                        'controller' => '\LeadersLinked\Controller\MediaCategoryController',
6022
                                        'action' => 'add'
16766 efrain 6023
                                    ],
17003 efrain 6024
                                ],
6025
                            ],
6026
                            'edit' => [
6027
                                'type' => Segment::class,
6028
                                'options' => [
6029
                                    'route' => '/edit/:id',
13028 nelberth 6030
                                    'defaults' => [
17003 efrain 6031
                                        'controller' => '\LeadersLinked\Controller\MediaCategoryController',
6032
                                        'action' => 'edit'
6033
                                    ],
6034
                                ],
16766 efrain 6035
                            ],
6036
                            'delete' => [
6037
                                'type' => Segment::class,
6038
                                'options' => [
17003 efrain 6039
                                    'route' => '/delete/:id',
16766 efrain 6040
                                    'defaults' => [
17003 efrain 6041
                                        'controller' => '\LeadersLinked\Controller\MediaCategoryController',
16766 efrain 6042
                                        'action' => 'delete'
17003 efrain 6043
                                    ],
6044
                                ],
13013 nelberth 6045
                            ],
17003 efrain 6046
 
6047
                        ]
16766 efrain 6048
                    ],
17003 efrain 6049
 
6050
                    'files' => [
16766 efrain 6051
                        'type' => Literal::class,
6052
                        'options' => [
17003 efrain 6053
                            'route' => '/files',
16766 efrain 6054
                            'defaults' => [
17003 efrain 6055
                                'controller' => '\LeadersLinked\Controller\MediaFileController',
6056
                                'action' => 'index'
16766 efrain 6057
                            ]
13778 nelberth 6058
                        ],
6059
                        'may_terminate' => true,
6060
                        'child_routes' => [
17003 efrain 6061
                            'upload' => [
16766 efrain 6062
                                'type' => Segment::class,
13778 nelberth 6063
                                'options' => [
17003 efrain 6064
                                    'route' => '/upload',
6065
                                    'defaults' => [
6066
                                        'controller' => '\LeadersLinked\Controller\MediaFileController',
6067
                                        'action' => 'upload'
16766 efrain 6068
                                    ],
17003 efrain 6069
                                ],
16766 efrain 6070
                            ],
6071
                            'delete' => [
6072
                                'type' => Segment::class,
6073
                                'options' => [
17003 efrain 6074
                                    'route' => '/delete/:id',
16766 efrain 6075
                                    'defaults' => [
17003 efrain 6076
                                        'controller' => '\LeadersLinked\Controller\MediaFileController',
16766 efrain 6077
                                        'action' => 'delete'
17003 efrain 6078
                                    ],
6079
                                ],
13778 nelberth 6080
                            ],
17003 efrain 6081
 
16798 efrain 6082
                        ]
13652 nelberth 6083
                    ],
17003 efrain 6084
 
1333 efrain 6085
                ]
6086
            ],
17003 efrain 6087
 
15607 anderson 6088
 
17003 efrain 6089
 
16701 efrain 6090
 
6091
            'fast-survey' => [
6092
                'type' => Literal::class,
6093
                'options' => [
6094
                    'route' => '/fast-survey',
6095
                    'defaults' => [
6096
                        'controller' => '\LeadersLinked\Controller\FastSurveyController',
6097
                        'action' => 'index'
6098
                    ]
6099
                ],
6100
                'may_terminate' => true,
6101
                'child_routes' => [
6102
                    'add' => [
6103
                        'type' => Segment::class,
6104
                        'options' => [
6105
                            'route' => '/add',
6106
                            'defaults' => [
6107
                                'controller' => '\LeadersLinked\Controller\FastSurveyController',
6108
                                'action' => 'add'
6109
                            ],
6110
                        ],
6111
                    ],
6112
                    'edit' => [
6113
                        'type' => Segment::class,
6114
                        'options' => [
6115
                            'route' => '/edit/:id',
6116
                            'defaults' => [
6117
                                'controller' => '\LeadersLinked\Controller\FastSurveyController',
6118
                                'action' => 'edit'
6119
                            ],
6120
                        ],
6121
                    ],
6122
                    'delete' => [
6123
                        'type' => Segment::class,
6124
                        'options' => [
6125
                            'route' => '/delete/:id',
6126
                            'defaults' => [
6127
                                'controller' => '\LeadersLinked\Controller\FastSurveyController',
6128
                                'action' => 'delete'
6129
                            ],
6130
                        ],
6131
                    ],
16747 efrain 6132
                    'chart' => [
16701 efrain 6133
                        'type' => Segment::class,
6134
                        'options' => [
16747 efrain 6135
                            'route' => '/chart/:id',
16701 efrain 6136
                            'defaults' => [
6137
                                'controller' => '\LeadersLinked\Controller\FastSurveyController',
16747 efrain 6138
                                'action' => 'chart'
16701 efrain 6139
                            ],
6140
                        ],
6141
                    ],
6142
                    'download' => [
6143
                        'type' => Segment::class,
6144
                        'options' => [
6145
                            'route' => '/download/:id',
6146
                            'defaults' => [
6147
                                'controller' => '\LeadersLinked\Controller\FastSurveyController',
6148
                                'action' => 'download'
6149
                            ],
6150
                        ],
6151
                    ],
6152
 
6153
                ]
6154
            ],
15607 anderson 6155
 
4386 eleazar 6156
            'survey' => [
1333 efrain 6157
                'type' => Literal::class,
6158
                'options' => [
4397 eleazar 6159
                    'route' => '/survey',
1333 efrain 6160
                    'defaults' => [
4375 eleazar 6161
                        'controller' => '\LeadersLinked\Controller\SurveyController',
1333 efrain 6162
                        'action' => 'index'
6163
                    ]
6164
                ],
6165
                'may_terminate' => true,
6166
                'child_routes' => [
4374 eleazar 6167
                    'form' => [
6168
                        'type' => Segment::class,
6169
                        'options' => [
6170
                            'route' => '/form',
6171
                            'defaults' => [
4375 eleazar 6172
                                'controller' => '\LeadersLinked\Controller\SurveyFormController',
4374 eleazar 6173
                                'action' => 'index',
6174
                            ],
6175
                        ],
6176
                        'may_terminate' => true,
6177
                        'child_routes' => [
6178
                            'add' => [
6179
                                'type' => Segment::class,
6180
                                'options' => [
16817 efrain 6181
                                    'route' => '/add[/:id]',
6182
                                    'constraints' => [
6183
                                        'id' => '[A-Za-z0-9\-]+\=*'
6184
                                    ],
4374 eleazar 6185
                                    'defaults' => [
4375 eleazar 6186
                                        'controller' => '\LeadersLinked\Controller\SurveyFormController',
4374 eleazar 6187
                                        'action' => 'add'
6188
                                    ],
6189
                                ],
6190
                            ],
6191
                            'edit' => [
6192
                                'type' => Segment::class,
6193
                                'options' => [
6194
                                    'route' => '/edit/:id',
6195
                                    'constraints' => [
6196
                                        'id' => '[A-Za-z0-9\-]+\=*'
6197
                                    ],
6198
                                    'defaults' => [
4375 eleazar 6199
                                        'controller' => '\LeadersLinked\Controller\SurveyFormController',
4374 eleazar 6200
                                        'action' => 'edit'
6201
                                    ]
6202
                                ]
6203
                            ],
6204
                            'delete' => [
6205
                                'type' => Segment::class,
6206
                                'options' => [
6207
                                    'route' => '/delete/:id',
6208
                                    'constraints' => [
6209
                                        'id' => '[A-Za-z0-9\-]+\=*'
6210
                                    ],
6211
                                    'defaults' => [
4375 eleazar 6212
                                        'controller' => '\LeadersLinked\Controller\SurveyFormController',
4374 eleazar 6213
                                        'action' => 'delete'
6214
                                    ]
6215
                                ]
6216
                            ]
6217
                        ],
6218
                    ],
16817 efrain 6219
                    'campaign' => [
5287 eleazar 6220
                        'type' => Segment::class,
6221
                        'options' => [
16817 efrain 6222
                            'route' => '/campaign',
5287 eleazar 6223
                            'defaults' => [
16817 efrain 6224
                                'controller' => '\LeadersLinked\Controller\SurveyCampaignController',
5287 eleazar 6225
                                'action' => 'index',
6226
                            ],
6227
                        ],
6228
                        'may_terminate' => true,
6229
                        'child_routes' => [
6230
                            'add' => [
16817 efrain 6231
                                'type' => Literal::class,
5287 eleazar 6232
                                'options' => [
6036 eleazar 6233
                                    'route' => '/add',
5287 eleazar 6234
                                    'defaults' => [
16817 efrain 6235
                                        'controller' => '\LeadersLinked\Controller\SurveyCampaignController',
6236
                                        'action' => 'add'
5287 eleazar 6237
                                    ],
6238
                                ],
6239
                            ],
6240
                            'delete' => [
6241
                                'type' => Segment::class,
6242
                                'options' => [
6882 eleazar 6243
                                    'route' => '/delete/:id',
16817 efrain 6244
                                    'constraints' => [
6245
                                        'id' => '[A-Za-z0-9\-]+\=*'
6246
                                    ],
5287 eleazar 6247
                                    'defaults' => [
16817 efrain 6248
                                        'controller' => '\LeadersLinked\Controller\SurveyCampaignController',
5287 eleazar 6249
                                        'action' => 'delete'
6250
                                    ]
6251
                                ]
5911 eleazar 6252
                            ],
16817 efrain 6253
                            'overview' => [
5823 eleazar 6254
                                'type' => Segment::class,
6255
                                'options' => [
16817 efrain 6256
                                    'route' => '/overview/:id',
6257
                                    'constraints' => [
6258
                                        'id' => '[A-Za-z0-9\-]+\=*'
6259
                                    ],
5823 eleazar 6260
                                    'defaults' => [
16817 efrain 6261
                                        'controller' => '\LeadersLinked\Controller\SurveyCampaignController',
6262
                                        'action' => 'overview'
5823 eleazar 6263
                                    ]
6264
                                ]
6265
                            ],
16817 efrain 6266
                            'pdf' => [
6496 eleazar 6267
                                'type' => Segment::class,
6268
                                'options' => [
16817 efrain 6269
                                    'route' => '/pdf/:id',
6270
                                    'constraints' => [
6271
                                        'id' => '[A-Za-z0-9\-]+\=*'
6272
                                    ],
6496 eleazar 6273
                                    'defaults' => [
16817 efrain 6274
                                        'controller' => '\LeadersLinked\Controller\SurveyCampaignController',
6275
                                        'action' => 'pdf'
6496 eleazar 6276
                                    ]
6277
                                ]
6278
                            ],
15149 efrain 6279
                            'excel' => [
7024 eleazar 6280
                                'type' => Segment::class,
6281
                                'options' => [
16817 efrain 6282
                                    'route' => '/excel/:id',
6283
                                    'constraints' => [
6284
                                        'id' => '[A-Za-z0-9\-]+\=*'
6285
                                    ],
7024 eleazar 6286
                                    'defaults' => [
16817 efrain 6287
                                        'controller' => '\LeadersLinked\Controller\SurveyCampaignController',
6288
                                        'action' => 'excel'
7024 eleazar 6289
                                    ]
6290
                                ]
16817 efrain 6291
                            ]
5823 eleazar 6292
                        ],
6293
                    ],
1333 efrain 6294
                ]
6295
            ],
15607 anderson 6296
 
1333 efrain 6297
            'building-my-future' => [
6298
                'type' => Literal::class,
6299
                'options' => [
6300
                    'route' => '/building-my-future',
6301
                    'defaults' => [
6302
                        'controller' => '\LeadersLinked\Controller\UnknownController',
6303
                        'action' => 'index'
6304
                    ]
6305
                ],
6306
                'may_terminate' => true,
15607 anderson 6307
                'child_routes' => []
1333 efrain 6308
            ],
11431 nelberth 6309
 
6310
            'csrf' => [
6311
                'type' => Literal::class,
6312
                'options' => [
6313
                    'route' => '/csrf',
6314
                    'defaults' => [
14692 efrain 6315
                        'controller' => '\LeadersLinked\Controller\DashboardController',
11431 nelberth 6316
                        'action' => 'csrf'
6317
                    ]
6318
                ]
6319
            ],
11340 nelberth 6320
            'chat' => [
6321
                'type' => Literal::class,
6322
                'options' => [
6323
                    'route' => '/chat',
6324
                    'defaults' => [
17003 efrain 6325
                        'controller' => '\LeadersLinked\Controller\HomeController',
6326
                        'action' => 'chat'
11340 nelberth 6327
                    ]
6328
                ],
6329
                'may_terminate' => true,
6330
            ],
15607 anderson 6331
 
1333 efrain 6332
            'high-performance-teams' => [
6333
                'type' => Literal::class,
6334
                'options' => [
4591 nelberth 6335
                    'route' => '/high-performance-teams',
4588 nelberth 6336
                    'defaults' => [
16971 efrain 6337
                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamController',
1333 efrain 6338
                        'action' => 'index'
6339
                    ]
6340
                ],
6341
                'may_terminate' => true,
6342
                'child_routes' => [
16971 efrain 6343
                    'add' => [
4388 nelberth 6344
                        'type' => Literal::class,
16971 efrain 6345
                            'options' => [
6346
                            'route' => '/add',
6347
                            'defaults' => [
6348
                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamController',
6349
                                'action' => 'add'
6350
                            ]
6351
                        ]
6352
                    ],
6353
                    'edit' => [
6354
                        'type' => Segment::class,
4388 nelberth 6355
                        'options' => [
16971 efrain 6356
                            'route' => '/edit/:id',
6357
                            'constraints' => [
6358
                                'id' => '[A-Za-z0-9\-]+\=*'
6359
                            ],
4388 nelberth 6360
                            'defaults' => [
16971 efrain 6361
                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamController',
6362
                                'action' => 'edit'
4388 nelberth 6363
                            ]
16971 efrain 6364
                        ]
6365
                    ],
6366
                    'delete' => [
6367
                        'type' => Segment::class,
6368
                        'options' => [
6369
                            'route' => '/delete/:id',
6370
                            'constraints' => [
6371
                                'id' => '[A-Za-z0-9\-]+\=*'
4411 nelberth 6372
                            ],
16971 efrain 6373
                            'defaults' => [
6374
                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamController',
6375
                                'action' => 'delete'
6376
                            ]
4411 nelberth 6377
                        ]
4388 nelberth 6378
                    ],
16971 efrain 6379
 
1333 efrain 6380
                ]
6381
            ],
4588 nelberth 6382
 
16285 efrain 6383
            'tools' => [
6384
                'type' => Literal::class,
6385
                'options' => [
6386
                    'route' => '/tools',
6387
                    'constraints' => [
6388
                        'topic_id' => '[A-Za-z0-9\-]+\=*'
6389
                    ],
6390
                    'defaults' => [
6391
                        'controller' => '\LeadersLinked\Controller\ToolsController',
6392
                        'action' => 'index'
6393
                    ]
6394
                ],
6395
                'may_terminate' => true,
6396
                'child_routes' => [
6397
                    'userfile-password-generator' => [
6398
                        'type' => Literal::class,
6399
                        'options' => [
6400
                            'route' => '/userfile-password-generator',
6401
                            'defaults' => [
6402
                                'controller' => '\LeadersLinked\Controller\ToolsController',
6403
                                'action' => 'userfilePasswordGenerator'
6404
                            ]
6405
                        ]
6406
                    ],
16619 anderson 6407
                ],
16285 efrain 6408
            ]
15607 anderson 6409
 
6410
 
16270 anderson 6411
 
1 www 6412
        ]
6413
    ],
6414
    'controllers' => [
6415
        'factories' => [
6416
            \LeadersLinked\Controller\AuthController::class => \LeadersLinked\Factory\Controller\AuthControllerFactory::class,
6417
            \LeadersLinked\Controller\FeedController::class => \LeadersLinked\Factory\Controller\FeedControllerFactory::class,
6418
            \LeadersLinked\Controller\FollowerController::class => \LeadersLinked\Factory\Controller\FollowerControllerFactory::class,
6419
            \LeadersLinked\Controller\JobController::class => \LeadersLinked\Factory\Controller\JobControllerFactory::class,
1469 eleazar 6420
            \LeadersLinked\Controller\RecruitmentSelectionController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionFactory::class,
15461 efrain 6421
            \LeadersLinked\Controller\RecruitmentSelectionVacancyController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionVacancyFactory::class,
6422
            \LeadersLinked\Controller\RecruitmentSelectionApplicationController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionApplicationFactory::class,
6423
            \LeadersLinked\Controller\RecruitmentSelectionFileController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionFileControllerFactory::class,
1709 eleazar 6424
            \LeadersLinked\Controller\RecruitmentSelectionInterviewController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionInterviewFactory::class,
15607 anderson 6425
            /*
15461 efrain 6426
            \LeadersLinked\Controller\RecruitmentSelectionInterviewController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionInterviewFactory::class,
1712 eleazar 6427
            \LeadersLinked\Controller\RecruitmentSelectionInterviewFormController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionInterviewFormFactory::class,
8797 eleazar 6428
            \LeadersLinked\Controller\RecruitmentSelectionInterviewFileController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionInterviewFileControllerFactory::class,
1385 eleazar 6429
            \LeadersLinked\Controller\RecruitmentSelectionVacancyController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionVacancyFactory::class,
1459 eleazar 6430
            \LeadersLinked\Controller\RecruitmentSelectionCandidateController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionCandidateFactory::class,
15461 efrain 6431
            */
1 www 6432
            \LeadersLinked\Controller\ProfileController::class => \LeadersLinked\Factory\Controller\ProfileControllerFactory::class,
6433
            \LeadersLinked\Controller\CompanyController::class => \LeadersLinked\Factory\Controller\CompanyControllerFactory::class,
6434
            \LeadersLinked\Controller\CompanySizeController::class => \LeadersLinked\Factory\Controller\CompanySizeControllerFactory::class,
15460 efrain 6435
            \LeadersLinked\Controller\CountriesController::class => \LeadersLinked\Factory\Controller\CountriesControllerFactory::class,
15607 anderson 6436
 
1115 geraldo 6437
            \LeadersLinked\Controller\BehaviorsController::class => \LeadersLinked\Factory\Controller\BehaviorsControllerFactory::class,
1 www 6438
            \LeadersLinked\Controller\CompetencyTypeController::class => \LeadersLinked\Factory\Controller\CompetencyTypeControllerFactory::class,
6439
            \LeadersLinked\Controller\CompetencyController::class => \LeadersLinked\Factory\Controller\CompetencyControllerFactory::class,
6440
            \LeadersLinked\Controller\DegreeController::class => \LeadersLinked\Factory\Controller\DegreeControllerFactory::class,
6441
            \LeadersLinked\Controller\EmailTemplateController::class => \LeadersLinked\Factory\Controller\EmailTemplateControllerFactory::class,
6442
            \LeadersLinked\Controller\PushTemplateController::class => \LeadersLinked\Factory\Controller\PushTemplateControllerFactory::class,
6443
            \LeadersLinked\Controller\GroupTypeController::class => \LeadersLinked\Factory\Controller\GroupTypeControllerFactory::class,
6444
            \LeadersLinked\Controller\IndustryController::class => \LeadersLinked\Factory\Controller\IndustryControllerFactory::class,
6445
            \LeadersLinked\Controller\JobCategoryController::class => \LeadersLinked\Factory\Controller\JobCategoryControllerFactory::class,
28 efrain 6446
            \LeadersLinked\Controller\JobDescriptionController::class => \LeadersLinked\Factory\Controller\JobDescriptionControllerFactory::class,
1 www 6447
            \LeadersLinked\Controller\PageController::class => \LeadersLinked\Factory\Controller\PageControllerFactory::class,
16770 efrain 6448
            \LeadersLinked\Controller\OrganizationPositionController::class => \LeadersLinked\Factory\Controller\OrganizationPositionControllerFactory::class,
1 www 6449
            \LeadersLinked\Controller\PostController::class => \LeadersLinked\Factory\Controller\PostControllerFactory::class,
6450
            \LeadersLinked\Controller\SkillController::class => \LeadersLinked\Factory\Controller\SkillControllerFactory::class,
6451
            \LeadersLinked\Controller\UserController::class => \LeadersLinked\Factory\Controller\UserControllerFactory::class,
6452
            \LeadersLinked\Controller\DashboardController::class => \LeadersLinked\Factory\Controller\DashboardControllerFactory::class,
115 efrain 6453
            \LeadersLinked\Controller\SelfEvaluationController::class => \LeadersLinked\Factory\Controller\SelfEvaluationControllerFactory::class,
6454
            \LeadersLinked\Controller\SelfEvaluationFormController::class => \LeadersLinked\Factory\Controller\SelfEvaluationFormControllerFactory::class,
1089 geraldo 6455
            \LeadersLinked\Controller\SelfEvaluationFormUserController::class => \LeadersLinked\Factory\Controller\SelfEvaluationFormUserControllerFactory::class,
247 geraldo 6456
            \LeadersLinked\Controller\SelfEvaluationReviewController::class => \LeadersLinked\Factory\Controller\SelfEvaluationReviewControllerFactory::class,
4375 eleazar 6457
            \LeadersLinked\Controller\SurveyController::class => \LeadersLinked\Factory\Controller\SurveyControllerFactory::class,
6458
            \LeadersLinked\Controller\SurveyFormController::class => \LeadersLinked\Factory\Controller\SurveyFormControllerFactory::class,
16817 efrain 6459
            \LeadersLinked\Controller\SurveyCampaignController::class => \LeadersLinked\Factory\Controller\SurveyCampaignControllerFactory::class,
6460
 
6461
 
7218 eleazar 6462
            \LeadersLinked\Controller\OrganizationalClimateController::class => \LeadersLinked\Factory\Controller\OrganizationalClimateControllerFactory::class,
6463
            \LeadersLinked\Controller\OrganizationalClimateFormController::class => \LeadersLinked\Factory\Controller\OrganizationalClimateFormControllerFactory::class,
16817 efrain 6464
            \LeadersLinked\Controller\OrganizationalClimateCampaignController::class => \LeadersLinked\Factory\Controller\OrganizationalClimateCampaignControllerFactory::class,
6465
 
15394 efrain 6466
            \LeadersLinked\Controller\PerformanceEvaluationController::class => \LeadersLinked\Factory\Controller\PerformanceEvaluationControllerFactory::class,
987 geraldo 6467
            \LeadersLinked\Controller\PerformanceEvaluationFormController::class => \LeadersLinked\Factory\Controller\PerformanceEvaluationFormControllerFactory::class,
15394 efrain 6468
            \LeadersLinked\Controller\PerformanceEvaluationTestController::class => \LeadersLinked\Factory\Controller\PerformanceEvaluationTestControllerFactory::class,
15607 anderson 6469
 
1 www 6470
            \LeadersLinked\Controller\MicrolearningController::class => \LeadersLinked\Factory\Controller\MicrolearningControllerFactory::class,
66 efrain 6471
            \LeadersLinked\Controller\MicrolearningQuizController::class => \LeadersLinked\Factory\Controller\MicrolearningQuizControllerFactory::class,
6472
            \LeadersLinked\Controller\MicrolearningQuestionController::class => \LeadersLinked\Factory\Controller\MicrolearningQuestionControllerFactory::class,
6473
            \LeadersLinked\Controller\MicrolearningAnswerController::class => \LeadersLinked\Factory\Controller\MicrolearningAnswerControllerFactory::class,
1 www 6474
            \LeadersLinked\Controller\MicrolearningTopicController::class => \LeadersLinked\Factory\Controller\MicrolearningTopicControllerFactory::class,
6475
            \LeadersLinked\Controller\MicrolearningCapsuleController::class => \LeadersLinked\Factory\Controller\MicrolearningCapsuleControllerFactory::class,
6476
            \LeadersLinked\Controller\MicrolearningSlideController::class => \LeadersLinked\Factory\Controller\MicrolearningSlideControllerFactory::class,
6477
            \LeadersLinked\Controller\MicrolearningAccessForStudentsController::class => \LeadersLinked\Factory\Controller\MicrolearningAccessForStudentsControllerFactory::class,
6478
            \LeadersLinked\Controller\MicrolearningStudentsController::class => \LeadersLinked\Factory\Controller\MicrolearningStudentsControllerFactory::class,
6479
            \LeadersLinked\Controller\MicrolearningReportsController::class => \LeadersLinked\Factory\Controller\MicrolearningReportsControllerFactory::class,
6480
            \LeadersLinked\Controller\MicrolearningExtendUserCompanyController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserCompanyControllerFactory::class,
6481
            \LeadersLinked\Controller\MicrolearningExtendUserFunctionController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserFunctionControllerFactory::class,
6482
            \LeadersLinked\Controller\MicrolearningExtendUserGroupController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserGroupControllerFactory::class,
6483
            \LeadersLinked\Controller\MicrolearningExtendUserInstitutionController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserInstitutionControllerFactory::class,
6484
            \LeadersLinked\Controller\MicrolearningExtendUserPartnerController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserPartnerControllerFactory::class,
6485
            \LeadersLinked\Controller\MicrolearningExtendUserProgramController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserProgramControllerFactory::class,
6486
            \LeadersLinked\Controller\MicrolearningExtendUserSectorController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserSectorControllerFactory::class,
6487
            \LeadersLinked\Controller\MicrolearningExtendUserStudentTypeController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserStudentTypeControllerFactory::class,
15394 efrain 6488
            \LeadersLinked\Controller\MicrolearningExtendUserCountryController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserCountryControllerFactory::class,
17003 efrain 6489
 
16766 efrain 6490
            \LeadersLinked\Controller\PlanningController::class => \LeadersLinked\Factory\Controller\PlanningControllerFactory::class,
16785 efrain 6491
            \LeadersLinked\Controller\PlanningPeriodController::class => \LeadersLinked\Factory\Controller\PlanningPeriodControllerFactory::class,
6492
            \LeadersLinked\Controller\PlanningObjectiveController::class => \LeadersLinked\Factory\Controller\PlanningObjectiveControllerFactory::class,
6493
            \LeadersLinked\Controller\PlanningGoalController::class => \LeadersLinked\Factory\Controller\PlanningGoalControllerFactory::class,
16766 efrain 6494
            \LeadersLinked\Controller\PlanningTaskController::class => \LeadersLinked\Factory\Controller\PlanningTaskControllerFactory::class,
6495
 
15336 efrain 6496
            \LeadersLinked\Controller\PrivateNetworksController::class => \LeadersLinked\Factory\Controller\PrivateNetworksControllerFactory::class,
6497
            \LeadersLinked\Controller\MyPrivateNetworkController::class => \LeadersLinked\Factory\Controller\MyPrivateNetworkControllerFactory::class,
16971 efrain 6498
 
13010 nelberth 6499
            \LeadersLinked\Controller\CommunicationController::class => \LeadersLinked\Factory\Controller\CommunicationControllerFactory::class,
15607 anderson 6500
 
16766 efrain 6501
            \LeadersLinked\Controller\HelperController::class => \LeadersLinked\Factory\Controller\HelperControllerFactory::class,
6502
 
15607 anderson 6503
 
15387 efrain 6504
            \LeadersLinked\Controller\ReportController::class => \LeadersLinked\Factory\Controller\ReportControllerFactory::class,
1333 efrain 6505
            \LeadersLinked\Controller\UnknownController::class => \LeadersLinked\Factory\Controller\UnknownControllerFactory::class,
66 efrain 6506
            \LeadersLinked\Controller\TestController::class => \LeadersLinked\Factory\Controller\TestControllerFactory::class,
15607 anderson 6507
 
15392 efrain 6508
            \LeadersLinked\Controller\AptitudeController::class => \LeadersLinked\Factory\Controller\AptitudeControllerFactory::class,
6509
            \LeadersLinked\Controller\HobbyAndInterestController::class => \LeadersLinked\Factory\Controller\HobbyAndInterestControllerFactory::class,
15607 anderson 6510
 
15401 efrain 6511
            \LeadersLinked\Controller\DiscoveryContactController::class => \LeadersLinked\Factory\Controller\DiscoveryContactControllerFactory::class,
6512
            \LeadersLinked\Controller\DiscoveryContactLogController::class  => \LeadersLinked\Factory\Controller\DiscoveryContactLogControllerFactory::class,
6513
            \LeadersLinked\Controller\DiscoveryContactInteractionTypeController::class  => \LeadersLinked\Factory\Controller\DiscoveryContactInteractionTypeControllerFactory::class,
6514
            \LeadersLinked\Controller\DiscoveryContactInteractionController::class  => \LeadersLinked\Factory\Controller\DiscoveryContactInteractionControllerFactory::class,
15671 anderson 6515
            \LeadersLinked\Controller\DiscoveryContactProgressController::class => \LeadersLinked\Factory\Controller\DiscoveryContactProgressControllerFactory::class,
16971 efrain 6516
            \LeadersLinked\Controller\DiscoveryContactProgressUserController::class => \LeadersLinked\Factory\Controller\DiscoveryContactProgressUserControllerFactory::class,
16758 efrain 6517
            \LeadersLinked\Controller\DiscoveryContactReportController::class => \LeadersLinked\Factory\Controller\DiscoveryContactReportControllerFactory::class,
16974 efrain 6518
            \LeadersLinked\Controller\DiscoveryContactReportUserController::class => \LeadersLinked\Factory\Controller\DiscoveryContactReportUserControllerFactory::class,
16971 efrain 6519
            \LeadersLinked\Controller\DiscoveryContactBlackListController::class => \LeadersLinked\Factory\Controller\DiscoveryContactBlackListControllerFactory::class,
6520
            \LeadersLinked\Controller\DiscoveryContactBlackListReasonController::class => \LeadersLinked\Factory\Controller\DiscoveryContactBlackListReasonControllerFactory::class,
15649 anderson 6521
 
15442 efrain 6522
            \LeadersLinked\Controller\ActivityCenterController::Class  => \LeadersLinked\Factory\Controller\ActivityCenterControllerFactory::class,
6523
            \LeadersLinked\Controller\ActivityCenterPerformanceEvaluationController::class  => \LeadersLinked\Factory\Controller\ActivityCenterPerformanceEvaluationControllerFactory::class,
15461 efrain 6524
            \LeadersLinked\Controller\ActivityCenterRecruitmentSelectionController::class  => \LeadersLinked\Factory\Controller\ActivityCenterRecruitmentSelectionControllerFactory::class,
16817 efrain 6525
            \LeadersLinked\Controller\ActivityCenterOrganizationalClimateController::class  => \LeadersLinked\Factory\Controller\ActivityCenterOrganizationalClimateControllerFactory::class,
6526
            \LeadersLinked\Controller\ActivityCenterSurveyController::class  => \LeadersLinked\Factory\Controller\ActivityCenterSurveyControllerFactory::class,
6527
 
6528
 
6529
 
15540 efrain 6530
            \LeadersLinked\Controller\EngagementController::class => \LeadersLinked\Factory\Controller\EngagementControllerFactory::class,
15543 efrain 6531
            \LeadersLinked\Controller\EngagementRewardController::class => \LeadersLinked\Factory\Controller\EngagementRewardControllerFactory::class,
15540 efrain 6532
            \LeadersLinked\Controller\EngagementReportsController::class => \LeadersLinked\Factory\Controller\EngagementReportsControllerFactory::class,
15607 anderson 6533
 
15540 efrain 6534
            \LeadersLinked\Controller\DailyPulseController::Class  => \LeadersLinked\Factory\Controller\DailyPulseControllerFactory::class,
6535
            \LeadersLinked\Controller\DailyPulseEmojiController::Class  => \LeadersLinked\Factory\Controller\DailyPulseEmojiControllerFactory::class,
6536
            \LeadersLinked\Controller\DailyPulseReportsController::Class  => \LeadersLinked\Factory\Controller\DailyPulseReportsControllerFactory::class,
15607 anderson 6537
 
6538
 
15451 efrain 6539
            \LeadersLinked\Controller\MyCoachController::Class  => \LeadersLinked\Factory\Controller\MyCoachControllerFactory::class,
6540
            \LeadersLinked\Controller\MyCoachCategoryController::class  => \LeadersLinked\Factory\Controller\MyCoachCategoryControllerFactory::class,
15831 efrain 6541
            \LeadersLinked\Controller\MyCoachCategoryUserController::class  => \LeadersLinked\Factory\Controller\MyCoachCategoryUserControllerFactory::class,
16180 anderson 6542
 
16270 anderson 6543
 
16248 efrain 6544
            \LeadersLinked\Controller\KnowledgeAreaController::Class  => \LeadersLinked\Factory\Controller\KnowledgeAreaControllerFactory::class,
6545
            \LeadersLinked\Controller\KnowledgeAreaCategoryController::class  => \LeadersLinked\Factory\Controller\KnowledgeAreaCategoryControllerFactory::class,
6546
            \LeadersLinked\Controller\KnowledgeAreaCategoryUserController::class  => \LeadersLinked\Factory\Controller\KnowledgeAreaCategoryUserControllerFactory::class,
16701 efrain 6547
 
6548
 
6549
            \LeadersLinked\Controller\FastSurveyController::class  => \LeadersLinked\Factory\Controller\FastSurveyControllerFactory::class,
16248 efrain 6550
 
16270 anderson 6551
 
15457 efrain 6552
            \LeadersLinked\Controller\UserRequestAccessController::class  => \LeadersLinked\Factory\Controller\UserRequestAccessControllerFactory::class,
16285 efrain 6553
            \LeadersLinked\Controller\ToolsController::class  => \LeadersLinked\Factory\Controller\ToolsControllerFactory::class,
15607 anderson 6554
 
17003 efrain 6555
 
6556
 
6557
 
6558
            \LeadersLinked\Controller\MediaCategoryController::class => \LeadersLinked\Factory\Controller\MediaCategoryControllerFactory::class,
6559
            \LeadersLinked\Controller\MediaFileController::class => \LeadersLinked\Factory\Controller\MediaFileControllerFactory::class,
15607 anderson 6560
 
17007 efrain 6561
 
6562
            \LeadersLinked\Controller\HabitSkillController::Class => \LeadersLinked\Factory\Controller\HabitSkillControllerFactory::class,
6563
            \LeadersLinked\Controller\HabitUserController::Class => \LeadersLinked\Factory\Controller\HabitUserControllerFactory::class,
1 www 6564
        ],
6565
        'aliases' => [
6566
            '\LeadersLinked\Controller\AuthController' => \LeadersLinked\Controller\AuthController::class,
6567
            '\LeadersLinked\Controller\FollowerController' => \LeadersLinked\Controller\FollowerController::class,
6568
            '\LeadersLinked\Controller\FeedController' => \LeadersLinked\Controller\FeedController::class,
6569
            '\LeadersLinked\Controller\JobController' => \LeadersLinked\Controller\JobController::class,
1343 eleazar 6570
            '\LeadersLinked\Controller\RecruitmentSelectionController' => \LeadersLinked\Controller\RecruitmentSelectionController::class,
15461 efrain 6571
            '\LeadersLinked\Controller\RecruitmentSelectionApplicationController' => \LeadersLinked\Controller\RecruitmentSelectionApplicationController::class,
1385 eleazar 6572
            '\LeadersLinked\Controller\RecruitmentSelectionVacancyController' => \LeadersLinked\Controller\RecruitmentSelectionVacancyController::class,
15461 efrain 6573
            '\LeadersLinked\Controller\RecruitmentSelectionFileController' => \LeadersLinked\Controller\RecruitmentSelectionFileController::class,
6574
            '\LeadersLinked\Controller\RecruitmentSelectionInterviewController' => \LeadersLinked\Controller\RecruitmentSelectionInterviewController::class,
1 www 6575
            '\LeadersLinked\Controller\ProfileController' => \LeadersLinked\Controller\ProfileController::class,
6576
            '\LeadersLinked\Controller\CompanyController' => \LeadersLinked\Controller\CompanyController::class,
6577
            '\LeadersLinked\Controller\CompanySizeController' => \LeadersLinked\Controller\CompanySizeController::class,
6578
            '\LeadersLinked\Controller\CompetencyTypeController' => \LeadersLinked\Controller\CompetencyTypeController::class,
1102 geraldo 6579
            '\LeadersLinked\Controller\BehaviorsController' => \LeadersLinked\Controller\BehaviorsController::class,
1 www 6580
            '\LeadersLinked\Controller\CompetencyController' => \LeadersLinked\Controller\CompetencyController::class,
6581
            '\LeadersLinked\Controller\DegreeController' => \LeadersLinked\Controller\DegreeController::class,
6582
            '\LeadersLinked\Controller\EmailTemplateController' => \LeadersLinked\Controller\EmailTemplateController::class,
1089 geraldo 6583
            '\LeadersLinked\Controller\PushTemplateController' => \LeadersLinked\Controller\PushTemplateController::class,
1 www 6584
            '\LeadersLinked\Controller\GroupTypeController' => \LeadersLinked\Controller\GroupTypeController::class,
6585
            '\LeadersLinked\Controller\IndustryController' => \LeadersLinked\Controller\IndustryController::class,
6586
            '\LeadersLinked\Controller\JobCategoryController' => \LeadersLinked\Controller\JobCategoryController::class,
66 efrain 6587
            '\LeadersLinked\Controller\JobDescriptionController' => \LeadersLinked\Controller\JobDescriptionController::class,
1 www 6588
            '\LeadersLinked\Controller\PageController' => \LeadersLinked\Controller\PageController::class,
16770 efrain 6589
            '\LeadersLinked\Controller\OrganizationPositionController' => \LeadersLinked\Controller\OrganizationPositionController::class,
1 www 6590
            '\LeadersLinked\Controller\PostController' => \LeadersLinked\Controller\PostController::class,
6591
            '\LeadersLinked\Controller\SkillController' => \LeadersLinked\Controller\SkillController::class,
6592
            '\LeadersLinked\Controller\UserController' => \LeadersLinked\Controller\UserController::class,
6593
            '\LeadersLinked\Controller\DashboardController' => \LeadersLinked\Controller\DashboardController::class,
115 efrain 6594
            '\LeadersLinked\Controller\SelfEvaluationController' => \LeadersLinked\Controller\SelfEvaluationController::class,
6595
            '\LeadersLinked\Controller\SelfEvaluationFormController' => \LeadersLinked\Controller\SelfEvaluationFormController::class,
6596
            '\LeadersLinked\Controller\SelfEvaluationFormUserController' => \LeadersLinked\Controller\SelfEvaluationFormUserController::class,
247 geraldo 6597
            '\LeadersLinked\Controller\SelfEvaluationReviewController' => \LeadersLinked\Controller\SelfEvaluationReviewController::class,
4375 eleazar 6598
            '\LeadersLinked\Controller\SurveyController' => \LeadersLinked\Controller\SurveyController::class,
6599
            '\LeadersLinked\Controller\SurveyFormController' => \LeadersLinked\Controller\SurveyFormController::class,
16817 efrain 6600
            '\LeadersLinked\Controller\SurveyCampaignController' => \LeadersLinked\Controller\SurveyCampaignController::class,
6601
 
7218 eleazar 6602
            '\LeadersLinked\Controller\OrganizationalClimateController' => \LeadersLinked\Controller\OrganizationalClimateController::class,
6603
            '\LeadersLinked\Controller\OrganizationalClimateFormController' => \LeadersLinked\Controller\OrganizationalClimateFormController::class,
16817 efrain 6604
            '\LeadersLinked\Controller\OrganizationalClimateCampaignController' => \LeadersLinked\Controller\OrganizationalClimateCampaignController::class,
6605
 
6606
 
6607
 
15394 efrain 6608
            '\LeadersLinked\Controller\PerformanceEvaluationController' => \LeadersLinked\Controller\PerformanceEvaluationController::class,
982 geraldo 6609
            '\LeadersLinked\Controller\PerformanceEvaluationFormController' => \LeadersLinked\Controller\PerformanceEvaluationFormController::class,
15394 efrain 6610
            '\LeadersLinked\Controller\PerformanceEvaluationTestController' => \LeadersLinked\Controller\PerformanceEvaluationTestController::class,
1 www 6611
            '\LeadersLinked\Controller\MicrolearningController' => \LeadersLinked\Controller\MicrolearningController::class,
66 efrain 6612
            '\LeadersLinked\Controller\MicrolearningQuizController' => \LeadersLinked\Controller\MicrolearningQuizController::class,
6613
            '\LeadersLinked\Controller\MicrolearningQuestionController' => \LeadersLinked\Controller\MicrolearningQuestionController::class,
6614
            '\LeadersLinked\Controller\MicrolearningAnswerController' => \LeadersLinked\Controller\MicrolearningAnswerController::class,
1 www 6615
            '\LeadersLinked\Controller\MicrolearningTopicController' => \LeadersLinked\Controller\MicrolearningTopicController::class,
6616
            '\LeadersLinked\Controller\MicrolearningCapsuleController' => \LeadersLinked\Controller\MicrolearningCapsuleController::class,
6617
            '\LeadersLinked\Controller\MicrolearningSlideController' => \LeadersLinked\Controller\MicrolearningSlideController::class,
6618
            '\LeadersLinked\Controller\MicrolearningStudentsController' => \LeadersLinked\Controller\MicrolearningStudentsController::class,
6619
            '\LeadersLinked\Controller\MicrolearningAccessForStudentsController' => \LeadersLinked\Controller\MicrolearningAccessForStudentsController::class,
6620
            '\LeadersLinked\Controller\MicrolearningReportsController' => \LeadersLinked\Controller\MicrolearningReportsController::class,
6621
            '\LeadersLinked\Controller\MicrolearningExtendUserCompanyController' => \LeadersLinked\Controller\MicrolearningExtendUserCompanyController::class,
6622
            '\LeadersLinked\Controller\MicrolearningExtendUserFunctionController' => \LeadersLinked\Controller\MicrolearningExtendUserFunctionController::class,
6623
            '\LeadersLinked\Controller\MicrolearningExtendUserGroupController' => \LeadersLinked\Controller\MicrolearningExtendUserGroupController::class,
6624
            '\LeadersLinked\Controller\MicrolearningExtendUserInstitutionController' => \LeadersLinked\Controller\MicrolearningExtendUserInstitutionController::class,
6625
            '\LeadersLinked\Controller\MicrolearningExtendUserPartnerController' => \LeadersLinked\Controller\MicrolearningExtendUserPartnerController::class,
12792 eleazar 6626
            '\LeadersLinked\Controller\MicrolearningExtendUserStudentTypeController' => \LeadersLinked\Controller\MicrolearningExtendUserStudentTypeController::class,
1 www 6627
            '\LeadersLinked\Controller\MicrolearningExtendUserProgramController' => \LeadersLinked\Controller\MicrolearningExtendUserProgramController::class,
6628
            '\LeadersLinked\Controller\MicrolearningExtendUserSectorController' => \LeadersLinked\Controller\MicrolearningExtendUserSectorController::class,
15394 efrain 6629
            '\LeadersLinked\Controller\MicrolearningExtendUserCountryController' => \LeadersLinked\Controller\MicrolearningExtendUserCountryController::class,
16270 anderson 6630
 
17003 efrain 6631
 
16766 efrain 6632
            '\LeadersLinked\Controller\PlanningController' => \LeadersLinked\Controller\PlanningController::class,
16785 efrain 6633
            '\LeadersLinked\Controller\PlanningGoalController' => \LeadersLinked\Controller\PlanningGoalController::class,
6634
            '\LeadersLinked\Controller\PlanningObjectiveController' => \LeadersLinked\Controller\PlanningObjectiveController::class,
6635
            '\LeadersLinked\Controller\PlanningPeriodController' => \LeadersLinked\Controller\PlanningPeriodController::class,
16766 efrain 6636
            '\LeadersLinked\Controller\PlanningTaskController' => \LeadersLinked\Controller\PlanningTaskController::class,
6637
 
16785 efrain 6638
 
15336 efrain 6639
            '\LeadersLinked\Controller\MyPrivateNetworkController' => \LeadersLinked\Controller\MyPrivateNetworkController::class,
6640
            '\LeadersLinked\Controller\PrivateNetworksController' => \LeadersLinked\Controller\PrivateNetworksController::class,
16971 efrain 6641
 
6642
 
6643
 
6644
 
13010 nelberth 6645
            '\LeadersLinked\Controller\CommunicationController' => \LeadersLinked\Controller\CommunicationController::class,
16766 efrain 6646
 
6647
            '\LeadersLinked\Controller\HelperController' => \LeadersLinked\Controller\HelperController::class,
6648
 
15387 efrain 6649
            '\LeadersLinked\Controller\ReportController' => \LeadersLinked\Controller\ReportController::class,
1333 efrain 6650
            '\LeadersLinked\Controller\UnknownController' => \LeadersLinked\Controller\UnknownController::class,
13014 nelberth 6651
            '\LeadersLinked\Controller\TestController' => \LeadersLinked\Controller\TestController::class,
15392 efrain 6652
            '\LeadersLinked\Controller\AptitudeController' => \LeadersLinked\Controller\AptitudeController::class,
6653
            '\LeadersLinked\Controller\HobbyAndInterestController' => \LeadersLinked\Controller\HobbyAndInterestController::class,
15460 efrain 6654
            '\LeadersLinked\Controller\CountriesController' => \LeadersLinked\Controller\CountriesController::class,
15607 anderson 6655
 
6656
 
15401 efrain 6657
            '\LeadersLinked\Controller\DiscoveryContactController' => \LeadersLinked\Controller\DiscoveryContactController::class,
6658
            '\LeadersLinked\Controller\DiscoveryContactLogController' => \LeadersLinked\Controller\DiscoveryContactLogController::class,
6659
            '\LeadersLinked\Controller\DiscoveryContactInteractionTypeController' => \LeadersLinked\Controller\DiscoveryContactInteractionTypeController::class,
6660
            '\LeadersLinked\Controller\DiscoveryContactInteractionController' => \LeadersLinked\Controller\DiscoveryContactInteractionController::class,
15671 anderson 6661
            '\LeadersLinked\Controller\DiscoveryContactProgressController' => \LeadersLinked\Controller\DiscoveryContactProgressController::class,
16971 efrain 6662
            '\LeadersLinked\Controller\DiscoveryContactProgressController' => \LeadersLinked\Controller\DiscoveryContactProgressController::class,
6663
            '\LeadersLinked\Controller\DiscoveryContactProgressUserController' => \LeadersLinked\Controller\DiscoveryContactProgressUserController::class,
16758 efrain 6664
            '\LeadersLinked\Controller\DiscoveryContactReportController' => \LeadersLinked\Controller\DiscoveryContactReportController::class,
16974 efrain 6665
            '\LeadersLinked\Controller\DiscoveryContactReportUserController' => \LeadersLinked\Controller\DiscoveryContactReportUserController::class,
15607 anderson 6666
 
16971 efrain 6667
            '\LeadersLinked\Controller\DiscoveryContactBlackListReasonController' => \LeadersLinked\Controller\DiscoveryContactBlackListReasonController::class,
6668
            '\LeadersLinked\Controller\DiscoveryContactBlackListController' => \LeadersLinked\Controller\DiscoveryContactBlackListController::class,
6669
 
6670
 
15442 efrain 6671
            '\LeadersLinked\Controller\ActivityCenterController' => \LeadersLinked\Controller\ActivityCenterController::class,
6672
            '\LeadersLinked\Controller\ActivityCenterPerformanceEvaluationController' => \LeadersLinked\Controller\ActivityCenterPerformanceEvaluationController::class,
15461 efrain 6673
            '\LeadersLinked\Controller\ActivityCenterRecruitmentSelectionController' => \LeadersLinked\Controller\ActivityCenterRecruitmentSelectionController::class,
16817 efrain 6674
            '\LeadersLinked\Controller\ActivityCenterOrganizationalClimateController' => \LeadersLinked\Controller\ActivityCenterOrganizationalClimateController::class,
6675
            '\LeadersLinked\Controller\ActivityCenterSurveyController' => \LeadersLinked\Controller\ActivityCenterSurveyController::class,
6676
 
6677
 
15540 efrain 6678
            '\LeadersLinked\Controller\EngagementController' => \LeadersLinked\Controller\EngagementController::class,
15543 efrain 6679
            '\LeadersLinked\Controller\EngagementRewardController' => \LeadersLinked\Controller\EngagementRewardController::class,
15540 efrain 6680
            '\LeadersLinked\Controller\EngagementReportsController' => \LeadersLinked\Controller\EngagementReportsController::class,
15607 anderson 6681
 
15540 efrain 6682
            '\LeadersLinked\Controller\DailyPulseController' => \LeadersLinked\Controller\DailyPulseController::class,
6683
            '\LeadersLinked\Controller\DailyPulseEmojiController' => \LeadersLinked\Controller\DailyPulseEmojiController::class,
6684
            '\LeadersLinked\Controller\DailyPulseReportsController' => \LeadersLinked\Controller\DailyPulseReportsController::class,
15607 anderson 6685
 
15451 efrain 6686
            '\LeadersLinked\Controller\MyCoachController' => \LeadersLinked\Controller\MyCoachController::class,
6687
            '\LeadersLinked\Controller\MyCoachCategoryController' => \LeadersLinked\Controller\MyCoachCategoryController::class,
15831 efrain 6688
            '\LeadersLinked\Controller\MyCoachCategoryUserController' => \LeadersLinked\Controller\MyCoachCategoryUserController::class,
16180 anderson 6689
 
16248 efrain 6690
            '\LeadersLinked\Controller\KnowledgeAreaController' => \LeadersLinked\Controller\KnowledgeAreaController::class,
6691
            '\LeadersLinked\Controller\KnowledgeAreaCategoryController' => \LeadersLinked\Controller\KnowledgeAreaCategoryController::class,
6692
            '\LeadersLinked\Controller\KnowledgeAreaCategoryUserController' => \LeadersLinked\Controller\KnowledgeAreaCategoryUserController::class,
16270 anderson 6693
 
16701 efrain 6694
            '\LeadersLinked\Controller\FastSurveyController' => \LeadersLinked\Controller\FastSurveyController::class,
16270 anderson 6695
 
15457 efrain 6696
            '\LeadersLinked\Controller\UserRequestAccessController' => \LeadersLinked\Controller\UserRequestAccessController::Class,
16285 efrain 6697
            '\LeadersLinked\Controller\ToolsController' => \LeadersLinked\Controller\ToolsController::Class,
17003 efrain 6698
 
6699
 
6700
            '\LeadersLinked\Controller\MediaCategoryController' => \LeadersLinked\Controller\MediaCategoryController::Class,
6701
            '\LeadersLinked\Controller\MediaFileController' => \LeadersLinked\Controller\MediaFileController::Class,
17007 efrain 6702
 
6703
 
6704
            '\LeadersLinked\Controller\HabitSkillController' => \LeadersLinked\Controller\HabitSkillController::Class,
6705
            '\LeadersLinked\Controller\HabitUserController' => \LeadersLinked\Controller\HabitUserController::Class,
1 www 6706
        ]
6707
    ],
6708
    'laminas-cli' => [
16643 efrain 6709
        'commands' => [
6710
            'check-discovery-contacts' => \LeadersLinked\Command\CheckDiscoveryContactCommand::class,
16766 efrain 6711
            'duplicate-discovery-contacts' => \LeadersLinked\Command\DuplicateDiscoveryContactCommand::class,
16643 efrain 6712
        ]
1 www 6713
    ],
6714
    'service_manager' => [
6715
        'abstract_factories' => [
6716
            \Laminas\Db\Adapter\AdapterAbstractServiceFactory::class
6717
        ],
6718
        'factories' => [
6719
            'RenderingStrategy' => function ($container) {
6720
                $translator = $container->get('MvcTranslator');
6721
                return new \LeadersLinked\View\RenderingStrategy($translator);
6722
            },
6723
            'menuNavigation' => \LeadersLinked\Navigation\MenuNavigation::class,
6724
            'footerNavigation' => \LeadersLinked\Navigation\FooterNavigation::class,
16643 efrain 6725
            \LeadersLinked\Command\CheckDiscoveryContactCommand::class => \LeadersLinked\Factory\Command\CheckDiscoveryContactCommandFactory::class,
16766 efrain 6726
            \LeadersLinked\Command\DuplicateDiscoveryContactCommand::class => \LeadersLinked\Factory\Command\DuplicateDiscoveryContactCommandFactory::class,
16643 efrain 6727
 
1089 geraldo 6728
        ],
15607 anderson 6729
        'aliases' => [ // 'leaders-linked-storage' => \LeadersLinked\Service\StorageService::class
1 www 6730
        ]
6731
    ],
6732
    'view_helpers' => [
6733
        'factories' => [
6734
            \LeadersLinked\Helper\CurrentUserHelper::class => \LeadersLinked\Factory\Helper\CurrentUserHelperFactory::class,
15336 efrain 6735
            \LeadersLinked\Helper\CurrentNetworkHelper::class => \LeadersLinked\Factory\Helper\CurrentNetworkHelperFactory::class,
6736
            \LeadersLinked\Helper\NetworkFavicoHelper::class => \LeadersLinked\Factory\Helper\NetworkFavicoHelperFactory::class,
6737
            \LeadersLinked\Helper\NetworkLogoHelper::class => \LeadersLinked\Factory\Helper\NetworkLogoHelperFactory::class,
6738
            \LeadersLinked\Helper\NetworkNavbarHelper::class => \LeadersLinked\Factory\Helper\NetworkNavbarHelperFactory::class,
6739
            \LeadersLinked\Helper\NetworkStylesAndColorsHelper::class => \LeadersLinked\Factory\Helper\NetworkStylesAndColorsHelperFactory::class,
15607 anderson 6740
 
1 www 6741
        ],
6742
        'invokables' => [
6743
            'menuHelper' => \LeadersLinked\Helper\MenuHelper::class,
6744
        ],
6745
        'aliases' => [
15607 anderson 6746
 
1 www 6747
            'currentUserHelper' => \LeadersLinked\Helper\CurrentUserHelper::class,
15336 efrain 6748
            'currentNetworkHelper' =>  \LeadersLinked\Helper\CurrentNetworkHelper::class,
6749
            'networkLogoHelper'  => \LeadersLinked\Helper\NetworkLogoHelper::class,
6750
            'networkNavbarHelper'  => \LeadersLinked\Helper\NetworkNavbarHelper::class,
17003 efrain 6751
            'networkFavicoHelper'  => \LeadersLinked\Helper\NetworkFavicoHelper::class,
15336 efrain 6752
            'networkStylesAndColorsHelper'  => \LeadersLinked\Helper\NetworkStylesAndColorsHelper::class,
15607 anderson 6753
 
1 www 6754
        ]
6755
    ],
6756
    'controller_plugins' => [
6757
        'invokables' => [],
6758
        'factories' => [
15336 efrain 6759
            \LeadersLinked\Plugin\CurrentUserPlugin::class => \LeadersLinked\Factory\Plugin\CurrentUserPluginFactory::class,
6760
            \LeadersLinked\Plugin\CurrentNetworkPlugin::class => \LeadersLinked\Factory\Plugin\CurrentNetworkPluginFactory::class,
1 www 6761
        ],
6762
        'aliases' => [
15607 anderson 6763
            'currentUserPlugin' => \LeadersLinked\Plugin\CurrentUserPlugin::class,
15336 efrain 6764
            'currentNetworkPlugin' => \LeadersLinked\Plugin\CurrentNetworkPlugin::class,
1 www 6765
        ]
6766
    ],
6767
    'view_manager' => [
6768
        'display_not_found_reason' => true,
6769
        'display_exceptions' => true,
6770
        'doctype' => 'HTML5',
6771
        'not_found_template' => 'error/404',
6772
        'exception_template' => 'error/index',
6773
        'template_map' => [
6774
            'layout/layout' => __DIR__ . '/../view/layout/layout.phtml',
6775
            'error/404' => __DIR__ . '/../view/error/404.phtml',
6776
            'error/index' => __DIR__ . '/../view/error/index.phtml'
6777
        ],
6778
        'template_path_stack' => [
6779
            __DIR__ . '/../view'
6780
        ],
6781
        'strategies' => [
6782
            'ViewJsonStrategy',
6783
            'RenderingStrategy'
6784
        ]
6785
    ]
6786
];