Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 17003 | Rev 17008 | 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
                            ],
3108
                            'users' => [
3109
                                'type' =>  Literal::class,
3110
                                'options' => [
3111
                                    'route' => '/users',
3112
                                    'defaults' => [
3113
                                        'controller' =>  '\LeadersLinked\Controller\HabitUserController',
3114
                                        'action' => 'index'
3115
                                    ]
3116
                                ],
3117
                                'may_terminate' => true,
3118
                                'child_routes' => [
3119
                                    'add' => [
3120
                                        'type' => Segment::class,
3121
                                        'options' => [
3122
                                            'route' => '/add/:id',
3123
                                            'constraints' => [
3124
                                                'id' => '[A-Za-z0-9\-]+\=*'
3125
                                            ],
3126
                                            'defaults' => [
3127
                                                'controller' =>  '\LeadersLinked\Controller\HabitUserController',
3128
                                                'action' => 'add'
3129
                                            ]
3130
                                        ]
3131
                                    ],
3132
                                    'edit' => [
3133
                                        'type' => Segment::class,
3134
                                        'options' => [
3135
                                            'route' => '/edit/:id/:user_id',
3136
                                            'constraints' => [
3137
                                                'id' => '[A-Za-z0-9\-]+\=*',
3138
                                                'user_id' => '[A-Za-z0-9\-]+\=*'
3139
                                            ],
3140
                                            'defaults' => [
3141
                                                'controller' =>  '\LeadersLinked\Controller\HabitUserController',
3142
                                                'action' => 'edit'
3143
                                            ]
3144
                                        ]
3145
                                    ],
3146
                                    'delete' => [
3147
                                        'type' => Segment::class,
3148
                                        'options' => [
3149
                                            'route' => '/delete/:id/:user_id',
3150
                                            'constraints' => [
3151
                                                'id' => '[A-Za-z0-9\-]+\=*',
3152
                                                'user_id' => '[A-Za-z0-9\-]+\=*'
3153
                                            ],
3154
                                            'defaults' => [
3155
                                                'controller' =>  '\LeadersLinked\Controller\HabitUserController',
3156
                                                'action' => 'delete'
3157
                                            ]
3158
                                        ]
3159
                                    ],
3160
                                    'upload' => [
3161
                                        'type' => Segment::class,
3162
                                        'options' => [
3163
                                            'route' => '/upload/:id',
3164
                                            'constraints' => [
3165
                                                'id' => '[A-Za-z0-9\-]+\=*',
3166
                                            ],
3167
                                            'defaults' => [
3168
                                                'controller' =>  '\LeadersLinked\Controller\HabitUserController',
3169
                                                'action' => 'upload'
3170
                                            ]
3171
                                        ]
3172
                                    ],
3173
 
3174
                                ]
3175
                            ],
3176
 
3177
                        ]
3178
                    ],
3179
                ]
3180
            ],
3181
 
3182
            /*             * * END HABITS ** */
946 geraldo 3183
 
15607 anderson 3184
 
1089 geraldo 3185
            /*             * * START PERFOMANCE EVALUATION ** */
946 geraldo 3186
            'performance-evaluation' => [
3187
                'type' => Literal::class,
3188
                'options' => [
3189
                    'route' => '/performance-evaluation',
3190
                    'defaults' => [
15394 efrain 3191
                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationController',
946 geraldo 3192
                        'action' => 'index'
3193
                    ]
3194
                ],
3195
                'may_terminate' => true,
3196
                'child_routes' => [
3197
                    'forms' => [
3198
                        'type' => Literal::class,
3199
                        'options' => [
3200
                            'route' => '/forms',
3201
                            'defaults' => [
977 geraldo 3202
                                'controller' => '\LeadersLinked\Controller\PerformanceEvaluationFormController',
946 geraldo 3203
                                'action' => 'index'
3204
                            ]
3205
                        ],
3206
                        'may_terminate' => true,
3207
                        'child_routes' => [
3208
                            'add' => [
3209
                                'type' => Literal::class,
3210
                                'options' => [
3211
                                    'route' => '/add',
3212
                                    'defaults' => [
977 geraldo 3213
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationFormController',
946 geraldo 3214
                                        'action' => 'add'
3215
                                    ]
3216
                                ]
3217
                            ],
3218
                            'edit' => [
3219
                                'type' => Segment::class,
3220
                                'options' => [
3221
                                    'route' => '/edit/:id',
3222
                                    'constraints' => [
3223
                                        'id' => '[A-Za-z0-9\-]+\=*'
3224
                                    ],
3225
                                    'defaults' => [
986 geraldo 3226
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationFormController',
946 geraldo 3227
                                        'action' => 'edit'
3228
                                    ]
3229
                                ]
3230
                            ],
3231
                            'delete' => [
3232
                                'type' => Segment::class,
3233
                                'options' => [
3234
                                    'route' => '/delete/:id',
3235
                                    'constraints' => [
3236
                                        'id' => '[A-Za-z0-9\-]+\=*'
3237
                                    ],
3238
                                    'defaults' => [
986 geraldo 3239
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationFormController',
946 geraldo 3240
                                        'action' => 'delete'
3241
                                    ]
3242
                                ]
15079 efrain 3243
                            ],
15442 efrain 3244
                            'active' => [
3245
                                'type' => Segment::class,
15079 efrain 3246
                                'options' => [
15442 efrain 3247
                                    'route' => '/active/:id',
3248
                                    'constraints' => [
3249
                                        'id' => '[A-Za-z0-9\-]+\=*'
3250
                                    ],
15079 efrain 3251
                                    'defaults' => [
3252
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationFormController',
15442 efrain 3253
                                        'action' => 'active'
3254
                                    ]
3255
                                ]
3256
                            ],
3257
                            'inactive' => [
3258
                                'type' => Segment::class,
3259
                                'options' => [
3260
                                    'route' => '/inactive/:id',
3261
                                    'constraints' => [
3262
                                        'id' => '[A-Za-z0-9\-]+\=*'
3263
                                    ],
3264
                                    'defaults' => [
3265
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationFormController',
3266
                                        'action' => 'inactive'
3267
                                    ]
3268
                                ]
3269
                            ],
3270
                            'job-description' => [
3271
                                'type' => Segment::class,
3272
                                'options' => [
3273
                                    'route' => '/job-description/:id',
3274
                                    'constraints' => [
3275
                                        'id' => '[A-Za-z0-9\-]+\=*',
3276
                                    ],
3277
                                    'defaults' => [
3278
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationFormController',
15079 efrain 3279
                                        'action' => 'jobDescription'
3280
                                    ]
3281
                                ]
3282
                            ],
1263 geraldo 3283
                            'report' => [
3284
                                'type' => Segment::class,
3285
                                'options' => [
3286
                                    'route' => '/report/:id',
3287
                                    'constraints' => [
3288
                                        'id' => '[A-Za-z0-9\-]+\=*'
3289
                                    ],
3290
                                    'defaults' => [
3291
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationFormController',
3292
                                        'action' => 'report'
3293
                                    ]
3294
                                ]
3295
                            ],
946 geraldo 3296
                        ]
3297
                    ],
15442 efrain 3298
                    'evaluations' => [
946 geraldo 3299
                        'type' => Literal::class,
3300
                        'options' => [
15442 efrain 3301
                            'route' => '/evaluations',
946 geraldo 3302
                            'defaults' => [
15394 efrain 3303
                                'controller' => '\LeadersLinked\Controller\PerformanceEvaluationTestController',
946 geraldo 3304
                                'action' => 'index'
3305
                            ]
3306
                        ],
3307
                        'may_terminate' => true,
3308
                        'child_routes' => [
1383 efrain 3309
                            'add' => [
1320 efrain 3310
                                'type' => Literal::class,
946 geraldo 3311
                                'options' => [
1383 efrain 3312
                                    'route' => '/add',
946 geraldo 3313
                                    'defaults' => [
15394 efrain 3314
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationTestController',
1383 efrain 3315
                                        'action' => 'add'
946 geraldo 3316
                                    ]
1383 efrain 3317
                                ]
3318
                            ],
7902 eleazar 3319
                            'delete' => [
1383 efrain 3320
                                'type' => Segment::class,
3321
                                'options' => [
7902 eleazar 3322
                                    'route' => '/delete/:id',
1383 efrain 3323
                                    'constraints' => [
3324
                                        'id' => '[A-Za-z0-9\-]+\=*',
1320 efrain 3325
                                    ],
1383 efrain 3326
                                    'defaults' => [
15394 efrain 3327
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationTestController',
7902 eleazar 3328
                                        'action' => 'delete'
1320 efrain 3329
                                    ]
946 geraldo 3330
                                ]
1383 efrain 3331
                            ],
15607 anderson 3332
                            'report' => [
7947 eleazar 3333
                                'type' => Segment::class,
1383 efrain 3334
                                'options' => [
15442 efrain 3335
                                    'route' => '/report/:id',
7907 eleazar 3336
                                    'constraints' => [
8176 eleazar 3337
                                        'id' => '[A-Za-z0-9\-]+\=*'
3338
                                    ],
3339
                                    'defaults' => [
15394 efrain 3340
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationTestController',
15442 efrain 3341
                                        'action' => 'report',
8176 eleazar 3342
                                    ],
3343
                                ],
3344
                            ],
946 geraldo 3345
                        ]
3346
                    ],
3347
                ]
1089 geraldo 3348
            ],
15607 anderson 3349
 
1089 geraldo 3350
            /*             * * END PERFORMANCE EVALUATION ** */
3351
 
15442 efrain 3352
            /* START JOBS DESCRIPTION */
15607 anderson 3353
 
15442 efrain 3354
            'jobs-description' => [
1 www 3355
                'type' => Literal::class,
3356
                'options' => [
15442 efrain 3357
                    'route' => '/jobs-description',
1 www 3358
                    'defaults' => [
15442 efrain 3359
                        'controller' => '\LeadersLinked\Controller\JobDescriptionController',
1 www 3360
                        'action' => 'index'
3361
                    ]
3362
                ],
3363
                'may_terminate' => true,
3364
                'child_routes' => [
16787 efrain 3365
                    'search' => [
3366
                        'type' => Literal::class,
3367
                        'options' => [
3368
                            'route' => '/search',
3369
                            'defaults' => [
3370
                                'controller' => '\LeadersLinked\Controller\JobDescriptionController',
3371
                                'action' => 'search'
3372
                            ]
3373
                        ]
3374
                    ],
16954 efrain 3375
                    'dictionary' => [
3376
                        'type' => Literal::class,
3377
                        'options' => [
3378
                            'route' => '/dictionary',
3379
                            'defaults' => [
3380
                                'controller' => '\LeadersLinked\Controller\JobDescriptionController',
3381
                                'action' => 'dictionary'
3382
                            ]
3383
                        ]
3384
                    ],
15442 efrain 3385
                    'add' => [
16787 efrain 3386
                        'type' => Literal::class,
15336 efrain 3387
                        'options' => [
16787 efrain 3388
                            'route' => '/add',
15336 efrain 3389
                            'defaults' => [
15442 efrain 3390
                                'controller' => '\LeadersLinked\Controller\JobDescriptionController',
3391
                                'action' => 'add'
15336 efrain 3392
                            ]
15442 efrain 3393
                        ]
3394
                    ],
3395
                    'edit' => [
3396
                        'type' => Segment::class,
3397
                        'options' => [
3398
                            'route' => '/edit/:id',
3399
                            'constraints' => [
3400
                                'id' => '[A-Za-z0-9\-]+\=*'
15336 efrain 3401
                            ],
15442 efrain 3402
                            'defaults' => [
3403
                                'controller' => '\LeadersLinked\Controller\JobDescriptionController',
3404
                                'action' => 'edit'
3405
                            ]
15336 efrain 3406
                        ]
3407
                    ],
15442 efrain 3408
                    'delete' => [
3409
                        'type' => Segment::class,
15336 efrain 3410
                        'options' => [
15442 efrain 3411
                            'route' => '/delete/:id',
3412
                            'constraints' => [
3413
                                'id' => '[A-Za-z0-9\-]+\=*'
3414
                            ],
15336 efrain 3415
                            'defaults' => [
15442 efrain 3416
                                'controller' => '\LeadersLinked\Controller\JobDescriptionController',
3417
                                'action' => 'delete'
15336 efrain 3418
                            ]
15442 efrain 3419
                        ]
3420
                    ],
3421
                    'report' => [
3422
                        'type' => Segment::class,
3423
                        'options' => [
3424
                            'route' => '/report/:id',
3425
                            'constraints' => [
3426
                                'id' => '[A-Za-z0-9\-]+\=*'
15336 efrain 3427
                            ],
15442 efrain 3428
                            'defaults' => [
3429
                                'controller' => '\LeadersLinked\Controller\JobDescriptionController',
3430
                                'action' => 'report'
15336 efrain 3431
                            ]
3432
                        ]
3433
                    ],
15442 efrain 3434
                    'import' => [
1 www 3435
                        'type' => Literal::class,
3436
                        'options' => [
15442 efrain 3437
                            'route' => '/import',
1 www 3438
                            'defaults' => [
15442 efrain 3439
                                'controller' => '\LeadersLinked\Controller\JobDescriptionController',
3440
                                'action' => 'import'
1 www 3441
                            ]
3442
                        ]
3443
                    ],
3444
                    'competency-types' => [
3445
                        'type' => Literal::class,
3446
                        'options' => [
3447
                            'route' => '/competency-types',
3448
                            'defaults' => [
3449
                                'controller' => '\LeadersLinked\Controller\CompetencyTypeController',
3450
                                'action' => 'index'
3451
                            ]
3452
                        ],
3453
                        'may_terminate' => true,
3454
                        'child_routes' => [
3455
                            'add' => [
3456
                                'type' => Literal::class,
3457
                                'options' => [
3458
                                    'route' => '/add',
3459
                                    'defaults' => [
3460
                                        'controller' => '\LeadersLinked\Controller\CompetencyTypeController',
3461
                                        'action' => 'add'
3462
                                    ]
3463
                                ]
3464
                            ],
3465
                            'edit' => [
3466
                                'type' => Segment::class,
3467
                                'options' => [
3468
                                    'route' => '/edit/:id',
3469
                                    'constraints' => [
3470
                                        'id' => '[A-Za-z0-9\-]+\=*'
3471
                                    ],
3472
                                    'defaults' => [
3473
                                        'controller' => '\LeadersLinked\Controller\CompetencyTypeController',
3474
                                        'action' => 'edit'
3475
                                    ]
3476
                                ]
3477
                            ],
3478
                            'delete' => [
3479
                                'type' => Segment::class,
3480
                                'options' => [
3481
                                    'route' => '/delete/:id',
3482
                                    'constraints' => [
3483
                                        'id' => '[A-Za-z0-9\-]+\=*'
3484
                                    ],
3485
                                    'defaults' => [
3486
                                        'controller' => '\LeadersLinked\Controller\CompetencyTypeController',
3487
                                        'action' => 'delete'
3488
                                    ]
3489
                                ]
28 efrain 3490
                            ],
3491
                            'import' => [
3492
                                'type' => Literal::class,
3493
                                'options' => [
3494
                                    'route' => '/import',
3495
                                    'defaults' => [
3496
                                        'controller' => '\LeadersLinked\Controller\CompetencyTypeController',
3497
                                        'action' => 'import'
3498
                                    ]
3499
                                ]
3500
                            ],
1 www 3501
                        ]
3502
                    ],
1104 geraldo 3503
                    'behaviors' => [
3504
                        'type' => Literal::class,
3505
                        'options' => [
3506
                            'route' => '/behaviors',
3507
                            'defaults' => [
3508
                                'controller' => '\LeadersLinked\Controller\BehaviorsController',
3509
                                'action' => 'index'
3510
                            ]
3511
                        ],
3512
                        'may_terminate' => true,
3513
                        'child_routes' => [
3514
                            'add' => [
3515
                                'type' => Literal::class,
3516
                                'options' => [
14989 efrain 3517
                                    'route' => '/add[/inline/:inline]',
3518
                                    'constraints' => [
3519
                                        'inline' => 'yes|no'
3520
                                    ],
1104 geraldo 3521
                                    'defaults' => [
3522
                                        'controller' => '\LeadersLinked\Controller\BehaviorsController',
3523
                                        'action' => 'add'
3524
                                    ]
3525
                                ]
1115 geraldo 3526
                            ],
3527
                            'edit' => [
3528
                                'type' => Segment::class,
3529
                                'options' => [
3530
                                    'route' => '/edit/:id',
3531
                                    'constraints' => [
3532
                                        'id' => '[A-Za-z0-9\-]+\=*'
3533
                                    ],
3534
                                    'defaults' => [
3535
                                        'controller' => '\LeadersLinked\Controller\BehaviorsController',
3536
                                        'action' => 'edit'
3537
                                    ]
3538
                                ]
3539
                            ],
14280 kerby 3540
                            'delete' => [
3541
                                'type' => Segment::class,
3542
                                'options' => [
14875 efrain 3543
                                    'route' => '/delete/:id',
14280 kerby 3544
                                    'constraints' => [
14292 kerby 3545
                                        'id' => '[A-Za-z0-9\-]+\=*'
14280 kerby 3546
                                    ],
3547
                                    'defaults' => [
3548
                                        'controller' => '\LeadersLinked\Controller\BehaviorsController',
3549
                                        'action' => 'delete'
3550
                                    ]
3551
                                ]
14875 efrain 3552
                            ],
3553
                            'import' => [
3554
                                'type' => Literal::class,
3555
                                'options' => [
3556
                                    'route' => '/import',
3557
                                    'defaults' => [
3558
                                        'controller' => '\LeadersLinked\Controller\BehaviorsController',
3559
                                        'action' => 'import'
3560
                                    ]
3561
                                ]
3562
                            ],
15607 anderson 3563
 
1104 geraldo 3564
                        ]
3565
                    ],
1 www 3566
                    'competencies' => [
3567
                        'type' => Literal::class,
3568
                        'options' => [
3569
                            'route' => '/competencies',
3570
                            'defaults' => [
3571
                                'controller' => '\LeadersLinked\Controller\CompetencyController',
3572
                                'action' => 'index'
3573
                            ]
3574
                        ],
3575
                        'may_terminate' => true,
3576
                        'child_routes' => [
3577
                            'add' => [
3578
                                'type' => Literal::class,
3579
                                'options' => [
3580
                                    'route' => '/add',
3581
                                    'defaults' => [
3582
                                        'controller' => '\LeadersLinked\Controller\CompetencyController',
3583
                                        'action' => 'add'
3584
                                    ]
3585
                                ]
3586
                            ],
3587
                            'edit' => [
3588
                                'type' => Segment::class,
3589
                                'options' => [
3590
                                    'route' => '/edit/:id',
3591
                                    'constraints' => [
3592
                                        'id' => '[A-Za-z0-9\-]+\=*'
3593
                                    ],
3594
                                    'defaults' => [
3595
                                        'controller' => '\LeadersLinked\Controller\CompetencyController',
3596
                                        'action' => 'edit'
3597
                                    ]
3598
                                ]
3599
                            ],
3600
                            'delete' => [
3601
                                'type' => Segment::class,
3602
                                'options' => [
3603
                                    'route' => '/delete/:id',
3604
                                    'constraints' => [
3605
                                        'id' => '[A-Za-z0-9\-]+\=*'
3606
                                    ],
3607
                                    'defaults' => [
3608
                                        'controller' => '\LeadersLinked\Controller\CompetencyController',
3609
                                        'action' => 'delete'
3610
                                    ]
3611
                                ]
28 efrain 3612
                            ],
3613
                            'import' => [
3614
                                'type' => Literal::class,
3615
                                'options' => [
3616
                                    'route' => '/import',
3617
                                    'defaults' => [
3618
                                        'controller' => '\LeadersLinked\Controller\CompetencyController',
3619
                                        'action' => 'import'
3620
                                    ]
3621
                                ]
3622
                            ],
14875 efrain 3623
                            'behaviors' => [
3624
                                'type' => Segment::class,
3625
                                'options' => [
3626
                                    'route' => '/behaviors/:id',
3627
                                    'constraints' => [
3628
                                        'id' => '[A-Za-z0-9\-]+\=*'
3629
                                    ],
3630
                                    'defaults' => [
3631
                                        'controller' => '\LeadersLinked\Controller\CompetencyController',
3632
                                        'action' => 'behaviors'
3633
                                    ]
3634
                                ],
3635
                                'child_routes' => [
3636
                                    'add' => [
3637
                                        'type' => Literal::class,
3638
                                        'options' => [
3639
                                            'route' => '/add',
3640
                                            'defaults' => [
3641
                                                'controller' => '\LeadersLinked\Controller\CompetencyController',
3642
                                                'action' => 'behaviorAdd'
3643
                                            ]
3644
                                        ]
3645
                                    ],
3646
                                    'set' => [
3647
                                        'type' => Segment::class,
3648
                                        'options' => [
3649
                                            'route' => '/set/:behavior_id',
3650
                                            'constraints' => [
3651
                                                'behavior_id' => '[A-Za-z0-9\-]+\=*'
3652
                                            ],
3653
                                            'defaults' => [
3654
                                                'controller' => '\LeadersLinked\Controller\CompetencyController',
3655
                                                'action' => 'behaviorSet'
3656
                                            ]
3657
                                        ]
3658
                                    ],
3659
                                    'unset' => [
3660
                                        'type' => Segment::class,
3661
                                        'options' => [
3662
                                            'route' => '/unset/:behavior_id',
3663
                                            'constraints' => [
3664
                                                'behavior_id' => '[A-Za-z0-9\-]+\=*'
3665
                                            ],
3666
                                            'defaults' => [
3667
                                                'controller' => '\LeadersLinked\Controller\CompetencyController',
3668
                                                'action' => 'behaviorUnset'
3669
                                            ]
3670
                                        ]
3671
                                    ],
3672
                                ]
3673
                            ],
1 www 3674
                        ]
3675
                    ],
16766 efrain 3676
 
3677
                ]
3678
            ],
