Proyectos de Subversion LeadersLinked - Backend

Rev

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

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