Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 17012 | Rev 17018 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

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