Proyectos de Subversion LeadersLinked - Backend

Rev

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