3679
 
3680
            /* END JOBS DESCRIPTION */
3681
 
3682
 
16770 efrain 3683
            /**** ORGANIZATION  START ****/
3684
            'organization' => [
16766 efrain 3685
                'type' => Literal::class,
3686
                'options' => [
16770 efrain 3687
                    'route' => '/organization',
16766 efrain 3688
                    'defaults' => [
3689
                        'controller' => '\LeadersLinked\Controller\OrganizationChartController',
3690
                        'action' => 'index'
3691
                    ]
3692
                ],
3693
                'may_terminate' => true,
3694
                'child_routes' => [
15457 efrain 3695
                    'positions' => [
3696
                        'type' => Literal::class,
3697
                        'options' => [
3698
                            'route' => '/positions',
3699
                            'defaults' => [
16770 efrain 3700
                                'controller' => '\LeadersLinked\Controller\OrganizationPositionController',
15457 efrain 3701
                                'action' => 'index'
3702
                            ]
3703
                        ],
3704
                        'may_terminate' => true,
3705
                        'child_routes' => [
3706
                            'add' => [
16791 efrain 3707
                                'type' =>  Literal::class,
15457 efrain 3708
                                'options' => [
16791 efrain 3709
                                    'route' => '/add',
15457 efrain 3710
                                    'defaults' => [
16770 efrain 3711
                                        'controller' => '\LeadersLinked\Controller\OrganizationPositionController',
15457 efrain 3712
                                        'action' => 'add'
3713
                                    ]
3714
                                ]
3715
                            ],
3716
                            'edit' => [
3717
                                'type' => Segment::class,
3718
                                'options' => [
3719
                                    'route' => '/edit/:id',
3720
                                    'constraints' => [
3721
                                        'id' => '[A-Za-z0-9\-]+\=*'
3722
                                    ],
3723
                                    'defaults' => [
16770 efrain 3724
                                        'controller' => '\LeadersLinked\Controller\OrganizationPositionController',
15457 efrain 3725
                                        'action' => 'edit'
3726
                                    ]
3727
                                ]
3728
                            ],
3729
                            'delete' => [
3730
                                'type' => Segment::class,
3731
                                'options' => [
3732
                                    'route' => '/delete/:id',
3733
                                    'constraints' => [
3734
                                        'id' => '[A-Za-z0-9\-]+\=*'
3735
                                    ],
3736
                                    'defaults' => [
16770 efrain 3737
                                        'controller' => '\LeadersLinked\Controller\OrganizationPositionController',
15457 efrain 3738
                                        'action' => 'delete'
3739
                                    ]
3740
                                ]
3741
                            ],
16791 efrain 3742
                            'boss' => [
3743
                                'type' => Literal::class,
15457 efrain 3744
                                'options' => [
16791 efrain 3745
                                    'route' => '/boss',
15457 efrain 3746
                                    'defaults' => [
16770 efrain 3747
                                        'controller' => '\LeadersLinked\Controller\OrganizationPositionController',
16791 efrain 3748
                                        'action' => 'boss'
15457 efrain 3749
                                    ]
16791 efrain 3750
                                ]
15457 efrain 3751
                            ],
3752
                        ]
3753
                    ],
16766 efrain 3754
                ]
15442 efrain 3755
            ],
16766 efrain 3756
 
3757
 
3758
            /**** ORIGANIZATION CHART END ****/
15607 anderson 3759
 
3760
 
15442 efrain 3761
            /*             * * START SETTINGS ** */
3762
            'settings' => [
3763
                'type' => Literal::class,
3764
                'options' => [
3765
                    'route' => '/settings',
3766
                    'defaults' => [
3767
                        'controller' => '\LeadersLinked\Controller\DashboardController',
3768
                        'action' => 'index'
3769
                    ]
3770
                ],
3771
                'may_terminate' => true,
3772
                'child_routes' => [
3773
                    'my-private-network' => [
3774
                        'type' => Literal::class,
3775
                        'options' => [
3776
                            'route' => '/my-private-network',
3777
                            'defaults' => [
3778
                                'controller' => '\LeadersLinked\Controller\MyPrivateNetworkController',
3779
                                'action' => 'index'
3780
                            ]
3781
                        ],
3782
                        'may_terminate' => true,
3783
                        'child_routes' => [
3784
                            'intro' => [
3785
                                'type' => Literal::class,
3786
                                'options' => [
3787
                                    'route' => '/intro',
3788
                                    'defaults' => [
3789
                                        'controller' =>  '\LeadersLinked\Controller\MyPrivateNetworkController',
3790
                                        'action' => 'intro'
3791
                                    ]
3792
                                ]
3793
                            ],
3794
                            'calendar' => [
3795
                                'type' => Literal::class,
3796
                                'options' => [
3797
                                    'route' => '/calendar',
3798
                                    'defaults' => [
3799
                                        'controller' =>  '\LeadersLinked\Controller\MyPrivateNetworkController',
3800
                                        'action' => 'calendar'
3801
                                    ]
3802
                                ]
3803
                            ],
3804
                            'styles-and-colors' => [
3805
                                'type' => Literal::class,
3806
                                'options' => [
3807
                                    'route' => '/styles-and-colors',
3808
                                    'defaults' => [
3809
                                        'controller' =>  '\LeadersLinked\Controller\MyPrivateNetworkController',
3810
                                        'action' => 'stylesAndColors'
3811
                                    ]
3812
                                ]
3813
                            ],
3814
                            'navbar' => [
3815
                                'type' => Literal::class,
3816
                                'options' => [
3817
                                    'route' => '/navbar',
3818
                                    'defaults' => [
3819
                                        'controller' =>  '\LeadersLinked\Controller\MyPrivateNetworkController',
3820
                                        'action' => 'navbar'
3821
                                    ]
3822
                                ]
3823
                            ],
3824
                            'favicon' => [
3825
                                'type' => Literal::class,
3826
                                'options' => [
3827
                                    'route' => '/favicon',
3828
                                    'defaults' => [
3829
                                        'controller' =>  '\LeadersLinked\Controller\MyPrivateNetworkController',
3830
                                        'action' => 'favicon'
3831
                                    ]
3832
                                ]
3833
                            ],
3834
                            'logo' => [
3835
                                'type' => Literal::class,
3836
                                'options' => [
3837
                                    'route' => '/logo',
3838
                                    'defaults' => [
3839
                                        'controller' =>  '\LeadersLinked\Controller\MyPrivateNetworkController',
3840
                                        'action' => 'logo'
3841
                                    ]
3842
                                ]
3843
                            ],
15831 efrain 3844
                            'moodle' => [
3845
                                'type' => Literal::class,
3846
                                'options' => [
3847
                                    'route' => '/moodle',
3848
                                    'defaults' => [
3849
                                        'controller' =>  '\LeadersLinked\Controller\MyPrivateNetworkController',
3850
                                        'action' => 'moodle'
3851
                                    ]
3852
                                ]
3853
                            ],
15607 anderson 3854
 
15442 efrain 3855
                        ]
3856
                    ],
15607 anderson 3857
 
15442 efrain 3858
                    'private-networks' => [
1 www 3859
                        'type' => Literal::class,
3860
                        'options' => [
15442 efrain 3861
                            'route' => '/private-networks',
1 www 3862
                            'defaults' => [
15442 efrain 3863
                                'controller' => '\LeadersLinked\Controller\PrivateNetworksController',
1 www 3864
                                'action' => 'index'
3865
                            ]
3866
                        ],
3867
                        'may_terminate' => true,
3868
                        'child_routes' => [
3869
                            'add' => [
3870
                                'type' => Literal::class,
3871
                                'options' => [
3872
                                    'route' => '/add',
3873
                                    'defaults' => [
15442 efrain 3874
                                        'controller' => '\LeadersLinked\Controller\PrivateNetworksController',
1 www 3875
                                        'action' => 'add'
3876
                                    ]
3877
                                ]
3878
                            ],
3879
                            'edit' => [
3880
                                'type' => Segment::class,
3881
                                'options' => [
3882
                                    'route' => '/edit/:id',
3883
                                    'constraints' => [
3884
                                        'id' => '[A-Za-z0-9\-]+\=*'
3885
                                    ],
3886
                                    'defaults' => [
15442 efrain 3887
                                        'controller' => '\LeadersLinked\Controller\PrivateNetworksController',
1 www 3888
                                        'action' => 'edit'
3889
                                    ]
3890
                                ]
3891
                            ],
3892
                            'delete' => [
3893
                                'type' => Segment::class,
3894
                                'options' => [
3895
                                    'route' => '/delete/:id',
3896
                                    'constraints' => [
3897
                                        'id' => '[A-Za-z0-9\-]+\=*'
3898
                                    ],
3899
                                    'defaults' => [
15442 efrain 3900
                                        'controller' => '\LeadersLinked\Controller\PrivateNetworksController',
1 www 3901
                                        'action' => 'delete'
3902
                                    ]
3903
                                ]
3904
                            ]
3905
                        ]
3906
                    ],
15442 efrain 3907
                    'company-sizes' => [
1 www 3908
                        'type' => Literal::class,
3909
                        'options' => [
15442 efrain 3910
                            'route' => '/company-sizes',
1 www 3911
                            'defaults' => [
15442 efrain 3912
                                'controller' => '\LeadersLinked\Controller\CompanySizeController',
1 www 3913
                                'action' => 'index'
3914
                            ]
3915
                        ],
3916
                        'may_terminate' => true,
3917
                        'child_routes' => [
3918
                            'add' => [
3919
                                'type' => Literal::class,
3920
                                'options' => [
3921
                                    'route' => '/add',
3922
                                    'defaults' => [
15442 efrain 3923
                                        'controller' => '\LeadersLinked\Controller\CompanySizeController',
1 www 3924
                                        'action' => 'add'
3925
                                    ]
3926
                                ]
3927
                            ],
3928
                            'edit' => [
3929
                                'type' => Segment::class,
3930
                                'options' => [
3931
                                    'route' => '/edit/:id',
3932
                                    'constraints' => [
3933
                                        'id' => '[A-Za-z0-9\-]+\=*'
3934
                                    ],
3935
                                    'defaults' => [
15442 efrain 3936
                                        'controller' => '\LeadersLinked\Controller\CompanySizeController',
1 www 3937
                                        'action' => 'edit'
3938
                                    ]
3939
                                ]
3940
                            ],
3941
                            'delete' => [
3942
                                'type' => Segment::class,
3943
                                'options' => [
3944
                                    'route' => '/delete/:id',
3945
                                    'constraints' => [
3946
                                        'id' => '[A-Za-z0-9\-]+\=*'
3947
                                    ],
3948
                                    'defaults' => [
15442 efrain 3949
                                        'controller' => '\LeadersLinked\Controller\CompanySizeController',
1 www 3950
                                        'action' => 'delete'
3951
                                    ]
3952
                                ]
3953
                            ]
3954
                        ]
3955
                    ],
15607 anderson 3956
 
3957
 
15460 efrain 3958
                    'countries' => [
3959
                        'type' => Literal::class,
3960
                        'options' => [
3961
                            'route' => '/countries',
3962
                            'defaults' => [
3963
                                'controller' => '\LeadersLinked\Controller\CountriesController',
3964
                                'action' => 'index'
3965
                            ]
3966
                        ],
3967
                        'may_terminate' => true,
3968
                        'child_routes' => [
3969
                            'add' => [
3970
                                'type' => Literal::class,
3971
                                'options' => [
3972
                                    'route' => '/add',
3973
                                    'defaults' => [
3974
                                        'controller' => '\LeadersLinked\Controller\CountriesController',
3975
                                        'action' => 'add'
3976
                                    ]
3977
                                ]
3978
                            ],
3979
                            'edit' => [
3980
                                'type' => Segment::class,
3981
                                'options' => [
3982
                                    'route' => '/edit/:id',
3983
                                    'constraints' => [
3984
                                        'id' => '[A-Za-z0-9\-]+\=*'
3985
                                    ],
3986
                                    'defaults' => [
3987
                                        'controller' => '\LeadersLinked\Controller\CountriesController',
3988
                                        'action' => 'edit'
3989
                                    ]
3990
                                ]
3991
                            ],
3992
                            'delete' => [
3993
                                'type' => Segment::class,
3994
                                'options' => [
3995
                                    'route' => '/delete/:id',
3996
                                    'constraints' => [
3997
                                        'id' => '[A-Za-z0-9\-]+\=*'
3998
                                    ],
3999
                                    'defaults' => [
4000
                                        'controller' => '\LeadersLinked\Controller\CountriesController',
4001
                                        'action' => 'delete'
4002
                                    ]
4003
                                ]
4004
                            ]
4005
                        ]
4006
                    ],
15607 anderson 4007
 
4008
 
15442 efrain 4009
                    'degrees' => [
1 www 4010
                        'type' => Literal::class,
4011
                        'options' => [
15442 efrain 4012
                            'route' => '/degrees',
1 www 4013
                            'defaults' => [
15442 efrain 4014
                                'controller' => '\LeadersLinked\Controller\DegreeController',
1 www 4015
                                'action' => 'index'
4016
                            ]
4017
                        ],
4018
                        'may_terminate' => true,
4019
                        'child_routes' => [
4020
                            'add' => [
4021
                                'type' => Literal::class,
4022
                                'options' => [
4023
                                    'route' => '/add',
4024
                                    'defaults' => [
15442 efrain 4025
                                        'controller' => '\LeadersLinked\Controller\DegreeController',
1 www 4026
                                        'action' => 'add'
4027
                                    ]
4028
                                ]
4029
                            ],
4030
                            'edit' => [
4031
                                'type' => Segment::class,
4032
                                'options' => [
4033
                                    'route' => '/edit/:id',
4034
                                    'constraints' => [
4035
                                        'id' => '[A-Za-z0-9\-]+\=*'
4036
                                    ],
4037
                                    'defaults' => [
15442 efrain 4038
                                        'controller' => '\LeadersLinked\Controller\DegreeController',
1 www 4039
                                        'action' => 'edit'
4040
                                    ]
4041
                                ]
4042
                            ],
4043
                            'delete' => [
4044
                                'type' => Segment::class,
4045
                                'options' => [
4046
                                    'route' => '/delete/:id',
4047
                                    'constraints' => [
4048
                                        'id' => '[A-Za-z0-9\-]+\=*'
4049
                                    ],
4050
                                    'defaults' => [
15442 efrain 4051
                                        'controller' => '\LeadersLinked\Controller\DegreeController',
1 www 4052
                                        'action' => 'delete'
4053
                                    ]
4054
                                ]
4055
                            ]
4056
                        ]
4057
                    ],
4058
                    'group-types' => [
4059
                        'type' => Literal::class,
4060
                        'options' => [
16796 efrain 4061
                            'route' => '/group-types',
1 www 4062
                            'defaults' => [
4063
                                'controller' => '\LeadersLinked\Controller\GroupTypeController',
4064
                                'action' => 'index'
4065
                            ]
4066
                        ],
4067
                        'may_terminate' => true,
4068
                        'child_routes' => [
4069
                            'add' => [
4070
                                'type' => Literal::class,
4071
                                'options' => [
4072
                                    'route' => '/add',
4073
                                    'defaults' => [
4074
                                        'controller' => '\LeadersLinked\Controller\GroupTypeController',
4075
                                        'action' => 'add'
4076
                                    ]
4077
                                ]
4078
                            ],
4079
                            'edit' => [
4080
                                'type' => Segment::class,
4081
                                'options' => [
4082
                                    'route' => '/edit/:id',
4083
                                    'constraints' => [
4084
                                        'id' => '[A-Za-z0-9\-]+\=*'
4085
                                    ],
4086
                                    'defaults' => [
4087
                                        'controller' => '\LeadersLinked\Controller\GroupTypeController',
4088
                                        'action' => 'edit'
4089
                                    ]
4090
                                ]
4091
                            ],
4092
                            'delete' => [
4093
                                'type' => Segment::class,
4094
                                'options' => [
4095
                                    'route' => '/delete/:id',
4096
                                    'constraints' => [
4097
                                        'id' => '[A-Za-z0-9\-]+\=*'
4098
                                    ],
4099
                                    'defaults' => [
4100
                                        'controller' => '\LeadersLinked\Controller\GroupTypeController',
4101
                                        'action' => 'delete'
4102
                                    ]
4103
                                ]
4104
                            ]
4105
                        ]
4106
                    ],
15442 efrain 4107
                    'industries' => [
1 www 4108
                        'type' => Literal::class,
4109
                        'options' => [
15442 efrain 4110
                            'route' => '/industries',
1 www 4111
                            'defaults' => [
15442 efrain 4112
                                'controller' => '\LeadersLinked\Controller\IndustryController',
1 www 4113
                                'action' => 'index'
4114
                            ]
4115
                        ],
4116
                        'may_terminate' => true,
4117
                        'child_routes' => [
4118
                            'add' => [
4119
                                'type' => Literal::class,
4120
                                'options' => [
4121
                                    'route' => '/add',
4122
                                    'defaults' => [
15442 efrain 4123
                                        'controller' => '\LeadersLinked\Controller\IndustryController',
1 www 4124
                                        'action' => 'add'
4125
                                    ]
4126
                                ]
4127
                            ],
4128
                            'edit' => [
4129
                                'type' => Segment::class,
4130
                                'options' => [
4131
                                    'route' => '/edit/:id',
4132
                                    'constraints' => [
4133
                                        'id' => '[A-Za-z0-9\-]+\=*'
4134
                                    ],
4135
                                    'defaults' => [
15442 efrain 4136
                                        'controller' => '\LeadersLinked\Controller\IndustryController',
1 www 4137
                                        'action' => 'edit'
4138
                                    ]
4139
                                ]
4140
                            ],
4141
                            'delete' => [
4142
                                'type' => Segment::class,
4143
                                'options' => [
4144
                                    'route' => '/delete/:id',
4145
                                    'constraints' => [
4146
                                        'id' => '[A-Za-z0-9\-]+\=*'
4147
                                    ],
4148
                                    'defaults' => [
15442 efrain 4149
                                        'controller' => '\LeadersLinked\Controller\IndustryController',
1 www 4150
                                        'action' => 'delete'
4151
                                    ]
4152
                                ]
4153
                            ]
4154
                        ]
4155
                    ],
15442 efrain 4156
                    'group-types' => [
28 efrain 4157
                        'type' => Literal::class,
4158
                        'options' => [
15442 efrain 4159
                            'route' => '/group-types',
28 efrain 4160
                            'defaults' => [
15442 efrain 4161
                                'controller' => '\LeadersLinked\Controller\GroupTypeController',
28 efrain 4162
                                'action' => 'index'
4163
                            ]
4164
                        ],
4165
                        'may_terminate' => true,
4166
                        'child_routes' => [
4167
                            'add' => [
4168
                                'type' => Literal::class,
4169
                                'options' => [
4170
                                    'route' => '/add',
4171
                                    'defaults' => [
15442 efrain 4172
                                        'controller' => '\LeadersLinked\Controller\GroupTypeController',
28 efrain 4173
                                        'action' => 'add'
4174
                                    ]
4175
                                ]
4176
                            ],
4177
                            'edit' => [
4178
                                'type' => Segment::class,
4179
                                'options' => [
4180
                                    'route' => '/edit/:id',
4181
                                    'constraints' => [
4182
                                        'id' => '[A-Za-z0-9\-]+\=*'
4183
                                    ],
4184
                                    'defaults' => [
15442 efrain 4185
                                        'controller' => '\LeadersLinked\Controller\GroupTypeController',
28 efrain 4186
                                        'action' => 'edit'
4187
                                    ]
4188
                                ]
4189
                            ],
4190
                            'delete' => [
4191
                                'type' => Segment::class,
4192
                                'options' => [
4193
                                    'route' => '/delete/:id',
4194
                                    'constraints' => [
4195
                                        'id' => '[A-Za-z0-9\-]+\=*'
4196
                                    ],
4197
                                    'defaults' => [
15442 efrain 4198
                                        'controller' => '\LeadersLinked\Controller\GroupTypeController',
28 efrain 4199
                                        'action' => 'delete'
4200
                                    ]
4201
                                ]
15442 efrain 4202
                            ]
4203
                        ]
4204
                    ],
4205
                    'job-categories' => [
4206
                        'type' => Literal::class,
4207
                        'options' => [
4208
                            'route' => '/job-categories',
4209
                            'defaults' => [
4210
                                'controller' => '\LeadersLinked\Controller\JobCategoryController',
4211
                                'action' => 'index'
4212
                            ]
4213
                        ],
4214
                        'may_terminate' => true,
4215
                        'child_routes' => [
4216
                            'add' => [
4217
                                'type' => Literal::class,
4218
                                'options' => [
4219
                                    'route' => '/add',
4220
                                    'defaults' => [
4221
                                        'controller' => '\LeadersLinked\Controller\JobCategoryController',
4222
                                        'action' => 'add'
4223
                                    ]
4224
                                ]
559 geraldo 4225
                            ],
15442 efrain 4226
                            'edit' => [
559 geraldo 4227
                                'type' => Segment::class,
4228
                                'options' => [
15442 efrain 4229
                                    'route' => '/edit/:id',
559 geraldo 4230
                                    'constraints' => [
4231
                                        'id' => '[A-Za-z0-9\-]+\=*'
4232
                                    ],
4233
                                    'defaults' => [
15442 efrain 4234
                                        'controller' => '\LeadersLinked\Controller\JobCategoryController',
4235
                                        'action' => 'edit'
559 geraldo 4236
                                    ]
4237
                                ]
4238
                            ],
15442 efrain 4239
                            'delete' => [
4240
                                'type' => Segment::class,
846 geraldo 4241
                                'options' => [
15442 efrain 4242
                                    'route' => '/delete/:id',
4243
                                    'constraints' => [
4244
                                        'id' => '[A-Za-z0-9\-]+\=*'
4245
                                    ],
846 geraldo 4246
                                    'defaults' => [
15442 efrain 4247
                                        'controller' => '\LeadersLinked\Controller\JobCategoryController',
4248
                                        'action' => 'delete'
846 geraldo 4249
                                    ]
4250
                                ]
15442 efrain 4251
                            ]
28 efrain 4252
                        ]
4253
                    ],
15607 anderson 4254
 
1 www 4255
                    'email-templates' => [
4256
                        'type' => Literal::class,
4257
                        'options' => [
4258
                            'route' => '/email-templates',
4259
                            'defaults' => [
4260
                                'controller' => '\LeadersLinked\Controller\EmailTemplateController',
4261
                                'action' => 'index'
4262
                            ]
4263
                        ],
4264
                        'may_terminate' => true,
4265
                        'child_routes' => [
4266
                            'edit' => [
4267
                                'type' => Segment::class,
4268
                                'options' => [
4269
                                    'route' => '/edit/:id',
4270
                                    'constraints' => [
4271
                                        'id' => '[A-Za-z0-9\-]+\=*'
4272
                                    ],
4273
                                    'defaults' => [
4274
                                        'controller' => '\LeadersLinked\Controller\EmailTemplateController',
4275
                                        'action' => 'edit'
4276
                                    ]
4277
                                ]
4278
                            ],
4279
                        ]
4280
                    ],
15607 anderson 4281
 
1 www 4282
                    'push-templates' => [
4283
                        'type' => Literal::class,
4284
                        'options' => [
4285
                            'route' => '/push-templates',
4286
                            'defaults' => [
4287
                                'controller' => '\LeadersLinked\Controller\PushTemplateController',
4288
                                'action' => 'index'
4289
                            ]
4290
                        ],
4291
                        'may_terminate' => true,
4292
                        'child_routes' => [
4293
                            'edit' => [
4294
                                'type' => Segment::class,
4295
                                'options' => [
4296
                                    'route' => '/edit/:id',
4297
                                    'constraints' => [
4298
                                        'id' => '[A-Za-z0-9\-]+\=*'
4299
                                    ],
4300
                                    'defaults' => [
4301
                                        'controller' => '\LeadersLinked\Controller\PushTemplateController',
4302
                                        'action' => 'edit'
4303
                                    ]
4304
                                ]
4305
                            ],
15355 efrain 4306
                            'import' => [
4307
                                'type' => Literal::class,
4308
                                'options' => [
4309
                                    'route' => '/import',
4310
                                    'defaults' => [
4311
                                        'controller' => '\LeadersLinked\Controller\PushTemplateController',
4312
                                        'action' => 'import'
4313
                                    ]
4314
                                ]
4315
                            ],
1 www 4316
                        ]
4317
                    ],
4318
                    'skills' => [
4319
                        'type' => Literal::class,
4320
                        'options' => [
4321
                            'route' => '/skills',
4322
                            'defaults' => [
4323
                                'controller' => '\LeadersLinked\Controller\SkillController',
4324
                                'action' => 'index'
4325
                            ]
4326
                        ],
4327
                        'may_terminate' => true,
4328
                        'child_routes' => [
4329
                            'add' => [
4330
                                'type' => Literal::class,
4331
                                'options' => [
4332
                                    'route' => '/add',
4333
                                    'defaults' => [
4334
                                        'controller' => '\LeadersLinked\Controller\SkillController',
4335
                                        'action' => 'add'
4336
                                    ]
4337
                                ]
4338
                            ],
4339
                            'edit' => [
4340
                                'type' => Segment::class,
4341
                                'options' => [
4342
                                    'route' => '/edit/:id',
4343
                                    'constraints' => [
4344
                                        'id' => '[A-Za-z0-9\-]+\=*'
4345
                                    ],
4346
                                    'defaults' => [
4347
                                        'controller' => '\LeadersLinked\Controller\SkillController',
4348
                                        'action' => 'edit'
4349
                                    ]
4350
                                ]
4351
                            ],
4352
                            'delete' => [
4353
                                'type' => Segment::class,
4354
                                'options' => [
4355
                                    'route' => '/delete/:id',
4356
                                    'constraints' => [
4357
                                        'id' => '[A-Za-z0-9\-]+\=*'
4358
                                    ],
4359
                                    'defaults' => [
4360
                                        'controller' => '\LeadersLinked\Controller\SkillController',
4361
                                        'action' => 'delete'
4362
                                    ]
4363
                                ]
4364
                            ]
4365
                        ]
4366
                    ],
15392 efrain 4367
                    'aptitudes' => [
4368
                        'type' => Literal::class,
4369
                        'options' => [
4370
                            'route' => '/aptitudes',
4371
                            'defaults' => [
4372
                                'controller' => '\LeadersLinked\Controller\AptitudeController',
4373
                                'action' => 'index'
4374
                            ]
4375
                        ],
4376
                        'may_terminate' => true,
4377
                        'child_routes' => [
4378
                            'add' => [
4379
                                'type' => Literal::class,
4380
                                'options' => [
4381
                                    'route' => '/add',
4382
                                    'defaults' => [
4383
                                        'controller' => '\LeadersLinked\Controller\AptitudeController',
4384
                                        'action' => 'add'
4385
                                    ]
4386
                                ]
4387
                            ],
4388
                            'edit' => [
4389
                                'type' => Segment::class,
4390
                                'options' => [
4391
                                    'route' => '/edit/:id',
4392
                                    'constraints' => [
4393
                                        'id' => '[A-Za-z0-9\-]+\=*'
4394
                                    ],
4395
                                    'defaults' => [
4396
                                        'controller' => '\LeadersLinked\Controller\AptitudeController',
4397
                                        'action' => 'edit'
4398
                                    ]
4399
                                ]
4400
                            ],
4401
                            'delete' => [
4402
                                'type' => Segment::class,
4403
                                'options' => [
4404
                                    'route' => '/delete/:id',
4405
                                    'constraints' => [
4406
                                        'id' => '[A-Za-z0-9\-]+\=*'
4407
                                    ],
4408
                                    'defaults' => [
4409
                                        'controller' => '\LeadersLinked\Controller\AptitudeController',
4410
                                        'action' => 'delete'
4411
                                    ]
4412
                                ]
4413
                            ]
4414
                        ]
4415
                    ],
4416
                    'hobbies-and-interests' => [
4417
                        'type' => Literal::class,
4418
                        'options' => [
4419
                            'route' => '/hobbies-and-interests',
4420
                            'defaults' => [
4421
                                'controller' => '\LeadersLinked\Controller\HobbyAndInterestController',
4422
                                'action' => 'index'
4423
                            ]
4424
                        ],
4425
                        'may_terminate' => true,
4426
                        'child_routes' => [
4427
                            'add' => [
4428
                                'type' => Literal::class,
4429
                                'options' => [
4430
                                    'route' => '/add',
4431
                                    'defaults' => [
4432
                                        'controller' => '\LeadersLinked\Controller\HobbyAndInterestController',
4433
                                        'action' => 'add'
4434
                                    ]
4435
                                ]
4436
                            ],
4437
                            'edit' => [
4438
                                'type' => Segment::class,
4439
                                'options' => [
4440
                                    'route' => '/edit/:id',
4441
                                    'constraints' => [
4442
                                        'id' => '[A-Za-z0-9\-]+\=*'
4443
                                    ],
4444
                                    'defaults' => [
4445
                                        'controller' => '\LeadersLinked\Controller\HobbyAndInterestController',
4446
                                        'action' => 'edit'
4447
                                    ]
4448
                                ]
4449
                            ],
4450
                            'delete' => [
4451
                                'type' => Segment::class,
4452
                                'options' => [
4453
                                    'route' => '/delete/:id',
4454
                                    'constraints' => [
4455
                                        'id' => '[A-Za-z0-9\-]+\=*'
4456
                                    ],
4457
                                    'defaults' => [
4458
                                        'controller' => '\LeadersLinked\Controller\HobbyAndInterestController',
4459
                                        'action' => 'delete'
4460
                                    ]
4461
                                ]
4462
                            ]
4463
                        ]
4464
                    ],
1089 geraldo 4465
                ]
1 www 4466
            ],
