Proyectos de Subversion LeadersLinked - Backend

Rev

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