Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16285 | Rev 16643 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

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