15607 anderson 4467
            /*         * * FIN SETTINGS ** */
4468
 
1333 efrain 4469
            'own-professional-network' => [
4470
                'type' => Literal::class,
4471
                'options' => [
4472
                    'route' => '/own-professional-network',
4473
                    'defaults' => [
4474
                        'controller' => '\LeadersLinked\Controller\UnknownController',
4475
                        'action' => 'index'
4476
                    ]
4477
                ],
4478
                'may_terminate' => true,
15607 anderson 4479
                'child_routes' => []
1333 efrain 4480
            ],
15607 anderson 4481
 
1333 efrain 4482
            'organizational-design' => [
4483
                'type' => Literal::class,
4484
                'options' => [
4485
                    'route' => '/organizational-design',
4486
                    'defaults' => [
4487
                        'controller' => '\LeadersLinked\Controller\UnknownController',
4488
                        'action' => 'index'
4489
                    ]
4490
                ],
4491
                'may_terminate' => true,
15607 anderson 4492
                'child_routes' => []
1333 efrain 4493
            ],
15607 anderson 4494
 
16766 efrain 4495
            'planning' => [
1333 efrain 4496
                'type' => Literal::class,
4497
                'options' => [
16766 efrain 4498
                    'route' => '/planning',
1333 efrain 4499
                    'defaults' => [
16766 efrain 4500
                        'controller' => '\LeadersLinked\Controller\PlanningController',
1951 nelberth 4501
                        'action' => 'index'
1333 efrain 4502
                    ]
4503
                ],
4504
                'may_terminate' => true,
4505
                'child_routes' => [
16785 efrain 4506
                    'periods' => [
4507
                        'type' => Literal::class,
4508
                        'options' => [
4509
                            'route' => '/periods',
4510
                            'defaults' => [
4511
                                'controller' => '\LeadersLinked\Controller\PlanningPeriodController',
4512
                                'action' => 'index'
4513
                            ]
4514
                        ],
4515
                        'may_terminate' => true,
4516
                        'child_routes' => [
4517
                            'add' => [
4518
                                'type' => Literal::class,
4519
                                'options' => [
4520
                                    'route' => '/add',
4521
                                    'defaults' => [
4522
                                        'controller' => '\LeadersLinked\Controller\PlanningPeriodController',
4523
                                        'action' => 'add'
4524
                                    ]
4525
                                ]
4526
                            ],
4527
                            'edit' => [
4528
                                'type' => Segment::class,
4529
                                'options' => [
4530
                                    'route' => '/edit/:id',
4531
                                    'constraints' => [
4532
                                        'id' => '[A-Za-z0-9\-]+\=*'
4533
                                    ],
4534
                                    'defaults' => [
4535
                                        'controller' => '\LeadersLinked\Controller\PlanningPeriodController',
4536
                                        'action' => 'edit'
4537
                                    ]
4538
                                ]
4539
                            ],
4540
                            'delete' => [
4541
                                'type' => Segment::class,
4542
                                'options' => [
4543
                                    'route' => '/delete/:id',
4544
                                    'constraints' => [
4545
                                        'id' => '[A-Za-z0-9\-]+\=*'
4546
                                    ],
4547
                                    'defaults' => [
4548
                                        'controller' => '\LeadersLinked\Controller\PlanningPeriodController',
4549
                                        'action' => 'delete'
4550
                                    ]
4551
                                ]
4552
                            ],
4553
                        ]
4554
                    ],
4555
 
2238 nelberth 4556
                    'objectives' => [
2250 nelberth 4557
                        'type' => Literal::class,
1914 nelberth 4558
                        'options' => [
2248 nelberth 4559
                            'route' => '/objectives',
1914 nelberth 4560
                            'defaults' => [
16785 efrain 4561
                                'controller' => '\LeadersLinked\Controller\PlanningObjectiveController',
2238 nelberth 4562
                                'action' => 'index'
1914 nelberth 4563
                            ]
2251 nelberth 4564
                        ],
15607 anderson 4565
 
2251 nelberth 4566
                        'may_terminate' => true,
4567
                        'child_routes' => [
2324 nelberth 4568
 
2251 nelberth 4569
                            'add' => [
16785 efrain 4570
                                'type' => Segment::class,
2251 nelberth 4571
                                'options' => [
16785 efrain 4572
                                    'route' => '/add/[:period_id]',
4573
                                    'constraints' => [
4574
                                        'period_id' => '[A-Za-z0-9\-]+\=*'
4575
                                    ],
2251 nelberth 4576
                                    'defaults' => [
16785 efrain 4577
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectiveController',
2251 nelberth 4578
                                        'action' => 'add'
4579
                                    ]
4580
                                ]
4581
                            ],
4582
                            'edit' => [
4583
                                'type' => Segment::class,
4584
                                'options' => [
4585
                                    'route' => '/edit/:id',
4586
                                    'constraints' => [
4587
                                        'id' => '[A-Za-z0-9\-]+\=*'
4588
                                    ],
4589
                                    'defaults' => [
16785 efrain 4590
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectiveController',
2251 nelberth 4591
                                        'action' => 'edit'
4592
                                    ]
4593
                                ]
4594
                            ],
4595
                            'delete' => [
4596
                                'type' => Segment::class,
4597
                                'options' => [
4598
                                    'route' => '/delete/:id',
4599
                                    'constraints' => [
4600
                                        'id' => '[A-Za-z0-9\-]+\=*'
4601
                                    ],
4602
                                    'defaults' => [
16766 efrain 4603
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectiveController',
2251 nelberth 4604
                                        'action' => 'delete'
4605
                                    ]
4606
                                ]
2324 nelberth 4607
                            ],
16785 efrain 4608
                            'analysis' => [
3462 nelberth 4609
                                'type' => Segment::class,
4610
                                'options' => [
16785 efrain 4611
                                    'route' => '/analysis/:id',
3462 nelberth 4612
                                    'constraints' => [
4613
                                        'id' => '[A-Za-z0-9\-]+\=*'
4614
                                    ],
4615
                                    'defaults' => [
16785 efrain 4616
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectiveController',
4617
                                        'action' => 'analysis'
3462 nelberth 4618
                                    ]
4619
                                ]
15607 anderson 4620
                            ],
16785 efrain 4621
                            'full' => [
4622
                                'type' => Segment::class,
3986 nelberth 4623
                                'options' => [
16785 efrain 4624
                                    'route' => '/report-full/:id',
4625
                                    'constraints' => [
4626
                                        'id' => '[A-Za-z0-9\-]+\=*'
4627
                                    ],
3986 nelberth 4628
                                    'defaults' => [
16785 efrain 4629
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectiveController',
4630
                                        'action' => 'full'
3986 nelberth 4631
                                    ]
4632
                                ]
3462 nelberth 4633
                            ],
16785 efrain 4634
                            'matrix' => [
4635
                                'type' => Segment::class,
4041 nelberth 4636
                                'options' => [
16785 efrain 4637
                                    'route' => '/matrix/:id',
4638
                                    'constraints' => [
4639
                                        'id' => '[A-Za-z0-9\-]+\=*'
4640
                                    ],
4041 nelberth 4641
                                    'defaults' => [
16785 efrain 4642
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectiveController',
4643
                                        'action' => 'matrix'
4041 nelberth 4644
                                    ]
4645
                                ]
4646
                            ],
16785 efrain 4647
 
4648
                        ]
4649
                    ],
4650
 
4651
                    'goals' => [
4652
                        'type' => Literal::class,
4653
                        'options' => [
4654
                            'route' => '/goals',
4655
                            'defaults' => [
4656
                                'controller' => '\LeadersLinked\Controller\PlanningGoalController',
4657
                                'action' => 'index'
4658
                            ]
4659
                        ],
4660
 
4661
                        'may_terminate' => true,
4662
                        'child_routes' => [
4663
                            'add' => [
2336 nelberth 4664
                                'type' => Segment::class,
2324 nelberth 4665
                                'options' => [
16785 efrain 4666
                                    'route' => '/add/:objective_id',
2324 nelberth 4667
                                    'constraints' => [
11092 nelberth 4668
                                        'objective_id' => '[A-Za-z0-9\-]+\=*'
2324 nelberth 4669
                                    ],
4670
                                    'defaults' => [
16785 efrain 4671
                                        'controller' => '\LeadersLinked\Controller\PlanningGoalController',
4672
                                        'action' => 'add'
2324 nelberth 4673
                                    ]
16785 efrain 4674
                                ]
4675
                            ],
4676
                            'edit' => [
4677
                                'type' => Segment::class,
4678
                                'options' => [
4679
                                    'route' => '/edit/:id',
4680
                                    'constraints' => [
4681
                                        'id' => '[A-Za-z0-9\-]+\=*'
2370 nelberth 4682
                                    ],
16785 efrain 4683
                                    'defaults' => [
4684
                                        'controller' => '\LeadersLinked\Controller\PlanningGoalController',
4685
                                        'action' => 'edit'
4686
                                    ]
4687
                                ]
4688
                            ],
4689
                            'delete' => [
4690
                                'type' => Segment::class,
4691
                                'options' => [
4692
                                    'route' => '/delete/:id',
4693
                                    'constraints' => [
4694
                                        'id' => '[A-Za-z0-9\-]+\=*'
2370 nelberth 4695
                                    ],
16785 efrain 4696
                                    'defaults' => [
4697
                                        'controller' => '\LeadersLinked\Controller\PlanningGoalController',
4698
                                        'action' => 'delete'
4699
                                    ]
4700
                                ]
4701
                            ],
4702
                        ]
4703
                    ],
4704
 
4705
                    'tasks' => [
4706
                        'type' => Literal::class,
4707
                        'options' => [
4708
                            'route' => '/tasks',
4709
                            'defaults' => [
4710
                                'controller' => '\LeadersLinked\Controller\PlanningTaskController',
4711
                                'action' => 'index'
4712
                            ]
4713
                        ],
4714
 
4715
                        'may_terminate' => true,
4716
                        'child_routes' => [
4717
                            'add' => [
4718
                                'type' => Segment::class,
4719
                                'options' => [
4720
                                    'route' => '/add/:goal_id',
4721
                                    'constraints' => [
4722
                                        'goal_id' => '[A-Za-z0-9\-]+\=*',
2370 nelberth 4723
                                    ],
16785 efrain 4724
                                    'defaults' => [
4725
                                        'controller' => '\LeadersLinked\Controller\PlanningTaskController',
4726
                                        'action' => 'add'
4727
                                    ]
4728
                                ]
4729
                            ],
4730
                            'edit' => [
4731
                                'type' => Segment::class,
4732
                                'options' => [
4733
                                    'route' => '/edit/:id',
4734
                                    'constraints' => [
4735
                                        'id' => '[A-Za-z0-9\-]+\=*'
15607 anderson 4736
                                    ],
16785 efrain 4737
                                    'defaults' => [
4738
                                        'controller' => '\LeadersLinked\Controller\PlanningTaskController',
4739
                                        'action' => 'edit'
4740
                                    ]
15607 anderson 4741
                                ]
4742
                            ],
16785 efrain 4743
                            'delete' => [
4744
                                'type' => Segment::class,
4745
                                'options' => [
4746
                                    'route' => '/delete/:id',
4747
                                    'constraints' => [
4748
                                        'id' => '[A-Za-z0-9\-]+\=*'
4749
                                    ],
4750
                                    'defaults' => [
4751
                                        'controller' => '\LeadersLinked\Controller\PlanningTaskController',
4752
                                        'action' => 'delete'
4753
                                    ]
4754
                                ]
4755
                            ],
4756
                            'view' => [
4757
                                'type' => Segment::class,
4758
                                'options' => [
4759
                                    'route' => '/view/:id',
4760
                                    'constraints' => [
4761
                                        'id' => '[A-Za-z0-9\-]+\=*'
4762
                                    ],
4763
                                    'defaults' => [
4764
                                        'controller' => '\LeadersLinked\Controller\PlanningTaskController',
4765
                                        'action' => 'view'
4766
                                    ]
4767
                                ]
4768
                            ],
1914 nelberth 4769
                        ]
16785 efrain 4770
                    ],
1333 efrain 4771
                ]
4772
            ],
