Proyectos de Subversion LeadersLinked - Backend

Rev

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