Proyectos de Subversion LeadersLinked - Backend

Rev

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