15607 anderson 4773
 
4774
 
15401 efrain 4775
            'discovery-contacts' => [
4776
                'type' => Literal::class,
4777
                'options' => [
4778
                    'route' => '/discovery-contacts',
4779
                    'defaults' => [
4780
                        'controller' => '\LeadersLinked\Controller\DiscoveryContactController',
4781
                        'action' => 'index'
4782
                    ]
4783
                ],
4784
                'may_terminate' => true,
4785
                'child_routes' => [
4786
                    'add' => [
4787
                        'type' => Literal::class,
4788
                        'options' => [
4789
                            'route' => '/add',
4790
                            'defaults' => [
4791
                                'controller' => '\LeadersLinked\Controller\DiscoveryContactController',
4792
                                'action' => 'add'
4793
                            ]
4794
                        ]
4795
                    ],
4796
                    'edit' => [
4797
                        'type' => Segment::class,
4798
                        'options' => [
4799
                            'route' => '/edit/:id',
4800
                            'constraints' => [
4801
                                'id' => '[A-Za-z0-9\-]+\=*'
4802
                            ],
4803
                            'defaults' => [
4804
                                'controller' => '\LeadersLinked\Controller\DiscoveryContactController',
4805
                                'action' => 'edit'
4806
                            ]
4807
                        ]
4808
                    ],
4809
                    'delete' => [
4810
                        'type' => Segment::class,
4811
                        'options' => [
4812
                            'route' => '/delete/:id',
4813
                            'constraints' => [
4814
                                'id' => '[A-Za-z0-9\-]+\=*'
4815
                            ],
4816
                            'defaults' => [
4817
                                'controller' => '\LeadersLinked\Controller\DiscoveryContactController',
4818
                                'action' => 'delete'
4819
                            ]
4820
                        ]
4821
                    ],
4822
                    'view' => [
4823
                        'type' => Segment::class,
4824
                        'options' => [
4825
                            'route' => '/view/:id',
4826
                            'constraints' => [
4827
                                'id' => '[A-Za-z0-9\-]+\=*'
4828
                            ],
4829
                            'defaults' => [
4830
                                'controller' => '\LeadersLinked\Controller\DiscoveryContactController',
4831
                                'action' => 'view'
4832
                            ]
4833
                        ]
4834
                    ],
15546 efrain 4835
                    'upload' => [
4836
                        'type' => Segment::class,
4837
                        'options' => [
4838
                            'route' => '/upload',
4839
                            'defaults' => [
4840
                                'controller' => '\LeadersLinked\Controller\DiscoveryContactController',
4841
                                'action' => 'upload'
4842
                            ]
4843
                        ]
4844
                    ],
15634 anderson 4845
                    'interaction-types' => [
4846
                        'type' => Literal::class,
4847
                        'options' => [
4848
                            'route' => '/interaction-types',
4849
                            'defaults' => [
4850
                                'controller' => '\LeadersLinked\Controller\DiscoveryContactInteractionTypeController',
4851
                                'action' => 'index'
4852
                            ]
4853
                        ],
4854
                        'may_terminate' => true,
4855
                        'child_routes' => [
4856
                            'add' => [
4857
                                'type' => Literal::class,
4858
                                'options' => [
4859
                                    'route' => '/add',
4860
                                    'defaults' => [
4861
                                        'controller' => '\LeadersLinked\Controller\DiscoveryContactInteractionTypeController',
4862
                                        'action' => 'add'
4863
                                    ]
4864
                                ]
4865
                            ],
4866
                            'edit' => [
4867
                                'type' => Segment::class,
4868
                                'options' => [
4869
                                    'route' => '/edit/:id',
4870
                                    'constraints' => [
4871
                                        'id' => '[A-Za-z0-9\-]+\=*'
4872
                                    ],
4873
                                    'defaults' => [
4874
                                        'controller' => '\LeadersLinked\Controller\DiscoveryContactInteractionTypeController',
4875
                                        'action' => 'edit'
4876
                                    ]
4877
                                ]
4878
                            ],
4879
                            'delete' => [
4880
                                'type' => Segment::class,
4881
                                'options' => [
4882
                                    'route' => '/delete/:id',
4883
                                    'constraints' => [
4884
                                        'id' => '[A-Za-z0-9\-]+\=*'
4885
                                    ],
4886
                                    'defaults' => [
4887
                                        'controller' => '\LeadersLinked\Controller\DiscoveryContactInteractionTypeController',
4888
                                        'action' => 'delete'
4889
                                    ]
4890
                                ]
4891
                            ],
15401 efrain 4892
 
15607 anderson 4893
 
4894
 
15634 anderson 4895
                        ]
4896
                    ],
15401 efrain 4897
                    'interactions' => [
4898
                        'type' => Segment::class,
4899
                        'options' => [
4900
                            'route' => '/interactions/:id',
4901
                            'constraints' => [
4902
                                'id' => '[A-Za-z0-9\-]+\=*'
4903
                            ],
4904
                            'defaults' => [
4905
                                'controller' => '\LeadersLinked\Controller\DiscoveryContactInteractionController',
4906
                                'action' => 'index'
4907
                            ]
4908
                        ],
4909
                        'may_terminate' => true,
4910
                        'child_routes' => [
4911
                            'add' => [
4912
                                'type' => Segment::class,
4913
                                'options' => [
4914
                                    'route' => '/add',
4915
                                    'defaults' => [
4916
                                        'controller' => '\LeadersLinked\Controller\DiscoveryContactInteractionController',
4917
                                        'action' => 'add'
4918
                                    ]
4919
                                ]
4920
                            ],
4921
                            'delete' => [
4922
                                'type' => Segment::class,
4923
                                'options' => [
4924
                                    'route' => '/delete/:interaction',
4925
                                    'constraints' => [
4926
                                        'interaction' => '[A-Za-z0-9\-]+\=*'
4927
                                    ],
4928
                                    'defaults' => [
4929
                                        'controller' => '\LeadersLinked\Controller\DiscoveryContactInteractionController',
4930
                                        'action' => 'delete'
4931
                                    ]
4932
                                ]
4933
                            ],
15607 anderson 4934
 
4935
 
4936
 
15401 efrain 4937
                        ]
4938
                    ],
4939
                    'logs' => [
17003 efrain 4940
                        'type' => Segment::class,
15401 efrain 4941
                        'options' => [
4942
                            'route' => '/log/:id',
4943
                            'constraints' => [
4944
                                'id' => '[A-Za-z0-9\-]+\=*'
4945
                            ],
4946
                            'defaults' => [
4947
                                'controller' => '\LeadersLinked\Controller\DiscoveryContactLogController',
4948
                                'action' => 'index'
4949
                            ]
4950
                        ],
4951
                        'may_terminate' => true,
15607 anderson 4952
                        'child_routes' => []
15401 efrain 4953
                    ],
15607 anderson 4954
 
16758 efrain 4955
 
15637 anderson 4956
                    'progress-by-day' => [
16758 efrain 4957
                        'type' => Literal::class,
15637 anderson 4958
                        'options' => [
16758 efrain 4959
                            'route' => '/progress-by-day',
15637 anderson 4960
                            'defaults' => [
16758 efrain 4961
                                'controller' => '\LeadersLinked\Controller\DiscoveryContactProgressController',
15637 anderson 4962
                                'action'     => 'index',
4963
                            ],
4964
                        ],
16758 efrain 4965
                        'may_terminate' => true,
4966
                        'child_routes' => [
4967
                            'download' => [
4968
                                'type' => Literal::class,
4969
                                'options' => [
4970
                                    'route' => '/download',
4971
                                    'defaults' => [
4972
                                        'controller' => '\LeadersLinked\Controller\DiscoveryContactProgressController',
4973
                                        'action'     => 'download',
4974
                                    ],
4975
                                ],
4976
                            ],
4977
                        ]
15637 anderson 4978
                    ],
16758 efrain 4979
 
16971 efrain 4980
 
4981
                    'progress-by-day-and-user' => [
4982
                        'type' => Literal::class,
4983
                        'options' => [
4984
                            'route' => '/progress-by-day-and-user',
4985
                            'defaults' => [
4986
                                'controller' => '\LeadersLinked\Controller\DiscoveryContactProgressUserController',
4987
                                'action'     => 'index',
4988
                            ],
4989
                        ],
4990
                        'may_terminate' => true,
4991
                        'child_routes' => [
4992
                            'download' => [
4993
                                'type' => Literal::class,
4994
                                'options' => [
4995
                                    'route' => '/download',
4996
                                    'defaults' => [
4997
                                        'controller' => '\LeadersLinked\Controller\DiscoveryContactProgressUserController',
4998
                                        'action'     => 'download',
4999
                                    ],
5000
                                ],
5001
                            ],
5002
                        ]
5003
                    ],
5004
 
5005
 
5006
 
5007
 
5008
 
5009
 
16758 efrain 5010
                    'report' => [
5011
                        'type' => Literal::class,
5012
                        'options' => [
5013
                            'route' => '/report',
5014
                            'defaults' => [
5015
                                'controller' => '\LeadersLinked\Controller\DiscoveryContactReportController',
5016
                                'action'     => 'index',
5017
                            ],
5018
                        ],
5019
                        'may_terminate' => true,
5020
                        'child_routes' => [
5021
                            'download' => [
5022
                                'type' => Literal::class,
5023
                                'options' => [
5024
                                    'route' => '/download',
5025
                                    'defaults' => [
5026
                                        'controller' => '\LeadersLinked\Controller\DiscoveryContactReportController',
5027
                                        'action'     => 'download',
5028
                                    ],
5029
                                ],
5030
                            ],
5031
                        ]
5032
                    ],
16971 efrain 5033
 
16974 efrain 5034
                    'report-by-user' => [
5035
                        'type' => Literal::class,
5036
                        'options' => [
5037
                            'route' => '/report-by-user',
5038
                            'defaults' => [
5039
                                'controller' => '\LeadersLinked\Controller\DiscoveryContactReportUserController',
5040
                                'action'     => 'index',
5041
                            ],
5042
                        ],
5043
                        'may_terminate' => true,
5044
                        'child_routes' => [
5045
                            'download' => [
5046
                                'type' => Literal::class,
5047
                                'options' => [
5048
                                    'route' => '/download',
5049
                                    'defaults' => [
5050
                                        'controller' => '\LeadersLinked\Controller\DiscoveryContactReportUserController',
5051
                                        'action'     => 'download',
5052
                                    ],
5053
                                ],
5054
                            ],
5055
                        ]
5056
                    ],
16971 efrain 5057
 
16974 efrain 5058
 
5059
 
16971 efrain 5060
                    'blacklist' => [
5061
                        'type' => Literal::class,
5062
                        'options' => [
5063
                            'route' => '/blacklist',
5064
                            'defaults' => [
5065
                                'controller' => '\LeadersLinked\Controller\DiscoveryContactBlackListController',
5066
                                'action'     => 'index',
5067
                            ],
5068
                        ],
5069
                        'may_terminate' => true,
5070
                        'child_routes' => [
5071
                            'search-email' => [
5072
                                'type' => Literal::class,
5073
                                'options' => [
5074
                                    'route' => '/search-email',
5075
                                    'defaults' => [
5076
                                        'controller' => '\LeadersLinked\Controller\DiscoveryContactBlackListController',
5077
                                        'action'     => 'searchEmail',
5078
                                    ],
5079
                                ],
5080
                            ],
5081
                            'add' => [
5082
                                'type' => Literal::class,
5083
                                'options' => [
5084
                                    'route' => '/add',
5085
                                    'defaults' => [
5086
                                        'controller' => '\LeadersLinked\Controller\DiscoveryContactBlackListController',
5087
                                        'action'     => 'add',
5088
                                    ],
5089
                                ],
5090
                            ],
5091
                            'edit' => [
5092
                                'type' => Segment::class,
5093
                                'options' => [
5094
                                    'route' => '/edit/:id',
5095
                                    'constraints' => [
5096
                                        'id' => '[A-Za-z0-9\-]+\=*'
5097
                                    ],
5098
                                    'defaults' => [
5099
                                        'controller' => '\LeadersLinked\Controller\DiscoveryContactBlackListController',
5100
                                        'action'     => 'edit',
5101
                                    ],
5102
                                ],
5103
                            ],
5104
                            'delete' => [
5105
                                'type' => Segment::class,
5106
                                'options' => [
5107
                                    'route' => '/delete/:id',
5108
                                    'constraints' => [
5109
                                        'id' => '[A-Za-z0-9\-]+\=*'
5110
                                    ],
5111
                                    'defaults' => [
5112
                                        'controller' => '\LeadersLinked\Controller\DiscoveryContactBlackListController',
5113
                                        'action'     => 'delete',
5114
                                    ],
5115
                                ],
5116
                            ],
5117
                            'upload' => [
5118
                                'type' => Literal::class,
5119
                                'options' => [
5120
                                    'route' => '/upload',
5121
                                    'defaults' => [
5122
                                        'controller' => '\LeadersLinked\Controller\DiscoveryContactBlackListController',
5123
                                        'action'     => 'upload',
5124
                                    ],
5125
                                ],
5126
                            ],
5127
 
5128
                        ]
5129
                    ],
5130
 
5131
                    'blacklist-reasons' => [
5132
                        'type' => Literal::class,
5133
                        'options' => [
5134
                            'route' => '/blacklist-reasons',
5135
                            'defaults' => [
5136
                                'controller' => '\LeadersLinked\Controller\DiscoveryContactBlackListReasonController',
5137
                                'action'     => 'index',
5138
                            ],
5139
                        ],
5140
                        'may_terminate' => true,
5141
                        'child_routes' => [
5142
                            'add' => [
5143
                                'type' => Literal::class,
5144
                                'options' => [
5145
                                    'route' => '/add',
5146
                                    'defaults' => [
5147
                                        'controller' => '\LeadersLinked\Controller\DiscoveryContactBlackListReasonController',
5148
                                        'action'     => 'add',
5149
                                    ],
5150
                                ],
5151
                            ],
5152
                            'edit' => [
5153
                                'type' => Segment::class,
5154
                                'options' => [
5155
                                    'route' => '/edit/:id',
5156
                                    'constraints' => [
5157
                                        'id' => '[A-Za-z0-9\-]+\=*'
5158
                                    ],
5159
                                    'defaults' => [
5160
                                        'controller' => '\LeadersLinked\Controller\DiscoveryContactBlackListReasonController',
5161
                                        'action'     => 'edit',
5162
                                    ],
5163
                                ],
5164
                            ],
5165
                            'delete' => [
5166
                                'type' => Segment::class,
5167
                                'options' => [
5168
                                    'route' => '/delete/:id',
5169
                                    'constraints' => [
5170
                                        'id' => '[A-Za-z0-9\-]+\=*'
5171
                                    ],
5172
                                    'defaults' => [
5173
                                        'controller' => '\LeadersLinked\Controller\DiscoveryContactBlackListReasonController',
5174
                                        'action'     => 'delete',
5175
                                    ],
5176
                                ],
5177
                            ],
5178
                        ]
5179
                    ],
5180
 
16758 efrain 5181
 
15637 anderson 5182
 
15401 efrain 5183
                ]
5184
            ],
5185
 
15607 anderson 5186
 
5187
 
1333 efrain 5188
            'development-and-training' => [
5189
                'type' => Literal::class,
5190
                'options' => [
5191
                    'route' => '/development-and-training',
5192
                    'defaults' => [
5193
                        'controller' => '\LeadersLinked\Controller\UnknownController',
5194
                        'action' => 'index'
5195
                    ]
5196
                ],
5197
                'may_terminate' => true,
15607 anderson 5198
                'child_routes' => []
1333 efrain 5199
            ],
1477 efrain 5200
 
15607 anderson 5201
 
