Proyectos de Subversion LeadersLinked - Backend

Rev

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