Proyectos de Subversion LeadersLinked - Backend

Rev

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