1477 efrain 5202
            'recruitment-and-selection' => [
1333 efrain 5203
                'type' => Literal::class,
5204
                'options' => [
1477 efrain 5205
                    'route' => '/recruitment-and-selection',
1333 efrain 5206
                    'defaults' => [
1477 efrain 5207
                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionController',
1333 efrain 5208
                        'action' => 'index'
5209
                    ]
5210
                ],
5211
                'may_terminate' => true,
5212
                'child_routes' => [
1477 efrain 5213
                    'vacancies' => [
1345 eleazar 5214
                        'type' => Literal::class,
5215
                        'options' => [
1477 efrain 5216
                            'route' => '/vacancies',
1345 eleazar 5217
                            'defaults' => [
1385 eleazar 5218
                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionVacancyController',
1345 eleazar 5219
                                'action' => 'index'
5220
                            ]
5221
                        ],
5222
                        'may_terminate' => true,
5223
                        'child_routes' => [
5224
                            'add' => [
5225
                                'type' => Literal::class,
5226
                                'options' => [
5227
                                    'route' => '/add',
5228
                                    'defaults' => [
1385 eleazar 5229
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionVacancyController',
1345 eleazar 5230
                                        'action' => 'add'
5231
                                    ]
5232
                                ]
5233
                            ],
5234
                            'edit' => [
5235
                                'type' => Segment::class,
5236
                                'options' => [
5237
                                    'route' => '/edit/:id',
5238
                                    'constraints' => [
5239
                                        'id' => '[A-Za-z0-9\-]+\=*'
5240
                                    ],
5241
                                    'defaults' => [
1385 eleazar 5242
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionVacancyController',
1345 eleazar 5243
                                        'action' => 'edit'
5244
                                    ]
5245
                                ]
5246
                            ],
5247
                            'delete' => [
5248
                                'type' => Segment::class,
5249
                                'options' => [
5250
                                    'route' => '/delete/:id',
5251
                                    'constraints' => [
5252
                                        'id' => '[A-Za-z0-9\-]+\=*'
5253
                                    ],
5254
                                    'defaults' => [
1385 eleazar 5255
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionVacancyController',
1345 eleazar 5256
                                        'action' => 'delete'
5257
                                    ]
5258
                                ]
5259
                            ]
5260
                        ]
5261
                    ],
15461 efrain 5262
                    'applications' => [
5263
                        'type' =>  Literal::class,
5264
                        'options' => [
5265
                            'route' => '/applications',
5266
                            'defaults' => [
5267
                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionApplicationController',
5268
                                'action' => 'index'
5269
                            ]
5270
                        ],
5271
                        'may_terminate' => true,
5272
                        'child_routes' => [
5273
                            'add' => [
5274
                                'type' => Segment::class,
5275
                                'options' => [
5276
                                    'route' => '/add/vacancy/:vacancy_id',
5277
                                    'constraints' => [
5278
                                        'vacancy_id' => '[A-Za-z0-9\-]+\=*'
5279
                                    ],
5280
                                    'defaults' => [
5281
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionApplicationController',
5282
                                        'action' => 'add'
5283
                                    ]
5284
                                ]
5285
                            ],
5286
                            'delete' => [
5287
                                'type' => Segment::class,
5288
                                'options' => [
5289
                                    'route' => '/delete/vacancy/:vacancy_id/application/:application_id',
5290
                                    'constraints' => [
5291
                                        'vacancy_id' => '[A-Za-z0-9\-]+\=*',
5292
                                        'application_id' => '[A-Za-z0-9\-]+\=*'
5293
                                    ],
5294
                                    'defaults' => [
5295
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionApplicationController',
5296
                                        'action' => 'delete'
5297
                                    ]
5298
                                ]
5299
                            ],
5300
                            'user-by-email' => [
5301
                                'type' => Literal::class,
5302
                                'options' => [
5303
                                    'route' => '/user-by-email',
5304
                                    'defaults' => [
5305
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionApplicationController',
5306
                                        'action' => 'userByEmail'
5307
                                    ]
5308
                                ]
5309
                            ],
5310
                            'view' => [
5311
                                'type' => Segment::class,
5312
                                'options' => [
5313
                                    'route' => '/view/vacancy/:vacancy_id/application/:application_id',
5314
                                    'constraints' => [
5315
                                        'vacancy_id' => '[A-Za-z0-9\-]+\=*',
5316
                                        'application_id' => '[A-Za-z0-9\-]+\=*'
5317
                                    ],
5318
                                    'defaults' => [
5319
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionApplicationController',
5320
                                        'action' => 'view'
5321
                                    ]
5322
                                ]
5323
                            ],
5324
                            'comment' => [
5325
                                'type' => Segment::class,
5326
                                'options' => [
5327
                                    'route' => '/comment/vacancy/:vacancy_id/application/:application_id',
5328
                                    'constraints' => [
5329
                                        'vacancy_id' => '[A-Za-z0-9\-]+\=*',
5330
                                        'application_id' => '[A-Za-z0-9\-]+\=*'
5331
                                    ],
5332
                                    'defaults' => [
5333
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionApplicationController',
5334
                                        'action' => 'comment'
5335
                                    ]
5336
                                ]
5337
                            ],
5338
                            'status' => [
5339
                                'type' => Segment::class,
5340
                                'options' => [
5341
                                    'route' => '/status/vacancy/:vacancy_id/application/:application_id',
5342
                                    'constraints' => [
5343
                                        'vacancy_id' => '[A-Za-z0-9\-]+\=*',
5344
                                        'iapplication_id' => '[A-Za-z0-9\-]+\=*'
5345
                                    ],
5346
                                    'defaults' => [
5347
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionApplicationController',
5348
                                        'action' => 'status'
5349
                                    ]
5350
                                ]
5351
                            ],
5352
                            'level' => [
5353
                                'type' => Segment::class,
5354
                                'options' => [
5355
                                    'route' => '/level/vacancy/:vacancy_id/application/:application_id',
5356
                                    'constraints' => [
5357
                                        'vacancy_id' => '[A-Za-z0-9\-]+\=*',
5358
                                        'application_id' => '[A-Za-z0-9\-]+\=*'
5359
                                    ],
5360
                                    'defaults' => [
5361
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionApplicationController',
5362
                                        'action' => 'level'
5363
                                    ]
5364
                                ]
5365
                            ],
5366
                            'files' => [
5367
                                'type' => Segment::class,
5368
                                'options' => [
5369
                                    'route' => '/files/vacancy/:vacancy_id/application/:application_id',
5370
                                    'constraints' => [
5371
                                        'vacancy_id' => '[A-Za-z0-9\-]+\=*',
5372
                                        'application_id' => '[A-Za-z0-9\-]+\=*'
5373
                                    ],
5374
                                    'defaults' => [
5375
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionFileController',
5376
                                        'action' => 'index'
5377
                                    ]
5378
                                ],
5379
                                'may_terminate' => true,
5380
                                'child_routes' => [
5381
                                    'add' => [
5382
                                        'type' => Segment::class,
5383
                                        'options' => [
5384
                                            'route' => '/add',
5385
                                            'defaults' => [
5386
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionFileController',
5387
                                                'action' => 'add'
5388
                                            ]
5389
                                        ]
5390
                                    ],
5391
                                    'delete' => [
5392
                                        'type' => Segment::class,
5393
                                        'options' => [
5394
                                            'route' => '/delete/:id',
5395
                                            'constraints' => [
5396
                                                'id' => '[A-Za-z0-9\-]+\=*'
5397
                                            ],
5398
                                            'defaults' => [
5399
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionFileController',
5400
                                                'action' => 'delete'
5401
                                            ]
5402
                                        ]
5403
                                    ],
5404
                                    'view' => [
5405
                                        'type' => Segment::class,
5406
                                        'options' => [
5407
                                            'route' => '/view/:id',
5408
                                            'constraints' => [
5409
                                                'id' => '[A-Za-z0-9\-]+\=*'
5410
                                            ],
5411
                                            'defaults' => [
5412
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionFileController',
5413
                                                'action' => 'view'
5414
                                            ]
5415
                                        ]
5416
                                    ],
15607 anderson 5417
                                ]
15461 efrain 5418
                            ],
5419
                            'interviews' => [
5420
                                'type' => Segment::class,
5421
                                'options' => [
5422
                                    'route' => '/interviews/vacancy/:vacancy_id/application/:application_id',
5423
                                    'constraints' => [
5424
                                        'vacancy_id' => '[A-Za-z0-9\-]+\=*',
5425
                                        'application_id' => '[A-Za-z0-9\-]+\=*'
5426
                                    ],
5427
                                    'defaults' => [
5428
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewController',
5429
                                        'action' => 'index'
5430
                                    ]
5431
                                ],
5432
                                'may_terminate' => true,
5433
                                'child_routes' => [
5434
                                    'add' => [
5435
                                        'type' => Segment::class,
5436
                                        'options' => [
5437
                                            'route' => '/add',
5438
                                            'defaults' => [
5439
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewController',
5440
                                                'action' => 'add'
5441
                                            ]
5442
                                        ]
5443
                                    ],
5444
                                    'delete' => [
5445
                                        'type' => Segment::class,
5446
                                        'options' => [
5447
                                            'route' => '/delete/:id',
5448
                                            'constraints' => [
5449
                                                'id' => '[A-Za-z0-9\-]+\=*'
5450
                                            ],
5451
                                            'defaults' => [
5452
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewController',
5453
                                                'action' => 'delete'
5454
                                            ]
5455
                                        ]
5456
                                    ],
5457
                                    'report' => [
5458
                                        'type' => Segment::class,
5459
                                        'options' => [
5460
                                            'route' => '/report/:id',
5461
                                            'constraints' => [
5462
                                                'id' => '[A-Za-z0-9\-]+\=*'
5463
                                            ],
5464
                                            'defaults' => [
5465
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewController',
5466
                                                'action' => 'report'
5467
                                            ]
5468
                                        ]
5469
                                    ],
5470
                                    'edit' => [
5471
                                        'type' => Segment::class,
5472
                                        'options' => [
5473
                                            'route' => '/edit/:id',
5474
                                            'constraints' => [
5475
                                                'id' => '[A-Za-z0-9\-]+\=*'
5476
                                            ],
5477
                                            'defaults' => [
5478
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewController',
5479
                                                'action' => 'edit'
5480
                                            ]
5481
                                        ]
5482
                                    ],
5483
                                ]
5484
                            ],
5485
                        ]
5486
 
15607 anderson 5487
 
5488
                    ],
15461 efrain 5489
                    /*
1459 eleazar 5490
                    'candidates' => [
5491
                        'type' => Segment::class,
5492
                        'options' => [
1501 eleazar 5493
                            'route' => '/candidates[/:vacancy_uuid]',
1459 eleazar 5494
                            'constraints' => [
1508 eleazar 5495
                                'vacancy_uuid' => '[A-Za-z0-9\-]+\=*'
1459 eleazar 5496
                            ],
5497
                            'defaults' => [
5498
                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
1502 eleazar 5499
                                'action' => 'index',
1503 eleazar 5500
                                'vacancy_uuid' => '',
1459 eleazar 5501
                            ]
5502
                        ],
5503
                        'may_terminate' => true,
5504
                        'child_routes' => [
5505
                            'add' => [
5506
                                'type' => Literal::class,
5507
                                'options' => [
1506 eleazar 5508
                                    'route' => '/add',
1459 eleazar 5509
                                    'defaults' => [
5510
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
5511
                                        'action' => 'add'
5512
                                    ]
5513
                                ]
5514
                            ],
5515
                            'edit' => [
5516
                                'type' => Segment::class,
5517
                                'options' => [
5518
                                    'route' => '/edit/:id',
5519
                                    'constraints' => [
5520
                                        'id' => '[A-Za-z0-9\-]+\=*'
5521
                                    ],
5522
                                    'defaults' => [
5523
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
5524
                                        'action' => 'edit'
5525
                                    ]
5526
                                ]
5527
                            ],
5528
                            'delete' => [
5529
                                'type' => Segment::class,
5530
                                'options' => [
5531
                                    'route' => '/delete/:id',
5532
                                    'constraints' => [
5533
                                        'id' => '[A-Za-z0-9\-]+\=*'
5534
                                    ],
5535
                                    'defaults' => [
5536
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
5537
                                        'action' => 'delete'
5538
                                    ]
5539
                                ]
1630 eleazar 5540
                            ],
5541
                            'email' => [
5542
                                'type' => Literal::class,
5543
                                'options' => [
5544
                                    'route' => '/email',
5545
                                    'defaults' => [
5546
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
5547
                                        'action' => 'email'
5548
                                    ]
5549
                                ]
5550
                            ],
1459 eleazar 5551
                        ]
5552
                    ],
1635 eleazar 5553
                    'user-by-email' => [
5554
                        'type' => Literal::class,
5555
                        'options' => [
5556
                            'route' => '/user-by-email',
5557
                            'defaults' => [
5558
                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
5559
                                'action' => 'email'
5560
                            ]
5561
                        ]
1709 eleazar 5562
                    ],
5563
                    'interview' => [
5564
                        'type' => Segment::class,
5565
                        'options' => [
5566
                            'route' => '/interview',
5567
                            'defaults' => [
5568
                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewController',
5569
                                'action' => 'index',
5570
                            ],
5571
                        ],
5572
                        'may_terminate' => true,
5573
                        'child_routes' => [
5574
                            'form' => [
4351 eleazar 5575
                                'type' => Segment::class,
1709 eleazar 5576
                                'options' => [
4349 eleazar 5577
                                    'route' => '/form[/:vacancy_uuid]',
5578
                                    'constraints' => [
5579
                                        'vacancy_uuid' => '[A-Za-z0-9\-]+\=*'
5580
                                    ],
1709 eleazar 5581
                                    'defaults' => [
1711 eleazar 5582
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
2029 eleazar 5583
                                        'action' => 'index',
4352 eleazar 5584
                                        'vacancy_uuid' => '',
1709 eleazar 5585
                                    ],
5586
                                ],
5587
                                'may_terminate' => true,
5588
                                'child_routes' => [
5589
                                    'add' => [
2059 eleazar 5590
                                        'type' => Segment::class,
1709 eleazar 5591
                                        'options' => [
3563 eleazar 5592
                                            'route' => '/add',
1709 eleazar 5593
                                            'defaults' => [
1899 eleazar 5594
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
1709 eleazar 5595
                                                'action' => 'add'
5596
                                            ],
5597
                                        ],
5598
                                    ],
5599
                                    'edit' => [
2775 eleazar 5600
                                        'type' => Segment::class,
1709 eleazar 5601
                                        'options' => [
2764 eleazar 5602
                                            'route' => '/edit/:interview_uuid',
2765 eleazar 5603
                                            'constraints' => [
5604
                                                'interview_uuid' => '[A-Za-z0-9\-]+\=*'
5605
                                            ],
1709 eleazar 5606
                                            'defaults' => [
1944 eleazar 5607
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
1709 eleazar 5608
                                                'action' => 'edit'
5609
                                            ],
5610
                                        ],
5611
                                    ],
5612
                                    'delete' => [
2775 eleazar 5613
                                        'type' => Segment::class,
1709 eleazar 5614
                                        'options' => [
2764 eleazar 5615
                                            'route' => '/delete/:interview_uuid',
2765 eleazar 5616
                                            'constraints' => [
5617
                                                'interview_uuid' => '[A-Za-z0-9\-]+\=*'
5618
                                            ],
1709 eleazar 5619
                                            'defaults' => [
2766 eleazar 5620
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
1709 eleazar 5621
                                                'action' => 'delete'
5622
                                            ],
5623
                                        ],
5624
                                    ],
8781 eleazar 5625
                                ],
5626
                            ],
5627
                            'file' => [
5628
                                'type' => Segment::class,
5629
                                'options' => [
5630
                                    'route' => '/:interview_uuid/file',
5631
                                    'constraints' => [
5632
                                        'interview_uuid' => '[A-Za-z0-9\-]+\=*'
5633
                                    ],
5634
                                    'defaults' => [
5635
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFileController',
5636
                                        'action' => 'index'
5637
                                    ],
5638
                                ],
5639
                                'may_terminate' => true,
5640
                                'child_routes' => [
5641
                                    'add' => [
5642
                                        'type' => Literal::class,
5643
                                        'options' => [
5644
                                            'route' => '/add',
5645
                                            'defaults' => [
5646
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFileController',
5647
                                                'action' => 'add'
5648
                                            ]
5649
                                        ]
5650
                                    ],
5651
                                    'edit' => [
8779 eleazar 5652
                                        'type' => Segment::class,
5653
                                        'options' => [
8874 eleazar 5654
                                            'route' => '/edit/:id',
8779 eleazar 5655
                                            'constraints' => [
8781 eleazar 5656
                                                'id' => '[A-Za-z0-9\-]+\=*'
8779 eleazar 5657
                                            ],
5658
                                            'defaults' => [
5659
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFileController',
8781 eleazar 5660
                                                'action' => 'edit'
5661
                                            ]
5662
                                        ]
5663
                                    ],
5664
                                    'delete' => [
5665
                                        'type' => Segment::class,
5666
                                        'options' => [
8874 eleazar 5667
                                            'route' => '/delete/:id',
8781 eleazar 5668
                                            'constraints' => [
5669
                                                'id' => '[A-Za-z0-9\-]+\=*'
8779 eleazar 5670
                                            ],
8781 eleazar 5671
                                            'defaults' => [
5672
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFileController',
5673
                                                'action' => 'delete'
8779 eleazar 5674
                                            ]
5675
                                        ]
8874 eleazar 5676
                                    ],
8781 eleazar 5677
                                ]
1709 eleazar 5678
                            ],
5679
                            'report' =>[
5680
                                'type' => Segment::class,
5681
                                'options' => [
2864 eleazar 5682
                                    'route' => '/report/:interview_uuid',
5683
                                    'constraints' => [
5684
                                        'interview_uuid' => '[A-Za-z0-9\-]+\=*'
5685
                                    ],
1709 eleazar 5686
                                    'defaults' => [
2864 eleazar 5687
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
5688
                                        'action' => 'report',
1709 eleazar 5689
                                    ],
5690
                                ],
5691
                            ],
3571 eleazar 5692
                            'vacancy' =>[
5693
                                'type' => Segment::class,
5694
                                'options' => [
5695
                                    'route' => '/vacancy/:vacancy_uuid',
5696
                                    'constraints' => [
5697
                                        'vacancy_uuid' => '[A-Za-z0-9\-]+\=*'
5698
                                    ],
5699
                                    'defaults' => [
5700
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
5701
                                        'action' => 'vacancy',
5702
                                    ],
5703
                                ],
5704
                            ],
4367 eleazar 5705
                            'type' =>[
4365 eleazar 5706
                                'type' => Segment::class,
5707
                                'options' => [
4367 eleazar 5708
                                    'route' => '/type/:candidate_uuid',
4365 eleazar 5709
                                    'constraints' => [
5710
                                        'candidate_uuid' => '[A-Za-z0-9\-]+\=*'
5711
                                    ],
5712
                                    'defaults' => [
5713
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
4367 eleazar 5714
                                        'action' => 'type',
4365 eleazar 5715
                                    ],
5716
                                ],
5717
                            ],
1709 eleazar 5718
                        ],
15607 anderson 5719
                    ], */
1459 eleazar 5720
                ],
1333 efrain 5721
            ],
15607 anderson 5722
 
1333 efrain 5723
            'induction' => [
5724
                'type' => Literal::class,
5725
                'options' => [
5726
                    'route' => '/induction',
5727
                    'defaults' => [
5728
                        'controller' => '\LeadersLinked\Controller\UnknownController',
5729
                        'action' => 'index'
5730
                    ]
5731
                ],
5732
                'may_terminate' => true,
15607 anderson 5733
                'child_routes' => []
1333 efrain 5734
            ],
15607 anderson 5735
 
1333 efrain 5736
            'organizational-climate' => [
5737
                'type' => Literal::class,
5738
                'options' => [
5739
                    'route' => '/organizational-climate',
5740
                    'defaults' => [
7218 eleazar 5741
                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateController',
1333 efrain 5742
                        'action' => 'index'
5743
                    ]
5744
                ],
5745
                'may_terminate' => true,
5746
                'child_routes' => [
16817 efrain 5747
                    'campaign' => [
7218 eleazar 5748
                        'type' => Segment::class,
5749
                        'options' => [
16817 efrain 5750
                            'route' => '/campaign',
7218 eleazar 5751
                            'defaults' => [
16817 efrain 5752
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateCampaignController',
7218 eleazar 5753
                                'action' => 'index',
5754
                            ],
5755
                        ],
5756
                        'may_terminate' => true,
5757
                        'child_routes' => [
5758
                            'add' => [
5759
                                'type' => Segment::class,
5760
                                'options' => [
5761
                                    'route' => '/add',
5762
                                    'defaults' => [
16817 efrain 5763
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateCampaignController',
7218 eleazar 5764
                                        'action' => 'add'
5765
                                    ],
5766
                                ],
5767
                            ],
16817 efrain 5768
                            'overview' => [
7218 eleazar 5769
                                'type' => Segment::class,
5770
                                'options' => [
16817 efrain 5771
                                    'route' => '/overview/:id',
7218 eleazar 5772
                                    'constraints' => [
5773
                                        'id' => '[A-Za-z0-9\-]+\=*'
5774
                                    ],
5775
                                    'defaults' => [
16817 efrain 5776
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateCampaignController',
5777
                                        'action' => 'overview'
7218 eleazar 5778
                                    ]
5779
                                ]
5780
                            ],
16817 efrain 5781
                            'pdf' => [
7218 eleazar 5782
                                'type' => Segment::class,
5783
                                'options' => [
16817 efrain 5784
                                    'route' => '/pdf/:id',
7218 eleazar 5785
                                    'constraints' => [
5786
                                        'id' => '[A-Za-z0-9\-]+\=*'
5787
                                    ],
5788
                                    'defaults' => [
16817 efrain 5789
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateCampaignController',
5790
                                        'action' => 'pdf'
7218 eleazar 5791
                                    ]
5792
                                ]
5793
                            ],
16817 efrain 5794
                            'excel' => [
7218 eleazar 5795
                                'type' => Segment::class,
5796
                                'options' => [
16817 efrain 5797
                                    'route' => '/excel/:id',
5798
                                    'constraints' => [
5799
                                        'id' => '[A-Za-z0-9\-]+\=*'
7218 eleazar 5800
                                    ],
5801
                                    'defaults' => [
16817 efrain 5802
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateCampaignController',
5803
                                        'action' => 'excel'
5804
                                    ]
5805
                                ]
7218 eleazar 5806
                            ],
5807
                            'delete' => [
5808
                                'type' => Segment::class,
5809
                                'options' => [
5810
                                    'route' => '/delete/:id',
16817 efrain 5811
                                    'constraints' => [
5812
                                        'id' => '[A-Za-z0-9\-]+\=*'
5813
                                    ],
7218 eleazar 5814
                                    'defaults' => [
16817 efrain 5815
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateCampaignController',
7218 eleazar 5816
                                        'action' => 'delete'
5817
                                    ]
5818
                                ]
5819
                            ]
5820
                        ],
5821
                    ],
16817 efrain 5822
 
5823
                    'form' => [
7218 eleazar 5824
                        'type' => Segment::class,
5825
                        'options' => [
16817 efrain 5826
                            'route' => '/form',
7218 eleazar 5827
                            'defaults' => [
16817 efrain 5828
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateFormController',
7218 eleazar 5829
                                'action' => 'index',
5830
                            ],
5831
                        ],
5832
                        'may_terminate' => true,
5833
                        'child_routes' => [
16817 efrain 5834
                            'add' => [
7218 eleazar 5835
                                'type' => Segment::class,
5836
                                'options' => [
16817 efrain 5837
                                    'route' => '/add[/:id]',
5838
                                    'constraints' => [
5839
                                        'id' => '[A-Za-z0-9\-]+\=*'
5840
                                    ],
7218 eleazar 5841
                                    'defaults' => [
16817 efrain 5842
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateFormController',
5843
                                        'action' => 'add'
5844
                                    ],
5845
                                ],
7218 eleazar 5846
                            ],
16817 efrain 5847
                            'edit' => [
7218 eleazar 5848
                                'type' => Segment::class,
5849
                                'options' => [
16817 efrain 5850
                                    'route' => '/edit/:id',
5851
                                    'constraints' => [
5852
                                        'id' => '[A-Za-z0-9\-]+\=*'
5853
                                    ],
7218 eleazar 5854
                                    'defaults' => [
16817 efrain 5855
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateFormController',
5856
                                        'action' => 'edit'
7218 eleazar 5857
                                    ]
5858
                                ]
5859
                            ],
16817 efrain 5860
                            'delete' => [
7218 eleazar 5861
                                'type' => Segment::class,
5862
                                'options' => [
16817 efrain 5863
                                    'route' => '/delete/:id',
5864
                                    'constraints' => [
5865
                                        'id' => '[A-Za-z0-9\-]+\=*'
5866
                                    ],
7218 eleazar 5867
                                    'defaults' => [
16817 efrain 5868
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateFormController',
5869
                                        'action' => 'delete'
7218 eleazar 5870
                                    ]
5871
                                ]
16817 efrain 5872
                            ]
7218 eleazar 5873
                        ],
5874
                    ],
5875
                ],
1333 efrain 5876
            ],
