Proyectos de Subversion LeadersLinked - Backend

Rev

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