15607 anderson 5877
 
1333 efrain 5878
            'culture' => [
5879
                'type' => Literal::class,
5880
                'options' => [
5881
                    'route' => '/culture',
5882
                    'defaults' => [
5883
                        'controller' => '\LeadersLinked\Controller\UnknownController',
5884
                        'action' => 'index'
5885
                    ]
5886
                ],
5887
                'may_terminate' => true,
15607 anderson 5888
                'child_routes' => []
1333 efrain 5889
            ],
16766 efrain 5890
 
5891
 
5892
            'helpers' => [
13553 nelberth 5893
                'type' => Literal::class,
1333 efrain 5894
                'options' => [
16766 efrain 5895
                    'route' => '/helpers',
1333 efrain 5896
                    'defaults' => [
16766 efrain 5897
                        'controller' => '\LeadersLinked\Controller\HelperController',
13170 nelberth 5898
                        'action' => 'index'
1333 efrain 5899
                    ]
5900
                ],
5901
                'may_terminate' => true,
5902
                'child_routes' => [
16766 efrain 5903
 
5904
 
5905
                    'search-people' => [
13760 nelberth 5906
                        'type' => Literal::class,
5907
                        'options' => [
16766 efrain 5908
                            'route' => '/search-people',
13760 nelberth 5909
                            'defaults' => [
16766 efrain 5910
                                'controller' =>  '\LeadersLinked\Controller\HelperController',
5911
                                'action' => 'searchPeople'
13760 nelberth 5912
                            ]
5913
                        ]
5914
                    ],
16798 efrain 5915
                    'search-people-by-company' => [
5916
                        'type' => Literal::class,
5917
                        'options' => [
5918
                            'route' => '/search-people-by-company',
5919
                            'defaults' => [
5920
                                'controller' =>  '\LeadersLinked\Controller\HelperController',
5921
                                'action' => 'searchPeopleByCompany'
5922
                            ]
5923
                        ]
5924
                    ],
16766 efrain 5925
                ],
5926
            ],
5927
 
5928
            'inmail-personal' => [
5929
                'type' =>  Literal::class,
5930
                'options' => [
5931
                    'route' => '/inmail-personal',
5932
                    'defaults' => [
17003 efrain 5933
                        'controller' => '\LeadersLinked\Controller\HomeController',
5934
                        'action' => 'inMailPersonal'
5935
                    ]
5936
                ],
5937
                'may_terminate' => true,
5938
            ],
5939
 
5940
 
5941
            'inmail-company' => [
5942
                'type' => Literal::class,
5943
                'options' => [
5944
                    'route' => '/inmail-company',
5945
 
5946
                    'defaults' => [
5947
                        'controller' => '\LeadersLinked\Controller\HomeController',
5948
                        'action' => 'inMailCompany'
5949
                    ]
5950
                ],
5951
                'may_terminate' => true,
5952
            ],
5953
 
5954
 
5955
            'communication' => [
5956
                'type' => Literal::class,
5957
                'options' => [
5958
                    'route' => '/communication',
5959
                    'defaults' => [
5960
                        'controller' => '\LeadersLinked\Controller\CommunicationController',
16766 efrain 5961
                        'action' => 'index'
5962
                    ]
5963
                ],
5964
                'may_terminate' => true,
5965
                'child_routes' => [
17003 efrain 5966
                    'send' => [
13524 nelberth 5967
                        'type' => Literal::class,
13013 nelberth 5968
                        'options' => [
17003 efrain 5969
                            'route' => '/send',
13013 nelberth 5970
                            'defaults' => [
17003 efrain 5971
                                'controller' => '\LeadersLinked\Controller\CommunicationController',
5972
                                'action' => 'send'
13028 nelberth 5973
                            ]
13524 nelberth 5974
                        ]
5975
                    ],
17003 efrain 5976
                    'search-people' => [
5977
                        'type' => Literal::class,
13524 nelberth 5978
                        'options' => [
17003 efrain 5979
                            'route' => '/search-people',
13524 nelberth 5980
                            'defaults' => [
17003 efrain 5981
                                'controller' => '\LeadersLinked\Controller\CommunicationController',
5982
                                'action' => 'searchPeople'
13524 nelberth 5983
                            ]
16766 efrain 5984
                        ]
5985
                    ],
17003 efrain 5986
                ]
5987
            ],
5988
 
5989
            'media' => [
5990
                'type' => Literal::class,
5991
                'options' => [
5992
                    'route' => '/media',
5993
                    'defaults' => [
5994
                        'controller' => '\LeadersLinked\Controller\UnknownController',
5995
                        'action' => 'index'
5996
                    ]
5997
                ],
5998
                'may_terminate' => true,
5999
                'child_routes' => [
6000
                    'categories' => [
6001
                        'type' => Literal::class,
16766 efrain 6002
                        'options' => [
17003 efrain 6003
                            'route' => '/categories',
16766 efrain 6004
                            'defaults' => [
17003 efrain 6005
                                'controller' => '\LeadersLinked\Controller\MediaCategoryController',
6006
                                'action' => 'index'
16766 efrain 6007
                            ]
13028 nelberth 6008
                        ],
6009
                        'may_terminate' => true,
6010
                        'child_routes' => [
17003 efrain 6011
                            'add' => [
16766 efrain 6012
                                'type' => Segment::class,
13028 nelberth 6013
                                'options' => [
17003 efrain 6014
                                    'route' => '/add',
6015
                                    'defaults' => [
6016
                                        'controller' => '\LeadersLinked\Controller\MediaCategoryController',
6017
                                        'action' => 'add'
16766 efrain 6018
                                    ],
17003 efrain 6019
                                ],
6020
                            ],
6021
                            'edit' => [
6022
                                'type' => Segment::class,
6023
                                'options' => [
6024
                                    'route' => '/edit/:id',
13028 nelberth 6025
                                    'defaults' => [
17003 efrain 6026
                                        'controller' => '\LeadersLinked\Controller\MediaCategoryController',
6027
                                        'action' => 'edit'
6028
                                    ],
6029
                                ],
16766 efrain 6030
                            ],
6031
                            'delete' => [
6032
                                'type' => Segment::class,
6033
                                'options' => [
17003 efrain 6034
                                    'route' => '/delete/:id',
16766 efrain 6035
                                    'defaults' => [
17003 efrain 6036
                                        'controller' => '\LeadersLinked\Controller\MediaCategoryController',
16766 efrain 6037
                                        'action' => 'delete'
17003 efrain 6038
                                    ],
6039
                                ],
13013 nelberth 6040
                            ],
17003 efrain 6041
 
6042
                        ]
16766 efrain 6043
                    ],
17003 efrain 6044
 
6045
                    'files' => [
16766 efrain 6046
                        'type' => Literal::class,
6047
                        'options' => [
17003 efrain 6048
                            'route' => '/files',
16766 efrain 6049
                            'defaults' => [
17003 efrain 6050
                                'controller' => '\LeadersLinked\Controller\MediaFileController',
6051
                                'action' => 'index'
16766 efrain 6052
                            ]
13778 nelberth 6053
                        ],
6054
                        'may_terminate' => true,
6055
                        'child_routes' => [
17003 efrain 6056
                            'upload' => [
16766 efrain 6057
                                'type' => Segment::class,
13778 nelberth 6058
                                'options' => [
17003 efrain 6059
                                    'route' => '/upload',
6060
                                    'defaults' => [
6061
                                        'controller' => '\LeadersLinked\Controller\MediaFileController',
6062
                                        'action' => 'upload'
16766 efrain 6063
                                    ],
17003 efrain 6064
                                ],
16766 efrain 6065
                            ],
6066
                            'delete' => [
6067
                                'type' => Segment::class,
6068
                                'options' => [
17003 efrain 6069
                                    'route' => '/delete/:id',
16766 efrain 6070
                                    'defaults' => [
17003 efrain 6071
                                        'controller' => '\LeadersLinked\Controller\MediaFileController',
16766 efrain 6072
                                        'action' => 'delete'
17003 efrain 6073
                                    ],
6074
                                ],
13778 nelberth 6075
                            ],
17003 efrain 6076
 
16798 efrain 6077
                        ]
13652 nelberth 6078
                    ],
17003 efrain 6079
 
1333 efrain 6080
                ]
6081
            ],
17003 efrain 6082
 
15607 anderson 6083
 
17003 efrain 6084
 
16701 efrain 6085
 
6086
            'fast-survey' => [
6087
                'type' => Literal::class,
6088
                'options' => [
6089
                    'route' => '/fast-survey',
6090
                    'defaults' => [
6091
                        'controller' => '\LeadersLinked\Controller\FastSurveyController',
6092
                        'action' => 'index'
6093
                    ]
6094
                ],
6095
                'may_terminate' => true,
6096
                'child_routes' => [
6097
                    'add' => [
6098
                        'type' => Segment::class,
6099
                        'options' => [
6100
                            'route' => '/add',
6101
                            'defaults' => [
6102
                                'controller' => '\LeadersLinked\Controller\FastSurveyController',
6103
                                'action' => 'add'
6104
                            ],
6105
                        ],
6106
                    ],
6107
                    'edit' => [
6108
                        'type' => Segment::class,
6109
                        'options' => [
6110
                            'route' => '/edit/:id',
6111
                            'defaults' => [
6112
                                'controller' => '\LeadersLinked\Controller\FastSurveyController',
6113
                                'action' => 'edit'
6114
                            ],
6115
                        ],
6116
                    ],
6117
                    'delete' => [
6118
                        'type' => Segment::class,
6119
                        'options' => [
6120
                            'route' => '/delete/:id',
6121
                            'defaults' => [
6122
                                'controller' => '\LeadersLinked\Controller\FastSurveyController',
6123
                                'action' => 'delete'
6124
                            ],
6125
                        ],
6126
                    ],
16747 efrain 6127
                    'chart' => [
16701 efrain 6128
                        'type' => Segment::class,
6129
                        'options' => [
16747 efrain 6130
                            'route' => '/chart/:id',
16701 efrain 6131
                            'defaults' => [
6132
                                'controller' => '\LeadersLinked\Controller\FastSurveyController',
16747 efrain 6133
                                'action' => 'chart'
16701 efrain 6134
                            ],
6135
                        ],
6136
                    ],
6137
                    'download' => [
6138
                        'type' => Segment::class,
6139
                        'options' => [
6140
                            'route' => '/download/:id',
6141
                            'defaults' => [
6142
                                'controller' => '\LeadersLinked\Controller\FastSurveyController',
6143
                                'action' => 'download'
6144
                            ],
6145
                        ],
6146
                    ],
6147
 
6148
                ]
6149
            ],
15607 anderson 6150
 
4386 eleazar 6151
            'survey' => [
1333 efrain 6152
                'type' => Literal::class,
6153
                'options' => [
4397 eleazar 6154
                    'route' => '/survey',
1333 efrain 6155
                    'defaults' => [
4375 eleazar 6156
                        'controller' => '\LeadersLinked\Controller\SurveyController',
1333 efrain 6157
                        'action' => 'index'
6158
                    ]
6159
                ],
6160
                'may_terminate' => true,
6161
                'child_routes' => [
4374 eleazar 6162
                    'form' => [
6163
                        'type' => Segment::class,
6164
                        'options' => [
6165
                            'route' => '/form',
6166
                            'defaults' => [
4375 eleazar 6167
                                'controller' => '\LeadersLinked\Controller\SurveyFormController',
4374 eleazar 6168
                                'action' => 'index',
6169
                            ],
6170
                        ],
6171
                        'may_terminate' => true,
6172
                        'child_routes' => [
6173
                            'add' => [
6174
                                'type' => Segment::class,
6175
                                'options' => [
16817 efrain 6176
                                    'route' => '/add[/:id]',
6177
                                    'constraints' => [
6178
                                        'id' => '[A-Za-z0-9\-]+\=*'
6179
                                    ],
4374 eleazar 6180
                                    'defaults' => [
4375 eleazar 6181
                                        'controller' => '\LeadersLinked\Controller\SurveyFormController',
4374 eleazar 6182
                                        'action' => 'add'
6183
                                    ],
6184
                                ],
6185
                            ],
6186
                            'edit' => [
6187
                                'type' => Segment::class,
6188
                                'options' => [
6189
                                    'route' => '/edit/:id',
6190
                                    'constraints' => [
6191
                                        'id' => '[A-Za-z0-9\-]+\=*'
6192
                                    ],
6193
                                    'defaults' => [
4375 eleazar 6194
                                        'controller' => '\LeadersLinked\Controller\SurveyFormController',
4374 eleazar 6195
                                        'action' => 'edit'
6196
                                    ]
6197
                                ]
6198
                            ],
6199
                            'delete' => [
6200
                                'type' => Segment::class,
6201
                                'options' => [
6202
                                    'route' => '/delete/:id',
6203
                                    'constraints' => [
6204
                                        'id' => '[A-Za-z0-9\-]+\=*'
6205
                                    ],
6206
                                    'defaults' => [
4375 eleazar 6207
                                        'controller' => '\LeadersLinked\Controller\SurveyFormController',
4374 eleazar 6208
                                        'action' => 'delete'
6209
                                    ]
6210
                                ]
6211
                            ]
6212
                        ],
6213
                    ],
16817 efrain 6214
                    'campaign' => [
5287 eleazar 6215
                        'type' => Segment::class,
6216
                        'options' => [
16817 efrain 6217
                            'route' => '/campaign',
5287 eleazar 6218
                            'defaults' => [
16817 efrain 6219
                                'controller' => '\LeadersLinked\Controller\SurveyCampaignController',
5287 eleazar 6220
                                'action' => 'index',
6221
                            ],
6222
                        ],
6223
                        'may_terminate' => true,
6224
                        'child_routes' => [
6225
                            'add' => [
16817 efrain 6226
                                'type' => Literal::class,
5287 eleazar 6227
                                'options' => [
6036 eleazar 6228
                                    'route' => '/add',
5287 eleazar 6229
                                    'defaults' => [
16817 efrain 6230
                                        'controller' => '\LeadersLinked\Controller\SurveyCampaignController',
6231
                                        'action' => 'add'
5287 eleazar 6232
                                    ],
6233
                                ],
6234
                            ],
6235
                            'delete' => [
6236
                                'type' => Segment::class,
6237
                                'options' => [
6882 eleazar 6238
                                    'route' => '/delete/:id',
16817 efrain 6239
                                    'constraints' => [
6240
                                        'id' => '[A-Za-z0-9\-]+\=*'
6241
                                    ],
5287 eleazar 6242
                                    'defaults' => [
16817 efrain 6243
                                        'controller' => '\LeadersLinked\Controller\SurveyCampaignController',
5287 eleazar 6244
                                        'action' => 'delete'
6245
                                    ]
6246
                                ]
5911 eleazar 6247
                            ],
16817 efrain 6248
                            'overview' => [
5823 eleazar 6249
                                'type' => Segment::class,
6250
                                'options' => [
16817 efrain 6251
                                    'route' => '/overview/:id',
6252
                                    'constraints' => [
6253
                                        'id' => '[A-Za-z0-9\-]+\=*'
6254
                                    ],
5823 eleazar 6255
                                    'defaults' => [
16817 efrain 6256
                                        'controller' => '\LeadersLinked\Controller\SurveyCampaignController',
6257
                                        'action' => 'overview'
5823 eleazar 6258
                                    ]
6259
                                ]
6260
                            ],
16817 efrain 6261
                            'pdf' => [
6496 eleazar 6262
                                'type' => Segment::class,
6263
                                'options' => [
16817 efrain 6264
                                    'route' => '/pdf/:id',
6265
                                    'constraints' => [
6266
                                        'id' => '[A-Za-z0-9\-]+\=*'
6267
                                    ],
6496 eleazar 6268
                                    'defaults' => [
16817 efrain 6269
                                        'controller' => '\LeadersLinked\Controller\SurveyCampaignController',
6270
                                        'action' => 'pdf'
6496 eleazar 6271
                                    ]
6272
                                ]
6273
                            ],
15149 efrain 6274
                            'excel' => [
7024 eleazar 6275
                                'type' => Segment::class,
6276
                                'options' => [
16817 efrain 6277
                                    'route' => '/excel/:id',
6278
                                    'constraints' => [
6279
                                        'id' => '[A-Za-z0-9\-]+\=*'
6280
                                    ],
7024 eleazar 6281
                                    'defaults' => [
16817 efrain 6282
                                        'controller' => '\LeadersLinked\Controller\SurveyCampaignController',
6283
                                        'action' => 'excel'
7024 eleazar 6284
                                    ]
6285
                                ]
16817 efrain 6286
                            ]
5823 eleazar 6287
                        ],
6288
                    ],
1333 efrain 6289
                ]
6290
            ],
15607 anderson 6291
 
1333 efrain 6292
            'building-my-future' => [
6293
                'type' => Literal::class,
6294
                'options' => [
6295
                    'route' => '/building-my-future',
6296
                    'defaults' => [
6297
                        'controller' => '\LeadersLinked\Controller\UnknownController',
6298
                        'action' => 'index'
6299
                    ]
6300
                ],
6301
                'may_terminate' => true,
15607 anderson 6302
                'child_routes' => []
1333 efrain 6303
            ],
11431 nelberth 6304
 
6305
            'csrf' => [
6306
                'type' => Literal::class,
6307
                'options' => [
6308
                    'route' => '/csrf',
6309
                    'defaults' => [
14692 efrain 6310
                        'controller' => '\LeadersLinked\Controller\DashboardController',
11431 nelberth 6311
                        'action' => 'csrf'
6312
                    ]
6313
                ]
6314
            ],
11340 nelberth 6315
            'chat' => [
6316
                'type' => Literal::class,
6317
                'options' => [
6318
                    'route' => '/chat',
6319
                    'defaults' => [
17003 efrain 6320
                        'controller' => '\LeadersLinked\Controller\HomeController',
6321
                        'action' => 'chat'
11340 nelberth 6322
                    ]
6323
                ],
6324
                'may_terminate' => true,
6325
            ],
15607 anderson 6326
 
1333 efrain 6327
            'high-performance-teams' => [
6328
                'type' => Literal::class,
6329
                'options' => [
4591 nelberth 6330
                    'route' => '/high-performance-teams',
4588 nelberth 6331
                    'defaults' => [
16971 efrain 6332
                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamController',
1333 efrain 6333
                        'action' => 'index'
6334
                    ]
6335
                ],
6336
                'may_terminate' => true,
6337
                'child_routes' => [
16971 efrain 6338
                    'add' => [
4388 nelberth 6339
                        'type' => Literal::class,
16971 efrain 6340
                            'options' => [
6341
                            'route' => '/add',
6342
                            'defaults' => [
6343
                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamController',
6344
                                'action' => 'add'
6345
                            ]
6346
                        ]
6347
                    ],
6348
                    'edit' => [
6349
                        'type' => Segment::class,
4388 nelberth 6350
                        'options' => [
16971 efrain 6351
                            'route' => '/edit/:id',
6352
                            'constraints' => [
6353
                                'id' => '[A-Za-z0-9\-]+\=*'
6354
                            ],
4388 nelberth 6355
                            'defaults' => [
16971 efrain 6356
                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamController',
6357
                                'action' => 'edit'
4388 nelberth 6358
                            ]
16971 efrain 6359
                        ]
6360
                    ],
6361
                    'delete' => [
6362
                        'type' => Segment::class,
6363
                        'options' => [
6364
                            'route' => '/delete/:id',
6365
                            'constraints' => [
6366
                                'id' => '[A-Za-z0-9\-]+\=*'
4411 nelberth 6367
                            ],
16971 efrain 6368
                            'defaults' => [
6369
                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamController',
6370
                                'action' => 'delete'
6371
                            ]
4411 nelberth 6372
                        ]
4388 nelberth 6373
                    ],
16971 efrain 6374
 
1333 efrain 6375
                ]
6376
            ],
4588 nelberth 6377
 
16285 efrain 6378
            'tools' => [
6379
                'type' => Literal::class,
6380
                'options' => [
6381
                    'route' => '/tools',
6382
                    'constraints' => [
6383
                        'topic_id' => '[A-Za-z0-9\-]+\=*'
6384
                    ],
6385
                    'defaults' => [
6386
                        'controller' => '\LeadersLinked\Controller\ToolsController',
6387
                        'action' => 'index'
6388
                    ]
6389
                ],
6390
                'may_terminate' => true,
6391
                'child_routes' => [
6392
                    'userfile-password-generator' => [
6393
                        'type' => Literal::class,
6394
                        'options' => [
6395
                            'route' => '/userfile-password-generator',
6396
                            'defaults' => [
6397
                                'controller' => '\LeadersLinked\Controller\ToolsController',
6398
                                'action' => 'userfilePasswordGenerator'
6399
                            ]
6400
                        ]
6401
                    ],
16619 anderson 6402
                ],
16285 efrain 6403
            ]
15607 anderson 6404
 
6405
 
16270 anderson 6406
 
1 www 6407
        ]
6408
    ],
6409
    'controllers' => [
6410
        'factories' => [
6411
            \LeadersLinked\Controller\AuthController::class => \LeadersLinked\Factory\Controller\AuthControllerFactory::class,
6412
            \LeadersLinked\Controller\FeedController::class => \LeadersLinked\Factory\Controller\FeedControllerFactory::class,
6413
            \LeadersLinked\Controller\FollowerController::class => \LeadersLinked\Factory\Controller\FollowerControllerFactory::class,
6414
            \LeadersLinked\Controller\JobController::class => \LeadersLinked\Factory\Controller\JobControllerFactory::class,
1469 eleazar 6415
            \LeadersLinked\Controller\RecruitmentSelectionController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionFactory::class,
15461 efrain 6416
            \LeadersLinked\Controller\RecruitmentSelectionVacancyController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionVacancyFactory::class,
6417
            \LeadersLinked\Controller\RecruitmentSelectionApplicationController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionApplicationFactory::class,
6418
            \LeadersLinked\Controller\RecruitmentSelectionFileController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionFileControllerFactory::class,
1709 eleazar 6419
            \LeadersLinked\Controller\RecruitmentSelectionInterviewController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionInterviewFactory::class,
15607 anderson 6420
            /*
15461 efrain 6421
            \LeadersLinked\Controller\RecruitmentSelectionInterviewController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionInterviewFactory::class,
1712 eleazar 6422
            \LeadersLinked\Controller\RecruitmentSelectionInterviewFormController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionInterviewFormFactory::class,
8797 eleazar 6423
            \LeadersLinked\Controller\RecruitmentSelectionInterviewFileController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionInterviewFileControllerFactory::class,
1385 eleazar 6424
            \LeadersLinked\Controller\RecruitmentSelectionVacancyController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionVacancyFactory::class,
1459 eleazar 6425
            \LeadersLinked\Controller\RecruitmentSelectionCandidateController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionCandidateFactory::class,
15461 efrain 6426
            */
1 www 6427
            \LeadersLinked\Controller\ProfileController::class => \LeadersLinked\Factory\Controller\ProfileControllerFactory::class,
6428
            \LeadersLinked\Controller\CompanyController::class => \LeadersLinked\Factory\Controller\CompanyControllerFactory::class,
6429
            \LeadersLinked\Controller\CompanySizeController::class => \LeadersLinked\Factory\Controller\CompanySizeControllerFactory::class,
15460 efrain 6430
            \LeadersLinked\Controller\CountriesController::class => \LeadersLinked\Factory\Controller\CountriesControllerFactory::class,
15607 anderson 6431
 
1115 geraldo 6432
            \LeadersLinked\Controller\BehaviorsController::class => \LeadersLinked\Factory\Controller\BehaviorsControllerFactory::class,
1 www 6433
            \LeadersLinked\Controller\CompetencyTypeController::class => \LeadersLinked\Factory\Controller\CompetencyTypeControllerFactory::class,
6434
            \LeadersLinked\Controller\CompetencyController::class => \LeadersLinked\Factory\Controller\CompetencyControllerFactory::class,
6435
            \LeadersLinked\Controller\DegreeController::class => \LeadersLinked\Factory\Controller\DegreeControllerFactory::class,
6436
            \LeadersLinked\Controller\EmailTemplateController::class => \LeadersLinked\Factory\Controller\EmailTemplateControllerFactory::class,
6437
            \LeadersLinked\Controller\PushTemplateController::class => \LeadersLinked\Factory\Controller\PushTemplateControllerFactory::class,
6438
            \LeadersLinked\Controller\GroupTypeController::class => \LeadersLinked\Factory\Controller\GroupTypeControllerFactory::class,
6439
            \LeadersLinked\Controller\IndustryController::class => \LeadersLinked\Factory\Controller\IndustryControllerFactory::class,
6440
            \LeadersLinked\Controller\JobCategoryController::class => \LeadersLinked\Factory\Controller\JobCategoryControllerFactory::class,
28 efrain 6441
            \LeadersLinked\Controller\JobDescriptionController::class => \LeadersLinked\Factory\Controller\JobDescriptionControllerFactory::class,
1 www 6442
            \LeadersLinked\Controller\PageController::class => \LeadersLinked\Factory\Controller\PageControllerFactory::class,
16770 efrain 6443
            \LeadersLinked\Controller\OrganizationPositionController::class => \LeadersLinked\Factory\Controller\OrganizationPositionControllerFactory::class,
1 www 6444
            \LeadersLinked\Controller\PostController::class => \LeadersLinked\Factory\Controller\PostControllerFactory::class,
6445
            \LeadersLinked\Controller\SkillController::class => \LeadersLinked\Factory\Controller\SkillControllerFactory::class,
6446
            \LeadersLinked\Controller\UserController::class => \LeadersLinked\Factory\Controller\UserControllerFactory::class,
6447
            \LeadersLinked\Controller\DashboardController::class => \LeadersLinked\Factory\Controller\DashboardControllerFactory::class,
115 efrain 6448
            \LeadersLinked\Controller\SelfEvaluationController::class => \LeadersLinked\Factory\Controller\SelfEvaluationControllerFactory::class,
6449
            \LeadersLinked\Controller\SelfEvaluationFormController::class => \LeadersLinked\Factory\Controller\SelfEvaluationFormControllerFactory::class,
1089 geraldo 6450
            \LeadersLinked\Controller\SelfEvaluationFormUserController::class => \LeadersLinked\Factory\Controller\SelfEvaluationFormUserControllerFactory::class,
247 geraldo 6451
            \LeadersLinked\Controller\SelfEvaluationReviewController::class => \LeadersLinked\Factory\Controller\SelfEvaluationReviewControllerFactory::class,
4375 eleazar 6452
            \LeadersLinked\Controller\SurveyController::class => \LeadersLinked\Factory\Controller\SurveyControllerFactory::class,
6453
            \LeadersLinked\Controller\SurveyFormController::class => \LeadersLinked\Factory\Controller\SurveyFormControllerFactory::class,
16817 efrain 6454
            \LeadersLinked\Controller\SurveyCampaignController::class => \LeadersLinked\Factory\Controller\SurveyCampaignControllerFactory::class,
6455
 
6456
 
7218 eleazar 6457
            \LeadersLinked\Controller\OrganizationalClimateController::class => \LeadersLinked\Factory\Controller\OrganizationalClimateControllerFactory::class,
6458
            \LeadersLinked\Controller\OrganizationalClimateFormController::class => \LeadersLinked\Factory\Controller\OrganizationalClimateFormControllerFactory::class,
16817 efrain 6459
            \LeadersLinked\Controller\OrganizationalClimateCampaignController::class => \LeadersLinked\Factory\Controller\OrganizationalClimateCampaignControllerFactory::class,
6460
 
15394 efrain 6461
            \LeadersLinked\Controller\PerformanceEvaluationController::class => \LeadersLinked\Factory\Controller\PerformanceEvaluationControllerFactory::class,
987 geraldo 6462
            \LeadersLinked\Controller\PerformanceEvaluationFormController::class => \LeadersLinked\Factory\Controller\PerformanceEvaluationFormControllerFactory::class,
15394 efrain 6463
            \LeadersLinked\Controller\PerformanceEvaluationTestController::class => \LeadersLinked\Factory\Controller\PerformanceEvaluationTestControllerFactory::class,
15607 anderson 6464
 
1 www 6465
            \LeadersLinked\Controller\MicrolearningController::class => \LeadersLinked\Factory\Controller\MicrolearningControllerFactory::class,
66 efrain 6466
            \LeadersLinked\Controller\MicrolearningQuizController::class => \LeadersLinked\Factory\Controller\MicrolearningQuizControllerFactory::class,
6467
            \LeadersLinked\Controller\MicrolearningQuestionController::class => \LeadersLinked\Factory\Controller\MicrolearningQuestionControllerFactory::class,
6468
            \LeadersLinked\Controller\MicrolearningAnswerController::class => \LeadersLinked\Factory\Controller\MicrolearningAnswerControllerFactory::class,
1 www 6469
            \LeadersLinked\Controller\MicrolearningTopicController::class => \LeadersLinked\Factory\Controller\MicrolearningTopicControllerFactory::class,
6470
            \LeadersLinked\Controller\MicrolearningCapsuleController::class => \LeadersLinked\Factory\Controller\MicrolearningCapsuleControllerFactory::class,
6471
            \LeadersLinked\Controller\MicrolearningSlideController::class => \LeadersLinked\Factory\Controller\MicrolearningSlideControllerFactory::class,
6472
            \LeadersLinked\Controller\MicrolearningAccessForStudentsController::class => \LeadersLinked\Factory\Controller\MicrolearningAccessForStudentsControllerFactory::class,
6473
            \LeadersLinked\Controller\MicrolearningStudentsController::class => \LeadersLinked\Factory\Controller\MicrolearningStudentsControllerFactory::class,
6474
            \LeadersLinked\Controller\MicrolearningReportsController::class => \LeadersLinked\Factory\Controller\MicrolearningReportsControllerFactory::class,
6475
            \LeadersLinked\Controller\MicrolearningExtendUserCompanyController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserCompanyControllerFactory::class,
6476
            \LeadersLinked\Controller\MicrolearningExtendUserFunctionController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserFunctionControllerFactory::class,
6477
            \LeadersLinked\Controller\MicrolearningExtendUserGroupController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserGroupControllerFactory::class,
6478
            \LeadersLinked\Controller\MicrolearningExtendUserInstitutionController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserInstitutionControllerFactory::class,
6479
            \LeadersLinked\Controller\MicrolearningExtendUserPartnerController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserPartnerControllerFactory::class,
6480
            \LeadersLinked\Controller\MicrolearningExtendUserProgramController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserProgramControllerFactory::class,
6481
            \LeadersLinked\Controller\MicrolearningExtendUserSectorController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserSectorControllerFactory::class,
6482
            \LeadersLinked\Controller\MicrolearningExtendUserStudentTypeController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserStudentTypeControllerFactory::class,
15394 efrain 6483
            \LeadersLinked\Controller\MicrolearningExtendUserCountryController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserCountryControllerFactory::class,
17003 efrain 6484
 
16766 efrain 6485
            \LeadersLinked\Controller\PlanningController::class => \LeadersLinked\Factory\Controller\PlanningControllerFactory::class,
16785 efrain 6486
            \LeadersLinked\Controller\PlanningPeriodController::class => \LeadersLinked\Factory\Controller\PlanningPeriodControllerFactory::class,
6487
            \LeadersLinked\Controller\PlanningObjectiveController::class => \LeadersLinked\Factory\Controller\PlanningObjectiveControllerFactory::class,
6488
            \LeadersLinked\Controller\PlanningGoalController::class => \LeadersLinked\Factory\Controller\PlanningGoalControllerFactory::class,
16766 efrain 6489
            \LeadersLinked\Controller\PlanningTaskController::class => \LeadersLinked\Factory\Controller\PlanningTaskControllerFactory::class,
6490
 
15336 efrain 6491
            \LeadersLinked\Controller\PrivateNetworksController::class => \LeadersLinked\Factory\Controller\PrivateNetworksControllerFactory::class,
6492
            \LeadersLinked\Controller\MyPrivateNetworkController::class => \LeadersLinked\Factory\Controller\MyPrivateNetworkControllerFactory::class,
16971 efrain 6493
 
13010 nelberth 6494
            \LeadersLinked\Controller\CommunicationController::class => \LeadersLinked\Factory\Controller\CommunicationControllerFactory::class,
15607 anderson 6495
 
16766 efrain 6496
            \LeadersLinked\Controller\HelperController::class => \LeadersLinked\Factory\Controller\HelperControllerFactory::class,
6497
 
15607 anderson 6498
 
15387 efrain 6499
            \LeadersLinked\Controller\ReportController::class => \LeadersLinked\Factory\Controller\ReportControllerFactory::class,
1333 efrain 6500
            \LeadersLinked\Controller\UnknownController::class => \LeadersLinked\Factory\Controller\UnknownControllerFactory::class,
66 efrain 6501
            \LeadersLinked\Controller\TestController::class => \LeadersLinked\Factory\Controller\TestControllerFactory::class,
15607 anderson 6502
 
15392 efrain 6503
            \LeadersLinked\Controller\AptitudeController::class => \LeadersLinked\Factory\Controller\AptitudeControllerFactory::class,
6504
            \LeadersLinked\Controller\HobbyAndInterestController::class => \LeadersLinked\Factory\Controller\HobbyAndInterestControllerFactory::class,
15607 anderson 6505
 
15401 efrain 6506
            \LeadersLinked\Controller\DiscoveryContactController::class => \LeadersLinked\Factory\Controller\DiscoveryContactControllerFactory::class,
6507
            \LeadersLinked\Controller\DiscoveryContactLogController::class  => \LeadersLinked\Factory\Controller\DiscoveryContactLogControllerFactory::class,
6508
            \LeadersLinked\Controller\DiscoveryContactInteractionTypeController::class  => \LeadersLinked\Factory\Controller\DiscoveryContactInteractionTypeControllerFactory::class,
6509
            \LeadersLinked\Controller\DiscoveryContactInteractionController::class  => \LeadersLinked\Factory\Controller\DiscoveryContactInteractionControllerFactory::class,
15671 anderson 6510
            \LeadersLinked\Controller\DiscoveryContactProgressController::class => \LeadersLinked\Factory\Controller\DiscoveryContactProgressControllerFactory::class,
16971 efrain 6511
            \LeadersLinked\Controller\DiscoveryContactProgressUserController::class => \LeadersLinked\Factory\Controller\DiscoveryContactProgressUserControllerFactory::class,
16758 efrain 6512
            \LeadersLinked\Controller\DiscoveryContactReportController::class => \LeadersLinked\Factory\Controller\DiscoveryContactReportControllerFactory::class,
16974 efrain 6513
            \LeadersLinked\Controller\DiscoveryContactReportUserController::class => \LeadersLinked\Factory\Controller\DiscoveryContactReportUserControllerFactory::class,
16971 efrain 6514
            \LeadersLinked\Controller\DiscoveryContactBlackListController::class => \LeadersLinked\Factory\Controller\DiscoveryContactBlackListControllerFactory::class,
6515
            \LeadersLinked\Controller\DiscoveryContactBlackListReasonController::class => \LeadersLinked\Factory\Controller\DiscoveryContactBlackListReasonControllerFactory::class,
15649 anderson 6516
 
15442 efrain 6517
            \LeadersLinked\Controller\ActivityCenterController::Class  => \LeadersLinked\Factory\Controller\ActivityCenterControllerFactory::class,
6518
            \LeadersLinked\Controller\ActivityCenterPerformanceEvaluationController::class  => \LeadersLinked\Factory\Controller\ActivityCenterPerformanceEvaluationControllerFactory::class,
15461 efrain 6519
            \LeadersLinked\Controller\ActivityCenterRecruitmentSelectionController::class  => \LeadersLinked\Factory\Controller\ActivityCenterRecruitmentSelectionControllerFactory::class,
16817 efrain 6520
            \LeadersLinked\Controller\ActivityCenterOrganizationalClimateController::class  => \LeadersLinked\Factory\Controller\ActivityCenterOrganizationalClimateControllerFactory::class,
6521
            \LeadersLinked\Controller\ActivityCenterSurveyController::class  => \LeadersLinked\Factory\Controller\ActivityCenterSurveyControllerFactory::class,
6522
 
6523
 
6524
 
15540 efrain 6525
            \LeadersLinked\Controller\EngagementController::class => \LeadersLinked\Factory\Controller\EngagementControllerFactory::class,
15543 efrain 6526
            \LeadersLinked\Controller\EngagementRewardController::class => \LeadersLinked\Factory\Controller\EngagementRewardControllerFactory::class,
15540 efrain 6527
            \LeadersLinked\Controller\EngagementReportsController::class => \LeadersLinked\Factory\Controller\EngagementReportsControllerFactory::class,
15607 anderson 6528
 
15540 efrain 6529
            \LeadersLinked\Controller\DailyPulseController::Class  => \LeadersLinked\Factory\Controller\DailyPulseControllerFactory::class,
6530
            \LeadersLinked\Controller\DailyPulseEmojiController::Class  => \LeadersLinked\Factory\Controller\DailyPulseEmojiControllerFactory::class,
6531
            \LeadersLinked\Controller\DailyPulseReportsController::Class  => \LeadersLinked\Factory\Controller\DailyPulseReportsControllerFactory::class,
15607 anderson 6532
 
6533
 
15451 efrain 6534
            \LeadersLinked\Controller\MyCoachController::Class  => \LeadersLinked\Factory\Controller\MyCoachControllerFactory::class,
6535
            \LeadersLinked\Controller\MyCoachCategoryController::class  => \LeadersLinked\Factory\Controller\MyCoachCategoryControllerFactory::class,
15831 efrain 6536
            \LeadersLinked\Controller\MyCoachCategoryUserController::class  => \LeadersLinked\Factory\Controller\MyCoachCategoryUserControllerFactory::class,
16180 anderson 6537
 
16270 anderson 6538
 
16248 efrain 6539
            \LeadersLinked\Controller\KnowledgeAreaController::Class  => \LeadersLinked\Factory\Controller\KnowledgeAreaControllerFactory::class,
6540
            \LeadersLinked\Controller\KnowledgeAreaCategoryController::class  => \LeadersLinked\Factory\Controller\KnowledgeAreaCategoryControllerFactory::class,
6541
            \LeadersLinked\Controller\KnowledgeAreaCategoryUserController::class  => \LeadersLinked\Factory\Controller\KnowledgeAreaCategoryUserControllerFactory::class,
16701 efrain 6542
 
6543
 
6544
            \LeadersLinked\Controller\FastSurveyController::class  => \LeadersLinked\Factory\Controller\FastSurveyControllerFactory::class,
16248 efrain 6545
 
16270 anderson 6546
 
15457 efrain 6547
            \LeadersLinked\Controller\UserRequestAccessController::class  => \LeadersLinked\Factory\Controller\UserRequestAccessControllerFactory::class,
16285 efrain 6548
            \LeadersLinked\Controller\ToolsController::class  => \LeadersLinked\Factory\Controller\ToolsControllerFactory::class,
15607 anderson 6549
 
17003 efrain 6550
 
6551
 
6552
 
6553
            \LeadersLinked\Controller\MediaCategoryController::class => \LeadersLinked\Factory\Controller\MediaCategoryControllerFactory::class,
6554
            \LeadersLinked\Controller\MediaFileController::class => \LeadersLinked\Factory\Controller\MediaFileControllerFactory::class,
15607 anderson 6555
 
17007 efrain 6556
 
6557
            \LeadersLinked\Controller\HabitSkillController::Class => \LeadersLinked\Factory\Controller\HabitSkillControllerFactory::class,
6558
            \LeadersLinked\Controller\HabitUserController::Class => \LeadersLinked\Factory\Controller\HabitUserControllerFactory::class,
1 www 6559
        ],
6560
        'aliases' => [
6561
            '\LeadersLinked\Controller\AuthController' => \LeadersLinked\Controller\AuthController::class,
6562
            '\LeadersLinked\Controller\FollowerController' => \LeadersLinked\Controller\FollowerController::class,
6563
            '\LeadersLinked\Controller\FeedController' => \LeadersLinked\Controller\FeedController::class,
6564
            '\LeadersLinked\Controller\JobController' => \LeadersLinked\Controller\JobController::class,
1343 eleazar 6565
            '\LeadersLinked\Controller\RecruitmentSelectionController' => \LeadersLinked\Controller\RecruitmentSelectionController::class,
15461 efrain 6566
            '\LeadersLinked\Controller\RecruitmentSelectionApplicationController' => \LeadersLinked\Controller\RecruitmentSelectionApplicationController::class,
1385 eleazar 6567
            '\LeadersLinked\Controller\RecruitmentSelectionVacancyController' => \LeadersLinked\Controller\RecruitmentSelectionVacancyController::class,
15461 efrain 6568
            '\LeadersLinked\Controller\RecruitmentSelectionFileController' => \LeadersLinked\Controller\RecruitmentSelectionFileController::class,
6569
            '\LeadersLinked\Controller\RecruitmentSelectionInterviewController' => \LeadersLinked\Controller\RecruitmentSelectionInterviewController::class,
1 www 6570
            '\LeadersLinked\Controller\ProfileController' => \LeadersLinked\Controller\ProfileController::class,
6571
            '\LeadersLinked\Controller\CompanyController' => \LeadersLinked\Controller\CompanyController::class,
6572
            '\LeadersLinked\Controller\CompanySizeController' => \LeadersLinked\Controller\CompanySizeController::class,
6573
            '\LeadersLinked\Controller\CompetencyTypeController' => \LeadersLinked\Controller\CompetencyTypeController::class,
1102 geraldo 6574
            '\LeadersLinked\Controller\BehaviorsController' => \LeadersLinked\Controller\BehaviorsController::class,
1 www 6575
            '\LeadersLinked\Controller\CompetencyController' => \LeadersLinked\Controller\CompetencyController::class,
6576
            '\LeadersLinked\Controller\DegreeController' => \LeadersLinked\Controller\DegreeController::class,
6577
            '\LeadersLinked\Controller\EmailTemplateController' => \LeadersLinked\Controller\EmailTemplateController::class,
1089 geraldo 6578
            '\LeadersLinked\Controller\PushTemplateController' => \LeadersLinked\Controller\PushTemplateController::class,
1 www 6579
            '\LeadersLinked\Controller\GroupTypeController' => \LeadersLinked\Controller\GroupTypeController::class,
6580
            '\LeadersLinked\Controller\IndustryController' => \LeadersLinked\Controller\IndustryController::class,
6581
            '\LeadersLinked\Controller\JobCategoryController' => \LeadersLinked\Controller\JobCategoryController::class,
66 efrain 6582
            '\LeadersLinked\Controller\JobDescriptionController' => \LeadersLinked\Controller\JobDescriptionController::class,
1 www 6583
            '\LeadersLinked\Controller\PageController' => \LeadersLinked\Controller\PageController::class,
16770 efrain 6584
            '\LeadersLinked\Controller\OrganizationPositionController' => \LeadersLinked\Controller\OrganizationPositionController::class,
1 www 6585
            '\LeadersLinked\Controller\PostController' => \LeadersLinked\Controller\PostController::class,
6586
            '\LeadersLinked\Controller\SkillController' => \LeadersLinked\Controller\SkillController::class,
6587
            '\LeadersLinked\Controller\UserController' => \LeadersLinked\Controller\UserController::class,
6588
            '\LeadersLinked\Controller\DashboardController' => \LeadersLinked\Controller\DashboardController::class,
115 efrain 6589
            '\LeadersLinked\Controller\SelfEvaluationController' => \LeadersLinked\Controller\SelfEvaluationController::class,
6590
            '\LeadersLinked\Controller\SelfEvaluationFormController' => \LeadersLinked\Controller\SelfEvaluationFormController::class,
6591
            '\LeadersLinked\Controller\SelfEvaluationFormUserController' => \LeadersLinked\Controller\SelfEvaluationFormUserController::class,
247 geraldo 6592
            '\LeadersLinked\Controller\SelfEvaluationReviewController' => \LeadersLinked\Controller\SelfEvaluationReviewController::class,
4375 eleazar 6593
            '\LeadersLinked\Controller\SurveyController' => \LeadersLinked\Controller\SurveyController::class,
6594
            '\LeadersLinked\Controller\SurveyFormController' => \LeadersLinked\Controller\SurveyFormController::class,
16817 efrain 6595
            '\LeadersLinked\Controller\SurveyCampaignController' => \LeadersLinked\Controller\SurveyCampaignController::class,
6596
 
7218 eleazar 6597
            '\LeadersLinked\Controller\OrganizationalClimateController' => \LeadersLinked\Controller\OrganizationalClimateController::class,
6598
            '\LeadersLinked\Controller\OrganizationalClimateFormController' => \LeadersLinked\Controller\OrganizationalClimateFormController::class,
16817 efrain 6599
            '\LeadersLinked\Controller\OrganizationalClimateCampaignController' => \LeadersLinked\Controller\OrganizationalClimateCampaignController::class,
6600
 
6601
 
6602
 
15394 efrain 6603
            '\LeadersLinked\Controller\PerformanceEvaluationController' => \LeadersLinked\Controller\PerformanceEvaluationController::class,
982 geraldo 6604
            '\LeadersLinked\Controller\PerformanceEvaluationFormController' => \LeadersLinked\Controller\PerformanceEvaluationFormController::class,
15394 efrain 6605
            '\LeadersLinked\Controller\PerformanceEvaluationTestController' => \LeadersLinked\Controller\PerformanceEvaluationTestController::class,
1 www 6606
            '\LeadersLinked\Controller\MicrolearningController' => \LeadersLinked\Controller\MicrolearningController::class,
66 efrain 6607
            '\LeadersLinked\Controller\MicrolearningQuizController' => \LeadersLinked\Controller\MicrolearningQuizController::class,
6608
            '\LeadersLinked\Controller\MicrolearningQuestionController' => \LeadersLinked\Controller\MicrolearningQuestionController::class,
6609
            '\LeadersLinked\Controller\MicrolearningAnswerController' => \LeadersLinked\Controller\MicrolearningAnswerController::class,
1 www 6610
            '\LeadersLinked\Controller\MicrolearningTopicController' => \LeadersLinked\Controller\MicrolearningTopicController::class,
6611
            '\LeadersLinked\Controller\MicrolearningCapsuleController' => \LeadersLinked\Controller\MicrolearningCapsuleController::class,
6612
            '\LeadersLinked\Controller\MicrolearningSlideController' => \LeadersLinked\Controller\MicrolearningSlideController::class,
6613
            '\LeadersLinked\Controller\MicrolearningStudentsController' => \LeadersLinked\Controller\MicrolearningStudentsController::class,
6614
            '\LeadersLinked\Controller\MicrolearningAccessForStudentsController' => \LeadersLinked\Controller\MicrolearningAccessForStudentsController::class,
6615
            '\LeadersLinked\Controller\MicrolearningReportsController' => \LeadersLinked\Controller\MicrolearningReportsController::class,
6616
            '\LeadersLinked\Controller\MicrolearningExtendUserCompanyController' => \LeadersLinked\Controller\MicrolearningExtendUserCompanyController::class,
6617
            '\LeadersLinked\Controller\MicrolearningExtendUserFunctionController' => \LeadersLinked\Controller\MicrolearningExtendUserFunctionController::class,
6618
            '\LeadersLinked\Controller\MicrolearningExtendUserGroupController' => \LeadersLinked\Controller\MicrolearningExtendUserGroupController::class,
6619
            '\LeadersLinked\Controller\MicrolearningExtendUserInstitutionController' => \LeadersLinked\Controller\MicrolearningExtendUserInstitutionController::class,
6620
            '\LeadersLinked\Controller\MicrolearningExtendUserPartnerController' => \LeadersLinked\Controller\MicrolearningExtendUserPartnerController::class,
12792 eleazar 6621
            '\LeadersLinked\Controller\MicrolearningExtendUserStudentTypeController' => \LeadersLinked\Controller\MicrolearningExtendUserStudentTypeController::class,
1 www 6622
            '\LeadersLinked\Controller\MicrolearningExtendUserProgramController' => \LeadersLinked\Controller\MicrolearningExtendUserProgramController::class,
6623
            '\LeadersLinked\Controller\MicrolearningExtendUserSectorController' => \LeadersLinked\Controller\MicrolearningExtendUserSectorController::class,
15394 efrain 6624
            '\LeadersLinked\Controller\MicrolearningExtendUserCountryController' => \LeadersLinked\Controller\MicrolearningExtendUserCountryController::class,
16270 anderson 6625
 
17003 efrain 6626
 
16766 efrain 6627
            '\LeadersLinked\Controller\PlanningController' => \LeadersLinked\Controller\PlanningController::class,
16785 efrain 6628
            '\LeadersLinked\Controller\PlanningGoalController' => \LeadersLinked\Controller\PlanningGoalController::class,
6629
            '\LeadersLinked\Controller\PlanningObjectiveController' => \LeadersLinked\Controller\PlanningObjectiveController::class,
6630
            '\LeadersLinked\Controller\PlanningPeriodController' => \LeadersLinked\Controller\PlanningPeriodController::class,
16766 efrain 6631
            '\LeadersLinked\Controller\PlanningTaskController' => \LeadersLinked\Controller\PlanningTaskController::class,
6632
 
16785 efrain 6633
 
15336 efrain 6634
            '\LeadersLinked\Controller\MyPrivateNetworkController' => \LeadersLinked\Controller\MyPrivateNetworkController::class,
6635
            '\LeadersLinked\Controller\PrivateNetworksController' => \LeadersLinked\Controller\PrivateNetworksController::class,
16971 efrain 6636
 
6637
 
6638
 
6639
 
13010 nelberth 6640
            '\LeadersLinked\Controller\CommunicationController' => \LeadersLinked\Controller\CommunicationController::class,
16766 efrain 6641
 
6642
            '\LeadersLinked\Controller\HelperController' => \LeadersLinked\Controller\HelperController::class,
6643
 
15387 efrain 6644
            '\LeadersLinked\Controller\ReportController' => \LeadersLinked\Controller\ReportController::class,
1333 efrain 6645
            '\LeadersLinked\Controller\UnknownController' => \LeadersLinked\Controller\UnknownController::class,
13014 nelberth 6646
            '\LeadersLinked\Controller\TestController' => \LeadersLinked\Controller\TestController::class,
15392 efrain 6647
            '\LeadersLinked\Controller\AptitudeController' => \LeadersLinked\Controller\AptitudeController::class,
6648
            '\LeadersLinked\Controller\HobbyAndInterestController' => \LeadersLinked\Controller\HobbyAndInterestController::class,
15460 efrain 6649
            '\LeadersLinked\Controller\CountriesController' => \LeadersLinked\Controller\CountriesController::class,
15607 anderson 6650
 
6651
 
15401 efrain 6652
            '\LeadersLinked\Controller\DiscoveryContactController' => \LeadersLinked\Controller\DiscoveryContactController::class,
6653
            '\LeadersLinked\Controller\DiscoveryContactLogController' => \LeadersLinked\Controller\DiscoveryContactLogController::class,
6654
            '\LeadersLinked\Controller\DiscoveryContactInteractionTypeController' => \LeadersLinked\Controller\DiscoveryContactInteractionTypeController::class,
6655
            '\LeadersLinked\Controller\DiscoveryContactInteractionController' => \LeadersLinked\Controller\DiscoveryContactInteractionController::class,
15671 anderson 6656
            '\LeadersLinked\Controller\DiscoveryContactProgressController' => \LeadersLinked\Controller\DiscoveryContactProgressController::class,
16971 efrain 6657
            '\LeadersLinked\Controller\DiscoveryContactProgressController' => \LeadersLinked\Controller\DiscoveryContactProgressController::class,
6658
            '\LeadersLinked\Controller\DiscoveryContactProgressUserController' => \LeadersLinked\Controller\DiscoveryContactProgressUserController::class,
16758 efrain 6659
            '\LeadersLinked\Controller\DiscoveryContactReportController' => \LeadersLinked\Controller\DiscoveryContactReportController::class,
16974 efrain 6660
            '\LeadersLinked\Controller\DiscoveryContactReportUserController' => \LeadersLinked\Controller\DiscoveryContactReportUserController::class,
15607 anderson 6661
 
16971 efrain 6662
            '\LeadersLinked\Controller\DiscoveryContactBlackListReasonController' => \LeadersLinked\Controller\DiscoveryContactBlackListReasonController::class,
6663
            '\LeadersLinked\Controller\DiscoveryContactBlackListController' => \LeadersLinked\Controller\DiscoveryContactBlackListController::class,
6664
 
6665
 
15442 efrain 6666
            '\LeadersLinked\Controller\ActivityCenterController' => \LeadersLinked\Controller\ActivityCenterController::class,
6667
            '\LeadersLinked\Controller\ActivityCenterPerformanceEvaluationController' => \LeadersLinked\Controller\ActivityCenterPerformanceEvaluationController::class,
15461 efrain 6668
            '\LeadersLinked\Controller\ActivityCenterRecruitmentSelectionController' => \LeadersLinked\Controller\ActivityCenterRecruitmentSelectionController::class,
16817 efrain 6669
            '\LeadersLinked\Controller\ActivityCenterOrganizationalClimateController' => \LeadersLinked\Controller\ActivityCenterOrganizationalClimateController::class,
6670
            '\LeadersLinked\Controller\ActivityCenterSurveyController' => \LeadersLinked\Controller\ActivityCenterSurveyController::class,
6671
 
6672
 
15540 efrain 6673
            '\LeadersLinked\Controller\EngagementController' => \LeadersLinked\Controller\EngagementController::class,
15543 efrain 6674
            '\LeadersLinked\Controller\EngagementRewardController' => \LeadersLinked\Controller\EngagementRewardController::class,
15540 efrain 6675
            '\LeadersLinked\Controller\EngagementReportsController' => \LeadersLinked\Controller\EngagementReportsController::class,
15607 anderson 6676
 
15540 efrain 6677
            '\LeadersLinked\Controller\DailyPulseController' => \LeadersLinked\Controller\DailyPulseController::class,
6678
            '\LeadersLinked\Controller\DailyPulseEmojiController' => \LeadersLinked\Controller\DailyPulseEmojiController::class,
6679
            '\LeadersLinked\Controller\DailyPulseReportsController' => \LeadersLinked\Controller\DailyPulseReportsController::class,
15607 anderson 6680
 
15451 efrain 6681
            '\LeadersLinked\Controller\MyCoachController' => \LeadersLinked\Controller\MyCoachController::class,
6682
            '\LeadersLinked\Controller\MyCoachCategoryController' => \LeadersLinked\Controller\MyCoachCategoryController::class,
15831 efrain 6683
            '\LeadersLinked\Controller\MyCoachCategoryUserController' => \LeadersLinked\Controller\MyCoachCategoryUserController::class,
16180 anderson 6684
 
16248 efrain 6685
            '\LeadersLinked\Controller\KnowledgeAreaController' => \LeadersLinked\Controller\KnowledgeAreaController::class,
6686
            '\LeadersLinked\Controller\KnowledgeAreaCategoryController' => \LeadersLinked\Controller\KnowledgeAreaCategoryController::class,
6687
            '\LeadersLinked\Controller\KnowledgeAreaCategoryUserController' => \LeadersLinked\Controller\KnowledgeAreaCategoryUserController::class,
16270 anderson 6688
 
16701 efrain 6689
            '\LeadersLinked\Controller\FastSurveyController' => \LeadersLinked\Controller\FastSurveyController::class,
16270 anderson 6690
 
15457 efrain 6691
            '\LeadersLinked\Controller\UserRequestAccessController' => \LeadersLinked\Controller\UserRequestAccessController::Class,
16285 efrain 6692
            '\LeadersLinked\Controller\ToolsController' => \LeadersLinked\Controller\ToolsController::Class,
17003 efrain 6693
 
6694
 
6695
            '\LeadersLinked\Controller\MediaCategoryController' => \LeadersLinked\Controller\MediaCategoryController::Class,
6696
            '\LeadersLinked\Controller\MediaFileController' => \LeadersLinked\Controller\MediaFileController::Class,
17007 efrain 6697
 
6698
 
6699
            '\LeadersLinked\Controller\HabitSkillController' => \LeadersLinked\Controller\HabitSkillController::Class,
6700
            '\LeadersLinked\Controller\HabitUserController' => \LeadersLinked\Controller\HabitUserController::Class,
1 www 6701
        ]
6702
    ],
6703
    'laminas-cli' => [
16643 efrain 6704
        'commands' => [
6705
            'check-discovery-contacts' => \LeadersLinked\Command\CheckDiscoveryContactCommand::class,
16766 efrain 6706
            'duplicate-discovery-contacts' => \LeadersLinked\Command\DuplicateDiscoveryContactCommand::class,
16643 efrain 6707
        ]
1 www 6708
    ],
6709
    'service_manager' => [
6710
        'abstract_factories' => [
6711
            \Laminas\Db\Adapter\AdapterAbstractServiceFactory::class
6712
        ],
6713
        'factories' => [
6714
            'RenderingStrategy' => function ($container) {
6715
                $translator = $container->get('MvcTranslator');
6716
                return new \LeadersLinked\View\RenderingStrategy($translator);
6717
            },
6718
            'menuNavigation' => \LeadersLinked\Navigation\MenuNavigation::class,
6719
            'footerNavigation' => \LeadersLinked\Navigation\FooterNavigation::class,
16643 efrain 6720
            \LeadersLinked\Command\CheckDiscoveryContactCommand::class => \LeadersLinked\Factory\Command\CheckDiscoveryContactCommandFactory::class,
16766 efrain 6721
            \LeadersLinked\Command\DuplicateDiscoveryContactCommand::class => \LeadersLinked\Factory\Command\DuplicateDiscoveryContactCommandFactory::class,
16643 efrain 6722
 
1089 geraldo 6723
        ],
15607 anderson 6724
        'aliases' => [ // 'leaders-linked-storage' => \LeadersLinked\Service\StorageService::class
1 www 6725
        ]
6726
    ],
6727
    'view_helpers' => [
6728
        'factories' => [
6729
            \LeadersLinked\Helper\CurrentUserHelper::class => \LeadersLinked\Factory\Helper\CurrentUserHelperFactory::class,
15336 efrain 6730
            \LeadersLinked\Helper\CurrentNetworkHelper::class => \LeadersLinked\Factory\Helper\CurrentNetworkHelperFactory::class,
6731
            \LeadersLinked\Helper\NetworkFavicoHelper::class => \LeadersLinked\Factory\Helper\NetworkFavicoHelperFactory::class,
6732
            \LeadersLinked\Helper\NetworkLogoHelper::class => \LeadersLinked\Factory\Helper\NetworkLogoHelperFactory::class,
6733
            \LeadersLinked\Helper\NetworkNavbarHelper::class => \LeadersLinked\Factory\Helper\NetworkNavbarHelperFactory::class,
6734
            \LeadersLinked\Helper\NetworkStylesAndColorsHelper::class => \LeadersLinked\Factory\Helper\NetworkStylesAndColorsHelperFactory::class,
15607 anderson 6735
 
1 www 6736
        ],
6737
        'invokables' => [
6738
            'menuHelper' => \LeadersLinked\Helper\MenuHelper::class,
6739
        ],
6740
        'aliases' => [
15607 anderson 6741
 
1 www 6742
            'currentUserHelper' => \LeadersLinked\Helper\CurrentUserHelper::class,
15336 efrain 6743
            'currentNetworkHelper' =>  \LeadersLinked\Helper\CurrentNetworkHelper::class,
6744
            'networkLogoHelper'  => \LeadersLinked\Helper\NetworkLogoHelper::class,
6745
            'networkNavbarHelper'  => \LeadersLinked\Helper\NetworkNavbarHelper::class,
17003 efrain 6746
            'networkFavicoHelper'  => \LeadersLinked\Helper\NetworkFavicoHelper::class,
15336 efrain 6747
            'networkStylesAndColorsHelper'  => \LeadersLinked\Helper\NetworkStylesAndColorsHelper::class,
15607 anderson 6748
 
1 www 6749
        ]
6750
    ],
6751
    'controller_plugins' => [
6752
        'invokables' => [],
6753
        'factories' => [
15336 efrain 6754
            \LeadersLinked\Plugin\CurrentUserPlugin::class => \LeadersLinked\Factory\Plugin\CurrentUserPluginFactory::class,
6755
            \LeadersLinked\Plugin\CurrentNetworkPlugin::class => \LeadersLinked\Factory\Plugin\CurrentNetworkPluginFactory::class,
1 www 6756
        ],
6757
        'aliases' => [
15607 anderson 6758
            'currentUserPlugin' => \LeadersLinked\Plugin\CurrentUserPlugin::class,
15336 efrain 6759
            'currentNetworkPlugin' => \LeadersLinked\Plugin\CurrentNetworkPlugin::class,
1 www 6760
        ]
6761
    ],
6762
    'view_manager' => [
6763
        'display_not_found_reason' => true,
6764
        'display_exceptions' => true,
6765
        'doctype' => 'HTML5',
6766
        'not_found_template' => 'error/404',
6767
        'exception_template' => 'error/index',
6768
        'template_map' => [
6769
            'layout/layout' => __DIR__ . '/../view/layout/layout.phtml',
6770
            'error/404' => __DIR__ . '/../view/error/404.phtml',
6771
            'error/index' => __DIR__ . '/../view/error/index.phtml'
6772
        ],
6773
        'template_path_stack' => [
6774
            __DIR__ . '/../view'
6775
        ],
6776
        'strategies' => [
6777
            'ViewJsonStrategy',
6778
            'RenderingStrategy'
6779
        ]
6780
    ]
6781
];