Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 15657 | Rev 15671 | 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' => [
15644 anderson 4319
                        'type' => Literal::class,
15401 efrain 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
 
15637 anderson 4334
                    //Anderson routes
4335
                    'progress-by-day' => [
15649 anderson 4336
                        'type' => Literal::class, // exact match of URI path
15637 anderson 4337
                        'options' => [
4338
                            'route' => '/progress-by-day', // URI path
4339
                            'defaults' => [
15657 anderson 4340
                                'controller' => '\LeadersLinked\Controller\DiscoveryContactLogController', // unique name
15637 anderson 4341
                                'action'     => 'index',
4342
                            ],
4343
                        ],
4344
                    ],
4345
 
15401 efrain 4346
                ]
4347
            ],
4348
 
15607 anderson 4349
 
4350
 
1333 efrain 4351
            'development-and-training' => [
4352
                'type' => Literal::class,
4353
                'options' => [
4354
                    'route' => '/development-and-training',
4355
                    'defaults' => [
4356
                        'controller' => '\LeadersLinked\Controller\UnknownController',
4357
                        'action' => 'index'
4358
                    ]
4359
                ],
4360
                'may_terminate' => true,
15607 anderson 4361
                'child_routes' => []
1333 efrain 4362
            ],
1477 efrain 4363
 
15607 anderson 4364
 
1477 efrain 4365
            'recruitment-and-selection' => [
1333 efrain 4366
                'type' => Literal::class,
4367
                'options' => [
1477 efrain 4368
                    'route' => '/recruitment-and-selection',
1333 efrain 4369
                    'defaults' => [
1477 efrain 4370
                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionController',
1333 efrain 4371
                        'action' => 'index'
4372
                    ]
4373
                ],
4374
                'may_terminate' => true,
4375
                'child_routes' => [
1477 efrain 4376
                    'vacancies' => [
1345 eleazar 4377
                        'type' => Literal::class,
4378
                        'options' => [
1477 efrain 4379
                            'route' => '/vacancies',
1345 eleazar 4380
                            'defaults' => [
1385 eleazar 4381
                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionVacancyController',
1345 eleazar 4382
                                'action' => 'index'
4383
                            ]
4384
                        ],
4385
                        'may_terminate' => true,
4386
                        'child_routes' => [
4387
                            'add' => [
4388
                                'type' => Literal::class,
4389
                                'options' => [
4390
                                    'route' => '/add',
4391
                                    'defaults' => [
1385 eleazar 4392
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionVacancyController',
1345 eleazar 4393
                                        'action' => 'add'
4394
                                    ]
4395
                                ]
4396
                            ],
4397
                            'edit' => [
4398
                                'type' => Segment::class,
4399
                                'options' => [
4400
                                    'route' => '/edit/:id',
4401
                                    'constraints' => [
4402
                                        'id' => '[A-Za-z0-9\-]+\=*'
4403
                                    ],
4404
                                    'defaults' => [
1385 eleazar 4405
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionVacancyController',
1345 eleazar 4406
                                        'action' => 'edit'
4407
                                    ]
4408
                                ]
4409
                            ],
4410
                            'delete' => [
4411
                                'type' => Segment::class,
4412
                                'options' => [
4413
                                    'route' => '/delete/:id',
4414
                                    'constraints' => [
4415
                                        'id' => '[A-Za-z0-9\-]+\=*'
4416
                                    ],
4417
                                    'defaults' => [
1385 eleazar 4418
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionVacancyController',
1345 eleazar 4419
                                        'action' => 'delete'
4420
                                    ]
4421
                                ]
4422
                            ]
4423
                        ]
4424
                    ],
15461 efrain 4425
                    'applications' => [
4426
                        'type' =>  Literal::class,
4427
                        'options' => [
4428
                            'route' => '/applications',
4429
                            'defaults' => [
4430
                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionApplicationController',
4431
                                'action' => 'index'
4432
                            ]
4433
                        ],
4434
                        'may_terminate' => true,
4435
                        'child_routes' => [
4436
                            'add' => [
4437
                                'type' => Segment::class,
4438
                                'options' => [
4439
                                    'route' => '/add/vacancy/:vacancy_id',
4440
                                    'constraints' => [
4441
                                        'vacancy_id' => '[A-Za-z0-9\-]+\=*'
4442
                                    ],
4443
                                    'defaults' => [
4444
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionApplicationController',
4445
                                        'action' => 'add'
4446
                                    ]
4447
                                ]
4448
                            ],
4449
                            'delete' => [
4450
                                'type' => Segment::class,
4451
                                'options' => [
4452
                                    'route' => '/delete/vacancy/:vacancy_id/application/:application_id',
4453
                                    'constraints' => [
4454
                                        'vacancy_id' => '[A-Za-z0-9\-]+\=*',
4455
                                        'application_id' => '[A-Za-z0-9\-]+\=*'
4456
                                    ],
4457
                                    'defaults' => [
4458
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionApplicationController',
4459
                                        'action' => 'delete'
4460
                                    ]
4461
                                ]
4462
                            ],
4463
                            'user-by-email' => [
4464
                                'type' => Literal::class,
4465
                                'options' => [
4466
                                    'route' => '/user-by-email',
4467
                                    'defaults' => [
4468
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionApplicationController',
4469
                                        'action' => 'userByEmail'
4470
                                    ]
4471
                                ]
4472
                            ],
4473
                            'view' => [
4474
                                'type' => Segment::class,
4475
                                'options' => [
4476
                                    'route' => '/view/vacancy/:vacancy_id/application/:application_id',
4477
                                    'constraints' => [
4478
                                        'vacancy_id' => '[A-Za-z0-9\-]+\=*',
4479
                                        'application_id' => '[A-Za-z0-9\-]+\=*'
4480
                                    ],
4481
                                    'defaults' => [
4482
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionApplicationController',
4483
                                        'action' => 'view'
4484
                                    ]
4485
                                ]
4486
                            ],
4487
                            'comment' => [
4488
                                'type' => Segment::class,
4489
                                'options' => [
4490
                                    'route' => '/comment/vacancy/:vacancy_id/application/:application_id',
4491
                                    'constraints' => [
4492
                                        'vacancy_id' => '[A-Za-z0-9\-]+\=*',
4493
                                        'application_id' => '[A-Za-z0-9\-]+\=*'
4494
                                    ],
4495
                                    'defaults' => [
4496
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionApplicationController',
4497
                                        'action' => 'comment'
4498
                                    ]
4499
                                ]
4500
                            ],
4501
                            'status' => [
4502
                                'type' => Segment::class,
4503
                                'options' => [
4504
                                    'route' => '/status/vacancy/:vacancy_id/application/:application_id',
4505
                                    'constraints' => [
4506
                                        'vacancy_id' => '[A-Za-z0-9\-]+\=*',
4507
                                        'iapplication_id' => '[A-Za-z0-9\-]+\=*'
4508
                                    ],
4509
                                    'defaults' => [
4510
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionApplicationController',
4511
                                        'action' => 'status'
4512
                                    ]
4513
                                ]
4514
                            ],
4515
                            'level' => [
4516
                                'type' => Segment::class,
4517
                                'options' => [
4518
                                    'route' => '/level/vacancy/:vacancy_id/application/:application_id',
4519
                                    'constraints' => [
4520
                                        'vacancy_id' => '[A-Za-z0-9\-]+\=*',
4521
                                        'application_id' => '[A-Za-z0-9\-]+\=*'
4522
                                    ],
4523
                                    'defaults' => [
4524
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionApplicationController',
4525
                                        'action' => 'level'
4526
                                    ]
4527
                                ]
4528
                            ],
4529
                            'files' => [
4530
                                'type' => Segment::class,
4531
                                'options' => [
4532
                                    'route' => '/files/vacancy/:vacancy_id/application/:application_id',
4533
                                    'constraints' => [
4534
                                        'vacancy_id' => '[A-Za-z0-9\-]+\=*',
4535
                                        'application_id' => '[A-Za-z0-9\-]+\=*'
4536
                                    ],
4537
                                    'defaults' => [
4538
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionFileController',
4539
                                        'action' => 'index'
4540
                                    ]
4541
                                ],
4542
                                'may_terminate' => true,
4543
                                'child_routes' => [
4544
                                    'add' => [
4545
                                        'type' => Segment::class,
4546
                                        'options' => [
4547
                                            'route' => '/add',
4548
                                            'defaults' => [
4549
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionFileController',
4550
                                                'action' => 'add'
4551
                                            ]
4552
                                        ]
4553
                                    ],
4554
                                    'delete' => [
4555
                                        'type' => Segment::class,
4556
                                        'options' => [
4557
                                            'route' => '/delete/:id',
4558
                                            'constraints' => [
4559
                                                'id' => '[A-Za-z0-9\-]+\=*'
4560
                                            ],
4561
                                            'defaults' => [
4562
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionFileController',
4563
                                                'action' => 'delete'
4564
                                            ]
4565
                                        ]
4566
                                    ],
4567
                                    'view' => [
4568
                                        'type' => Segment::class,
4569
                                        'options' => [
4570
                                            'route' => '/view/:id',
4571
                                            'constraints' => [
4572
                                                'id' => '[A-Za-z0-9\-]+\=*'
4573
                                            ],
4574
                                            'defaults' => [
4575
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionFileController',
4576
                                                'action' => 'view'
4577
                                            ]
4578
                                        ]
4579
                                    ],
15607 anderson 4580
                                ]
15461 efrain 4581
                            ],
4582
                            'interviews' => [
4583
                                'type' => Segment::class,
4584
                                'options' => [
4585
                                    'route' => '/interviews/vacancy/:vacancy_id/application/:application_id',
4586
                                    'constraints' => [
4587
                                        'vacancy_id' => '[A-Za-z0-9\-]+\=*',
4588
                                        'application_id' => '[A-Za-z0-9\-]+\=*'
4589
                                    ],
4590
                                    'defaults' => [
4591
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewController',
4592
                                        'action' => 'index'
4593
                                    ]
4594
                                ],
4595
                                'may_terminate' => true,
4596
                                'child_routes' => [
4597
                                    'add' => [
4598
                                        'type' => Segment::class,
4599
                                        'options' => [
4600
                                            'route' => '/add',
4601
                                            'defaults' => [
4602
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewController',
4603
                                                'action' => 'add'
4604
                                            ]
4605
                                        ]
4606
                                    ],
4607
                                    'delete' => [
4608
                                        'type' => Segment::class,
4609
                                        'options' => [
4610
                                            'route' => '/delete/:id',
4611
                                            'constraints' => [
4612
                                                'id' => '[A-Za-z0-9\-]+\=*'
4613
                                            ],
4614
                                            'defaults' => [
4615
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewController',
4616
                                                'action' => 'delete'
4617
                                            ]
4618
                                        ]
4619
                                    ],
4620
                                    'report' => [
4621
                                        'type' => Segment::class,
4622
                                        'options' => [
4623
                                            'route' => '/report/:id',
4624
                                            'constraints' => [
4625
                                                'id' => '[A-Za-z0-9\-]+\=*'
4626
                                            ],
4627
                                            'defaults' => [
4628
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewController',
4629
                                                'action' => 'report'
4630
                                            ]
4631
                                        ]
4632
                                    ],
4633
                                    'edit' => [
4634
                                        'type' => Segment::class,
4635
                                        'options' => [
4636
                                            'route' => '/edit/:id',
4637
                                            'constraints' => [
4638
                                                'id' => '[A-Za-z0-9\-]+\=*'
4639
                                            ],
4640
                                            'defaults' => [
4641
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewController',
4642
                                                'action' => 'edit'
4643
                                            ]
4644
                                        ]
4645
                                    ],
4646
                                ]
4647
                            ],
4648
                        ]
4649
 
15607 anderson 4650
 
4651
                    ],
15461 efrain 4652
                    /*
1459 eleazar 4653
                    'candidates' => [
4654
                        'type' => Segment::class,
4655
                        'options' => [
1501 eleazar 4656
                            'route' => '/candidates[/:vacancy_uuid]',
1459 eleazar 4657
                            'constraints' => [
1508 eleazar 4658
                                'vacancy_uuid' => '[A-Za-z0-9\-]+\=*'
1459 eleazar 4659
                            ],
4660
                            'defaults' => [
4661
                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
1502 eleazar 4662
                                'action' => 'index',
1503 eleazar 4663
                                'vacancy_uuid' => '',
1459 eleazar 4664
                            ]
4665
                        ],
4666
                        'may_terminate' => true,
4667
                        'child_routes' => [
4668
                            'add' => [
4669
                                'type' => Literal::class,
4670
                                'options' => [
1506 eleazar 4671
                                    'route' => '/add',
1459 eleazar 4672
                                    'defaults' => [
4673
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
4674
                                        'action' => 'add'
4675
                                    ]
4676
                                ]
4677
                            ],
4678
                            'edit' => [
4679
                                'type' => Segment::class,
4680
                                'options' => [
4681
                                    'route' => '/edit/:id',
4682
                                    'constraints' => [
4683
                                        'id' => '[A-Za-z0-9\-]+\=*'
4684
                                    ],
4685
                                    'defaults' => [
4686
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
4687
                                        'action' => 'edit'
4688
                                    ]
4689
                                ]
4690
                            ],
4691
                            'delete' => [
4692
                                'type' => Segment::class,
4693
                                'options' => [
4694
                                    'route' => '/delete/:id',
4695
                                    'constraints' => [
4696
                                        'id' => '[A-Za-z0-9\-]+\=*'
4697
                                    ],
4698
                                    'defaults' => [
4699
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
4700
                                        'action' => 'delete'
4701
                                    ]
4702
                                ]
1630 eleazar 4703
                            ],
4704
                            'email' => [
4705
                                'type' => Literal::class,
4706
                                'options' => [
4707
                                    'route' => '/email',
4708
                                    'defaults' => [
4709
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
4710
                                        'action' => 'email'
4711
                                    ]
4712
                                ]
4713
                            ],
1459 eleazar 4714
                        ]
4715
                    ],
1635 eleazar 4716
                    'user-by-email' => [
4717
                        'type' => Literal::class,
4718
                        'options' => [
4719
                            'route' => '/user-by-email',
4720
                            'defaults' => [
4721
                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
4722
                                'action' => 'email'
4723
                            ]
4724
                        ]
1709 eleazar 4725
                    ],
4726
                    'interview' => [
4727
                        'type' => Segment::class,
4728
                        'options' => [
4729
                            'route' => '/interview',
4730
                            'defaults' => [
4731
                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewController',
4732
                                'action' => 'index',
4733
                            ],
4734
                        ],
4735
                        'may_terminate' => true,
4736
                        'child_routes' => [
4737
                            'form' => [
4351 eleazar 4738
                                'type' => Segment::class,
1709 eleazar 4739
                                'options' => [
4349 eleazar 4740
                                    'route' => '/form[/:vacancy_uuid]',
4741
                                    'constraints' => [
4742
                                        'vacancy_uuid' => '[A-Za-z0-9\-]+\=*'
4743
                                    ],
1709 eleazar 4744
                                    'defaults' => [
1711 eleazar 4745
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
2029 eleazar 4746
                                        'action' => 'index',
4352 eleazar 4747
                                        'vacancy_uuid' => '',
1709 eleazar 4748
                                    ],
4749
                                ],
4750
                                'may_terminate' => true,
4751
                                'child_routes' => [
4752
                                    'add' => [
2059 eleazar 4753
                                        'type' => Segment::class,
1709 eleazar 4754
                                        'options' => [
3563 eleazar 4755
                                            'route' => '/add',
1709 eleazar 4756
                                            'defaults' => [
1899 eleazar 4757
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
1709 eleazar 4758
                                                'action' => 'add'
4759
                                            ],
4760
                                        ],
4761
                                    ],
4762
                                    'edit' => [
2775 eleazar 4763
                                        'type' => Segment::class,
1709 eleazar 4764
                                        'options' => [
2764 eleazar 4765
                                            'route' => '/edit/:interview_uuid',
2765 eleazar 4766
                                            'constraints' => [
4767
                                                'interview_uuid' => '[A-Za-z0-9\-]+\=*'
4768
                                            ],
1709 eleazar 4769
                                            'defaults' => [
1944 eleazar 4770
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
1709 eleazar 4771
                                                'action' => 'edit'
4772
                                            ],
4773
                                        ],
4774
                                    ],
4775
                                    'delete' => [
2775 eleazar 4776
                                        'type' => Segment::class,
1709 eleazar 4777
                                        'options' => [
2764 eleazar 4778
                                            'route' => '/delete/:interview_uuid',
2765 eleazar 4779
                                            'constraints' => [
4780
                                                'interview_uuid' => '[A-Za-z0-9\-]+\=*'
4781
                                            ],
1709 eleazar 4782
                                            'defaults' => [
2766 eleazar 4783
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
1709 eleazar 4784
                                                'action' => 'delete'
4785
                                            ],
4786
                                        ],
4787
                                    ],
8781 eleazar 4788
                                ],
4789
                            ],
4790
                            'file' => [
4791
                                'type' => Segment::class,
4792
                                'options' => [
4793
                                    'route' => '/:interview_uuid/file',
4794
                                    'constraints' => [
4795
                                        'interview_uuid' => '[A-Za-z0-9\-]+\=*'
4796
                                    ],
4797
                                    'defaults' => [
4798
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFileController',
4799
                                        'action' => 'index'
4800
                                    ],
4801
                                ],
4802
                                'may_terminate' => true,
4803
                                'child_routes' => [
4804
                                    'add' => [
4805
                                        'type' => Literal::class,
4806
                                        'options' => [
4807
                                            'route' => '/add',
4808
                                            'defaults' => [
4809
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFileController',
4810
                                                'action' => 'add'
4811
                                            ]
4812
                                        ]
4813
                                    ],
4814
                                    'edit' => [
8779 eleazar 4815
                                        'type' => Segment::class,
4816
                                        'options' => [
8874 eleazar 4817
                                            'route' => '/edit/:id',
8779 eleazar 4818
                                            'constraints' => [
8781 eleazar 4819
                                                'id' => '[A-Za-z0-9\-]+\=*'
8779 eleazar 4820
                                            ],
4821
                                            'defaults' => [
4822
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFileController',
8781 eleazar 4823
                                                'action' => 'edit'
4824
                                            ]
4825
                                        ]
4826
                                    ],
4827
                                    'delete' => [
4828
                                        'type' => Segment::class,
4829
                                        'options' => [
8874 eleazar 4830
                                            'route' => '/delete/:id',
8781 eleazar 4831
                                            'constraints' => [
4832
                                                'id' => '[A-Za-z0-9\-]+\=*'
8779 eleazar 4833
                                            ],
8781 eleazar 4834
                                            'defaults' => [
4835
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFileController',
4836
                                                'action' => 'delete'
8779 eleazar 4837
                                            ]
4838
                                        ]
8874 eleazar 4839
                                    ],
8781 eleazar 4840
                                ]
1709 eleazar 4841
                            ],
4842
                            'report' =>[
4843
                                'type' => Segment::class,
4844
                                'options' => [
2864 eleazar 4845
                                    'route' => '/report/:interview_uuid',
4846
                                    'constraints' => [
4847
                                        'interview_uuid' => '[A-Za-z0-9\-]+\=*'
4848
                                    ],
1709 eleazar 4849
                                    'defaults' => [
2864 eleazar 4850
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
4851
                                        'action' => 'report',
1709 eleazar 4852
                                    ],
4853
                                ],
4854
                            ],
3571 eleazar 4855
                            'vacancy' =>[
4856
                                'type' => Segment::class,
4857
                                'options' => [
4858
                                    'route' => '/vacancy/:vacancy_uuid',
4859
                                    'constraints' => [
4860
                                        'vacancy_uuid' => '[A-Za-z0-9\-]+\=*'
4861
                                    ],
4862
                                    'defaults' => [
4863
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
4864
                                        'action' => 'vacancy',
4865
                                    ],
4866
                                ],
4867
                            ],
4367 eleazar 4868
                            'type' =>[
4365 eleazar 4869
                                'type' => Segment::class,
4870
                                'options' => [
4367 eleazar 4871
                                    'route' => '/type/:candidate_uuid',
4365 eleazar 4872
                                    'constraints' => [
4873
                                        'candidate_uuid' => '[A-Za-z0-9\-]+\=*'
4874
                                    ],
4875
                                    'defaults' => [
4876
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
4367 eleazar 4877
                                        'action' => 'type',
4365 eleazar 4878
                                    ],
4879
                                ],
4880
                            ],
1709 eleazar 4881
                        ],
15607 anderson 4882
                    ], */
1459 eleazar 4883
                ],
1333 efrain 4884
            ],
15607 anderson 4885
 
1333 efrain 4886
            'induction' => [
4887
                'type' => Literal::class,
4888
                'options' => [
4889
                    'route' => '/induction',
4890
                    'defaults' => [
4891
                        'controller' => '\LeadersLinked\Controller\UnknownController',
4892
                        'action' => 'index'
4893
                    ]
4894
                ],
4895
                'may_terminate' => true,
15607 anderson 4896
                'child_routes' => []
1333 efrain 4897
            ],
15607 anderson 4898
 
1333 efrain 4899
            'organizational-climate' => [
4900
                'type' => Literal::class,
4901
                'options' => [
4902
                    'route' => '/organizational-climate',
4903
                    'defaults' => [
7218 eleazar 4904
                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateController',
1333 efrain 4905
                        'action' => 'index'
4906
                    ]
4907
                ],
4908
                'may_terminate' => true,
4909
                'child_routes' => [
7218 eleazar 4910
                    'add' => [
4911
                        'type' => Segment::class,
4912
                        'options' => [
4913
                            'route' => '/add',
4914
                            'defaults' => [
7295 eleazar 4915
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateController',
7218 eleazar 4916
                                'action' => 'add'
4917
                            ],
4918
                        ],
4919
                    ],
4920
                    'edit' => [
4921
                        'type' => Segment::class,
4922
                        'options' => [
4923
                            'route' => '/edit/:id',
4924
                            'defaults' => [
7295 eleazar 4925
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateController',
7218 eleazar 4926
                                'action' => 'edit'
4927
                            ],
4928
                        ],
4929
                    ],
4930
                    'delete' => [
4931
                        'type' => Segment::class,
4932
                        'options' => [
4933
                            'route' => '/delete/:id',
4934
                            'defaults' => [
7295 eleazar 4935
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateController',
7218 eleazar 4936
                                'action' => 'delete'
4937
                            ],
4938
                        ],
4939
                    ],
4940
                    'segment' => [
4941
                        'type' => Segment::class,
4942
                        'options' => [
4943
                            'route' => '/segment/:id',
8536 efrain 4944
                            'constraints' => [
4945
                                'id' => '[A-Za-z0-9\-]+\=*'
4946
                            ],
7218 eleazar 4947
                            'defaults' => [
7295 eleazar 4948
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateController',
7218 eleazar 4949
                                'action' => 'segment'
4950
                            ],
4951
                        ],
4952
                    ],
4953
                    'form' => [
4954
                        'type' => Segment::class,
4955
                        'options' => [
4956
                            'route' => '/form',
4957
                            'defaults' => [
7295 eleazar 4958
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateFormController',
7218 eleazar 4959
                                'action' => 'index',
4960
                            ],
4961
                        ],
4962
                        'may_terminate' => true,
4963
                        'child_routes' => [
4964
                            'add' => [
4965
                                'type' => Segment::class,
4966
                                'options' => [
4967
                                    'route' => '/add',
4968
                                    'defaults' => [
7295 eleazar 4969
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateFormController',
7218 eleazar 4970
                                        'action' => 'add'
4971
                                    ],
4972
                                ],
4973
                            ],
4974
                            'edit' => [
4975
                                'type' => Segment::class,
4976
                                'options' => [
4977
                                    'route' => '/edit/:id',
4978
                                    'constraints' => [
4979
                                        'id' => '[A-Za-z0-9\-]+\=*'
4980
                                    ],
4981
                                    'defaults' => [
7295 eleazar 4982
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateFormController',
7218 eleazar 4983
                                        'action' => 'edit'
4984
                                    ]
4985
                                ]
4986
                            ],
4987
                            'delete' => [
4988
                                'type' => Segment::class,
4989
                                'options' => [
4990
                                    'route' => '/delete/:id',
4991
                                    'constraints' => [
4992
                                        'id' => '[A-Za-z0-9\-]+\=*'
4993
                                    ],
4994
                                    'defaults' => [
7295 eleazar 4995
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateFormController',
7218 eleazar 4996
                                        'action' => 'delete'
4997
                                    ]
4998
                                ]
4999
                            ]
5000
                        ],
5001
                    ],
5002
                    'test' => [
5003
                        'type' => Segment::class,
5004
                        'options' => [
14187 efrain 5005
                            'route' => '/test[/:organizational_climate_id]',
7218 eleazar 5006
                            'constraints' => [
14187 efrain 5007
                                'organizational_climate_id' => '[A-Za-z0-9\-]+\=*'
7218 eleazar 5008
                            ],
5009
                            'defaults' => [
7295 eleazar 5010
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateTestController',
7218 eleazar 5011
                                'action' => 'index',
14187 efrain 5012
                                'organizational_climate_id' => '',
7218 eleazar 5013
                            ],
5014
                        ],
5015
                        'may_terminate' => true,
5016
                        'child_routes' => [
5017
                            'add' => [
5018
                                'type' => Segment::class,
5019
                                'options' => [
5020
                                    'route' => '/add',
5021
                                    'defaults' => [
7295 eleazar 5022
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateTestController',
7218 eleazar 5023
                                        'action' => 'add',
5024
                                    ],
5025
                                ],
5026
                            ],
5027
                            'report' => [
5028
                                'type' => Segment::class,
5029
                                'options' => [
5030
                                    'route' => '/report/:uuid',
5031
                                    'defaults' => [
7295 eleazar 5032
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateTestController',
7218 eleazar 5033
                                        'action' => 'report',
5034
                                    ],
5035
                                ],
5036
                            ],
5037
                            'delete' => [
5038
                                'type' => Segment::class,
5039
                                'options' => [
5040
                                    'route' => '/delete/:id',
5041
                                    'defaults' => [
7295 eleazar 5042
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateTestController',
7218 eleazar 5043
                                        'action' => 'delete'
5044
                                    ]
5045
                                ]
5046
                            ]
5047
                        ],
5048
                    ],
5049
                    'report' => [
5050
                        'type' => Segment::class,
5051
                        'options' => [
14187 efrain 5052
                            'route' => '/report[/:organizational_climate_id]',
7218 eleazar 5053
                            'constraints' => [
14187 efrain 5054
                                'organizational_climate_id' => '[A-Za-z0-9\-]+\=*'
7218 eleazar 5055
                            ],
5056
                            'defaults' => [
7295 eleazar 5057
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateReportController',
7218 eleazar 5058
                                'action' => 'index',
14187 efrain 5059
                                'organizational_climate_id' => '',
7218 eleazar 5060
                            ],
5061
                        ],
5062
                        'may_terminate' => true,
5063
                        'child_routes' => [
5064
                            'all' => [
5065
                                'type' => Segment::class,
5066
                                'options' => [
5067
                                    'route' => '/all',
5068
                                    'defaults' => [
7295 eleazar 5069
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateReportController',
7218 eleazar 5070
                                        'action' => 'all',
5071
                                    ]
5072
                                ]
5073
                            ],
5074
                            'overview' => [
5075
                                'type' => Segment::class,
5076
                                'options' => [
5077
                                    'route' => '/overview',
5078
                                    'defaults' => [
7295 eleazar 5079
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateReportController',
7218 eleazar 5080
                                        'action' => 'overview',
5081
                                    ]
5082
                                ]
5083
                            ],
15149 efrain 5084
                            'excel' => [
7218 eleazar 5085
                                'type' => Segment::class,
5086
                                'options' => [
15149 efrain 5087
                                    'route' => '/excel',
7218 eleazar 5088
                                    'defaults' => [
7295 eleazar 5089
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateReportController',
15149 efrain 5090
                                        'action' => 'excel',
7218 eleazar 5091
                                    ]
5092
                                ]
5093
                            ],
5094
                        ],
5095
                    ],
5096
                ],
1333 efrain 5097
            ],
15607 anderson 5098
 
1333 efrain 5099
            'culture' => [
5100
                'type' => Literal::class,
5101
                'options' => [
5102
                    'route' => '/culture',
5103
                    'defaults' => [
5104
                        'controller' => '\LeadersLinked\Controller\UnknownController',
5105
                        'action' => 'index'
5106
                    ]
5107
                ],
5108
                'may_terminate' => true,
15607 anderson 5109
                'child_routes' => []
1333 efrain 5110
            ],
13524 nelberth 5111
            'inmail' => [
13553 nelberth 5112
                'type' => Literal::class,
1333 efrain 5113
                'options' => [
13553 nelberth 5114
                    'route' => '/inmail',
15607 anderson 5115
 
1333 efrain 5116
                    'defaults' => [
13528 nelberth 5117
                        'controller' => '\LeadersLinked\Controller\InMailController',
13170 nelberth 5118
                        'action' => 'index'
1333 efrain 5119
                    ]
5120
                ],
5121
                'may_terminate' => true,
5122
                'child_routes' => [
13760 nelberth 5123
                    'sendall' => [
5124
                        'type' => Literal::class,
5125
                        'options' => [
5126
                            'route' => '/sendall',
5127
                            'defaults' => [
13761 nelberth 5128
                                'controller' => '\LeadersLinked\Controller\InMailController',
13760 nelberth 5129
                                'action' => 'sendAll'
5130
                            ]
5131
                        ]
5132
                    ],
13524 nelberth 5133
                    'search-people' => [
5134
                        'type' => Literal::class,
13013 nelberth 5135
                        'options' => [
13524 nelberth 5136
                            'route' => '/search-people',
13013 nelberth 5137
                            'defaults' => [
13528 nelberth 5138
                                'controller' => '\LeadersLinked\Controller\InMailController',
13524 nelberth 5139
                                'action' => 'searchPeople'
13028 nelberth 5140
                            ]
13524 nelberth 5141
                        ]
5142
                    ],
13553 nelberth 5143
                    'view' => [
5144
                        'type' => Segment::class,
13524 nelberth 5145
                        'options' => [
13553 nelberth 5146
                            'route' => '/view[/:id]',
5147
                            'constraints' => [
5148
                                'id' => '[A-Za-z0-9\-]+\=*',
5149
                            ],
13524 nelberth 5150
                            'defaults' => [
13528 nelberth 5151
                                'controller' => '\LeadersLinked\Controller\InMailController',
13553 nelberth 5152
                                'action' => 'view'
13524 nelberth 5153
                            ]
13028 nelberth 5154
                        ],
5155
                        'may_terminate' => true,
5156
                        'child_routes' => [
13553 nelberth 5157
                            'message' => [
5158
                                'type' => Literal::class,
13028 nelberth 5159
                                'options' => [
13553 nelberth 5160
                                    'route' => '/message',
13028 nelberth 5161
                                    'defaults' => [
13528 nelberth 5162
                                        'controller' => '\LeadersLinked\Controller\InMailController',
13553 nelberth 5163
                                        'action' => 'message'
13028 nelberth 5164
                                    ]
13553 nelberth 5165
                                ],
5166
                                'may_terminate' => true,
5167
                                'child_routes' => [
5168
                                    'send' => [
5169
                                        'type' => Segment::class,
5170
                                        'options' => [
5171
                                            'route' => '/send[/encoding/:encoding]',
5172
                                            'constraints' => [
5173
                                                'encoding' => 'base64'
5174
                                            ],
5175
                                            'defaults' => [
5176
                                                'controller' => '\LeadersLinked\Controller\InMailController',
5177
                                                'action' => 'sendMessage'
5178
                                            ]
5179
                                        ]
5180
                                    ],
5181
                                ],
13013 nelberth 5182
                            ],
13553 nelberth 5183
                        ]
13013 nelberth 5184
                    ],
13778 nelberth 5185
                    'company' => [
5186
                        'type' => Segment::class,
5187
                        'options' => [
13798 nelberth 5188
                            'route' => '/company[/id/:id][/type/:type]',
13778 nelberth 5189
                            'constraints' => [
5190
                                'id' => '[A-Za-z0-9\-]+\=*',
15607 anderson 5191
                                'type' => 'company',
13778 nelberth 5192
                            ],
5193
                            'defaults' => [
5194
                                'controller' => '\LeadersLinked\Controller\InMailController',
5195
                                'action' => 'view'
5196
                            ]
5197
                        ],
5198
                        'may_terminate' => true,
5199
                        'child_routes' => [
5200
                            'message' => [
5201
                                'type' => Literal::class,
5202
                                'options' => [
5203
                                    'route' => '/message',
5204
                                    'defaults' => [
5205
                                        'controller' => '\LeadersLinked\Controller\InMailController',
5206
                                        'action' => 'message'
5207
                                    ]
5208
                                ],
5209
                                'may_terminate' => true,
5210
                                'child_routes' => [
5211
                                    'send' => [
5212
                                        'type' => Segment::class,
5213
                                        'options' => [
5214
                                            'route' => '/send[/encoding/:encoding]',
5215
                                            'constraints' => [
5216
                                                'encoding' => 'base64'
5217
                                            ],
5218
                                            'defaults' => [
5219
                                                'controller' => '\LeadersLinked\Controller\InMailController',
5220
                                                'action' => 'sendMessage'
5221
                                            ]
5222
                                        ]
5223
                                    ],
5224
                                ],
5225
                            ],
5226
                        ]
5227
                    ],
15607 anderson 5228
 
13524 nelberth 5229
                ],
5230
            ],
15607 anderson 5231
 
5232
 
13524 nelberth 5233
            'communication' => [
5234
                'type' => Literal::class,
5235
                'options' => [
5236
                    'route' => '/communication',
5237
                    'defaults' => [
5238
                        'controller' => '\LeadersLinked\Controller\CommunicationController',
5239
                        'action' => 'index'
5240
                    ]
5241
                ],
5242
                'may_terminate' => true,
5243
                'child_routes' => [
13672 nelberth 5244
                    'inbox' => [
13652 nelberth 5245
                        'type' => Literal::class,
5246
                        'options' => [
13672 nelberth 5247
                            'route' => '/inbox',
15607 anderson 5248
 
13652 nelberth 5249
                            'defaults' => [
13672 nelberth 5250
                                'controller' => '\LeadersLinked\Controller\CommunicationInboxController',
13652 nelberth 5251
                                'action' => 'index'
5252
                            ]
5253
                        ],
5254
                        'may_terminate' => true,
5255
                        'child_routes' => [
13732 nelberth 5256
                            'sendall' => [
5257
                                'type' => Literal::class,
5258
                                'options' => [
5259
                                    'route' => '/sendall',
5260
                                    'defaults' => [
5261
                                        'controller' => '\LeadersLinked\Controller\CommunicationInboxController',
5262
                                        'action' => 'sendAll'
5263
                                    ]
5264
                                ]
5265
                            ],
13652 nelberth 5266
                            'search-people' => [
5267
                                'type' => Literal::class,
5268
                                'options' => [
5269
                                    'route' => '/search-people',
5270
                                    'defaults' => [
13672 nelberth 5271
                                        'controller' => '\LeadersLinked\Controller\CommunicationInboxController',
13652 nelberth 5272
                                        'action' => 'searchPeople'
5273
                                    ]
5274
                                ]
5275
                            ],
5276
                            'view' => [
5277
                                'type' => Segment::class,
5278
                                'options' => [
5279
                                    'route' => '/view[/:id]',
5280
                                    'constraints' => [
5281
                                        'id' => '[A-Za-z0-9\-]+\=*',
5282
                                    ],
5283
                                    'defaults' => [
13672 nelberth 5284
                                        'controller' => '\LeadersLinked\Controller\CommunicationInboxController',
13652 nelberth 5285
                                        'action' => 'view'
5286
                                    ]
5287
                                ],
5288
                                'may_terminate' => true,
5289
                                'child_routes' => [
5290
                                    'message' => [
5291
                                        'type' => Literal::class,
5292
                                        'options' => [
5293
                                            'route' => '/message',
5294
                                            'defaults' => [
13672 nelberth 5295
                                                'controller' => '\LeadersLinked\Controller\CommunicationInboxController',
13652 nelberth 5296
                                                'action' => 'message'
5297
                                            ]
5298
                                        ],
5299
                                        'may_terminate' => true,
5300
                                        'child_routes' => [
5301
                                            'send' => [
5302
                                                'type' => Segment::class,
5303
                                                'options' => [
5304
                                                    'route' => '/send[/encoding/:encoding]',
5305
                                                    'constraints' => [
5306
                                                        'encoding' => 'base64'
5307
                                                    ],
5308
                                                    'defaults' => [
13672 nelberth 5309
                                                        'controller' => '\LeadersLinked\Controller\CommunicationInboxController',
13652 nelberth 5310
                                                        'action' => 'sendMessage'
5311
                                                    ]
5312
                                                ]
5313
                                            ],
5314
                                        ],
5315
                                    ],
5316
                                ]
5317
                            ],
15607 anderson 5318
 
13652 nelberth 5319
                        ],
5320
                    ],
15607 anderson 5321
 
1333 efrain 5322
                ]
5323
            ],
15607 anderson 5324
 
1333 efrain 5325
            'career-development' => [
5326
                'type' => Literal::class,
5327
                'options' => [
5328
                    'route' => '/career-development',
5329
                    'defaults' => [
5330
                        'controller' => '\LeadersLinked\Controller\UnknownController',
5331
                        'action' => 'index'
5332
                    ]
5333
                ],
5334
                'may_terminate' => true,
15607 anderson 5335
                'child_routes' => []
1333 efrain 5336
            ],
15607 anderson 5337
 
4386 eleazar 5338
            'survey' => [
1333 efrain 5339
                'type' => Literal::class,
5340
                'options' => [
4397 eleazar 5341
                    'route' => '/survey',
1333 efrain 5342
                    'defaults' => [
4375 eleazar 5343
                        'controller' => '\LeadersLinked\Controller\SurveyController',
1333 efrain 5344
                        'action' => 'index'
5345
                    ]
5346
                ],
5347
                'may_terminate' => true,
5348
                'child_routes' => [
4579 eleazar 5349
                    'add' => [
5350
                        'type' => Segment::class,
5351
                        'options' => [
5352
                            'route' => '/add',
5353
                            'defaults' => [
5354
                                'controller' => '\LeadersLinked\Controller\SurveyController',
5355
                                'action' => 'add'
5356
                            ],
5357
                        ],
5358
                    ],
5359
                    'edit' => [
5360
                        'type' => Segment::class,
5361
                        'options' => [
5362
                            'route' => '/edit/:id',
5363
                            'defaults' => [
5364
                                'controller' => '\LeadersLinked\Controller\SurveyController',
5365
                                'action' => 'edit'
5366
                            ],
5367
                        ],
5368
                    ],
5369
                    'delete' => [
5370
                        'type' => Segment::class,
5371
                        'options' => [
5372
                            'route' => '/delete/:id',
5373
                            'defaults' => [
5374
                                'controller' => '\LeadersLinked\Controller\SurveyController',
5375
                                'action' => 'delete'
5376
                            ],
5377
                        ],
5378
                    ],
5379
                    'segment' => [
5380
                        'type' => Segment::class,
5381
                        'options' => [
5382
                            'route' => '/segment/:id',
5383
                            'defaults' => [
5384
                                'controller' => '\LeadersLinked\Controller\SurveyController',
5385
                                'action' => 'segment'
5386
                            ],
5387
                        ],
5388
                    ],
4374 eleazar 5389
                    'form' => [
5390
                        'type' => Segment::class,
5391
                        'options' => [
5392
                            'route' => '/form',
5393
                            'defaults' => [
4375 eleazar 5394
                                'controller' => '\LeadersLinked\Controller\SurveyFormController',
4374 eleazar 5395
                                'action' => 'index',
5396
                            ],
5397
                        ],
5398
                        'may_terminate' => true,
5399
                        'child_routes' => [
5400
                            'add' => [
5401
                                'type' => Segment::class,
5402
                                'options' => [
5403
                                    'route' => '/add',
5404
                                    'defaults' => [
4375 eleazar 5405
                                        'controller' => '\LeadersLinked\Controller\SurveyFormController',
4374 eleazar 5406
                                        'action' => 'add'
5407
                                    ],
5408
                                ],
5409
                            ],
5410
                            'edit' => [
5411
                                'type' => Segment::class,
5412
                                'options' => [
5413
                                    'route' => '/edit/:id',
5414
                                    'constraints' => [
5415
                                        'id' => '[A-Za-z0-9\-]+\=*'
5416
                                    ],
5417
                                    'defaults' => [
4375 eleazar 5418
                                        'controller' => '\LeadersLinked\Controller\SurveyFormController',
4374 eleazar 5419
                                        'action' => 'edit'
5420
                                    ]
5421
                                ]
5422
                            ],
5423
                            'delete' => [
5424
                                'type' => Segment::class,
5425
                                'options' => [
5426
                                    'route' => '/delete/:id',
5427
                                    'constraints' => [
5428
                                        'id' => '[A-Za-z0-9\-]+\=*'
5429
                                    ],
5430
                                    'defaults' => [
4375 eleazar 5431
                                        'controller' => '\LeadersLinked\Controller\SurveyFormController',
4374 eleazar 5432
                                        'action' => 'delete'
5433
                                    ]
5434
                                ]
5435
                            ]
5436
                        ],
5437
                    ],
5287 eleazar 5438
                    'test' => [
5439
                        'type' => Segment::class,
5440
                        'options' => [
5884 eleazar 5441
                            'route' => '/test[/:survey_id]',
5442
                            'constraints' => [
5443
                                'survey_id' => '[A-Za-z0-9\-]+\=*'
5444
                            ],
5287 eleazar 5445
                            'defaults' => [
5446
                                'controller' => '\LeadersLinked\Controller\SurveyTestController',
5447
                                'action' => 'index',
5884 eleazar 5448
                                'survey_id' => '',
5287 eleazar 5449
                            ],
5450
                        ],
5451
                        'may_terminate' => true,
5452
                        'child_routes' => [
5453
                            'add' => [
5454
                                'type' => Segment::class,
5455
                                'options' => [
6036 eleazar 5456
                                    'route' => '/add',
5287 eleazar 5457
                                    'defaults' => [
5458
                                        'controller' => '\LeadersLinked\Controller\SurveyTestController',
5732 eleazar 5459
                                        'action' => 'add',
5287 eleazar 5460
                                    ],
5461
                                ],
5462
                            ],
6662 eleazar 5463
                            'report' => [
5464
                                'type' => Segment::class,
5465
                                'options' => [
6882 eleazar 5466
                                    'route' => '/report/:uuid',
6662 eleazar 5467
                                    'defaults' => [
5468
                                        'controller' => '\LeadersLinked\Controller\SurveyTestController',
5469
                                        'action' => 'report',
5470
                                    ],
5471
                                ],
5472
                            ],
5287 eleazar 5473
                            'delete' => [
5474
                                'type' => Segment::class,
5475
                                'options' => [
6882 eleazar 5476
                                    'route' => '/delete/:id',
5287 eleazar 5477
                                    'defaults' => [
5478
                                        'controller' => '\LeadersLinked\Controller\SurveyTestController',
5479
                                        'action' => 'delete'
5480
                                    ]
5481
                                ]
5482
                            ]
5483
                        ],
5484
                    ],
5823 eleazar 5485
                    'report' => [
5486
                        'type' => Segment::class,
5487
                        'options' => [
5911 eleazar 5488
                            'route' => '/report[/:survey_id]',
5489
                            'constraints' => [
5490
                                'survey_id' => '[A-Za-z0-9\-]+\=*'
5491
                            ],
5823 eleazar 5492
                            'defaults' => [
5493
                                'controller' => '\LeadersLinked\Controller\SurveyReportController',
5494
                                'action' => 'index',
5911 eleazar 5495
                                'survey_id' => '',
5823 eleazar 5496
                            ],
5497
                        ],
5498
                        'may_terminate' => true,
5499
                        'child_routes' => [
5500
                            'all' => [
5501
                                'type' => Segment::class,
5502
                                'options' => [
5868 eleazar 5503
                                    'route' => '/all',
5823 eleazar 5504
                                    'defaults' => [
5505
                                        'controller' => '\LeadersLinked\Controller\SurveyReportController',
5868 eleazar 5506
                                        'action' => 'all',
5823 eleazar 5507
                                    ]
5508
                                ]
5509
                            ],
6496 eleazar 5510
                            'overview' => [
5511
                                'type' => Segment::class,
5512
                                'options' => [
5513
                                    'route' => '/overview',
5514
                                    'defaults' => [
5515
                                        'controller' => '\LeadersLinked\Controller\SurveyReportController',
5516
                                        'action' => 'overview',
5517
                                    ]
5518
                                ]
5519
                            ],
15149 efrain 5520
                            'excel' => [
7024 eleazar 5521
                                'type' => Segment::class,
5522
                                'options' => [
15149 efrain 5523
                                    'route' => '/excel',
7024 eleazar 5524
                                    'defaults' => [
5525
                                        'controller' => '\LeadersLinked\Controller\SurveyReportController',
15149 efrain 5526
                                        'action' => 'excel',
7024 eleazar 5527
                                    ]
5528
                                ]
5529
                            ],
5823 eleazar 5530
                        ],
5531
                    ],
1333 efrain 5532
                ]
5533
            ],
15607 anderson 5534
 
1333 efrain 5535
            'building-my-future' => [
5536
                'type' => Literal::class,
5537
                'options' => [
5538
                    'route' => '/building-my-future',
5539
                    'defaults' => [
5540
                        'controller' => '\LeadersLinked\Controller\UnknownController',
5541
                        'action' => 'index'
5542
                    ]
5543
                ],
5544
                'may_terminate' => true,
15607 anderson 5545
                'child_routes' => []
1333 efrain 5546
            ],
11431 nelberth 5547
 
5548
            'csrf' => [
5549
                'type' => Literal::class,
5550
                'options' => [
5551
                    'route' => '/csrf',
5552
                    'defaults' => [
14692 efrain 5553
                        'controller' => '\LeadersLinked\Controller\DashboardController',
11431 nelberth 5554
                        'action' => 'csrf'
5555
                    ]
5556
                ]
5557
            ],
11340 nelberth 5558
            'chat' => [
5559
                'type' => Literal::class,
5560
                'options' => [
5561
                    'route' => '/chat',
5562
                    'defaults' => [
5563
                        'controller' => '\LeadersLinked\Controller\ChatController',
5564
                        'action' => 'index'
5565
                    ]
5566
                ],
5567
                'may_terminate' => true,
5568
                'child_routes' => [
5569
                    // Inicio de los Routes del Chat //
7184 nelberth 5570
 
11340 nelberth 5571
                    'heart-beat' => [
5572
                        'type' => Literal::class,
5573
                        'options' => [
5574
                            'route' => '/heart-beat',
5575
                            'defaults' => [
5576
                                'controller' => '\LeadersLinked\Controller\ChatController',
5577
                                'action' => 'heartBeat',
5578
                            ],
5579
                        ],
5580
                    ],
5581
                    'create-group' => [
5582
                        'type' => Literal::class,
5583
                        'options' => [
5584
                            'route' => '/create-group',
5585
                            'defaults' => [
5586
                                'controller' => '\LeadersLinked\Controller\ChatController',
5587
                                'action' => 'createGroup',
5588
                            ],
5589
                        ],
5590
                    ],
5591
                    'add-user-to-group' => [
5592
                        'type' => Segment::class,
5593
                        'options' => [
5594
                            'route' => '/add-user-to-group/:group_id',
5595
                            'constraints' => [
5596
                                'group_id' => '[A-Za-z0-9\-]+\=*',
5597
                            ],
5598
                            'defaults' => [
5599
                                'controller' => '\LeadersLinked\Controller\ChatController',
5600
                                'action' => 'addUserToGroup',
5601
                            ],
5602
                        ],
5603
                    ],
5604
                    'mark-seen' => [
5605
                        'type' => Segment::class,
5606
                        'options' => [
5607
                            'route' => '/mark-seen/:id',
5608
                            'constraints' => [
5609
                                'id' => '[A-Za-z0-9\-]+\=*',
5610
                            ],
5611
                            'defaults' => [
5612
                                'controller' => '\LeadersLinked\Controller\ChatController',
5613
                                'action' => 'markSeen',
5614
                            ],
5615
                        ],
5616
                    ],
5617
                    'mark-received' => [
5618
                        'type' => Segment::class,
5619
                        'options' => [
5620
                            'route' => '/mark-received/:id',
5621
                            'constraints' => [
5622
                                'id' => '[A-Za-z0-9\-]+\=*',
5623
                            ],
5624
                            'defaults' => [
5625
                                'controller' => '\LeadersLinked\Controller\ChatController',
5626
                                'action' => 'markReceived',
5627
                            ],
5628
                        ],
5629
                    ],
5630
                    'remove-user-from-group' => [
5631
                        'type' => Segment::class,
5632
                        'options' => [
5633
                            'route' => '/remove-user-from-group/:group_id/:user_id',
5634
                            'constraints' => [
5635
                                'group_id' => '[A-Za-z0-9\-]+\=*',
5636
                                'user_id' => '[A-Za-z0-9\-]+\=*',
5637
                            ],
5638
                            'defaults' => [
5639
                                'controller' => '\LeadersLinked\Controller\ChatController',
5640
                                'action' => 'removeUserFromGroup',
5641
                            ],
5642
                        ],
5643
                    ],
5644
                    'get-all-messages' => [
5645
                        'type' => Segment::class,
5646
                        'options' => [
5647
                            'route' => '/get-all-messages/:id',
5648
                            'constraints' => [
5649
                                'id' => '[A-Za-z0-9\-]+\=*',
5650
                            ],
5651
                            'defaults' => [
5652
                                'controller' => '\LeadersLinked\Controller\ChatController',
5653
                                'action' => 'getAllMessages',
5654
                            ],
5655
                        ],
5656
                    ],
5657
                    'send' => [
5658
                        'type' => Segment::class,
5659
                        'options' => [
5660
                            'route' => '/send/:id',
5661
                            'constraints' => [
5662
                                'id' => '[A-Za-z0-9\-]+\=*',
5663
                            ],
5664
                            'defaults' => [
5665
                                'controller' => '\LeadersLinked\Controller\ChatController',
5666
                                'action' => 'send',
5667
                            ],
5668
                        ],
5669
                    ],
5670
                    'get-contacts-availables-for-group' => [
5671
                        'type' => Segment::class,
5672
                        'options' => [
5673
                            'route' => '/get-contacts-availables-for-group/:group_id',
5674
                            'constraints' => [
5675
                                'group_id' => '[A-Za-z0-9\-]+\=*',
5676
                            ],
5677
                            'defaults' => [
5678
                                'controller' => '\LeadersLinked\Controller\ChatController',
5679
                                'action' => 'contactAvailableGroupList',
5680
                            ],
5681
                        ],
5682
                    ],
5683
                    'get-contact-group-list' => [
5684
                        'type' => Segment::class,
5685
                        'options' => [
5686
                            'route' => '/get-contact-group-list/:group_id',
5687
                            'constraints' => [
5688
                                'group_id' => '[A-Za-z0-9\-]+\=*',
5689
                            ],
5690
                            'defaults' => [
5691
                                'controller' => '\LeadersLinked\Controller\ChatController',
5692
                                'action' => 'contactGroupList',
5693
                            ],
5694
                        ],
5695
                    ],
5696
                    'leave-group' => [
5697
                        'type' => Segment::class,
5698
                        'options' => [
5699
                            'route' => '/leave-group/:group_id',
5700
                            'constraints' => [
5701
                                'group_id' => '[A-Za-z0-9\-]+\=*',
5702
                            ],
5703
                            'defaults' => [
5704
                                'controller' => '\LeadersLinked\Controller\ChatController',
5705
                                'action' => 'leaveGroup',
5706
                            ],
5707
                        ],
5708
                    ],
5709
                    'delete-group' => [
5710
                        'type' => Segment::class,
5711
                        'options' => [
5712
                            'route' => '/delete-group/:group_id',
5713
                            'constraints' => [
5714
                                'group_id' => '[A-Za-z0-9\-]+\=*',
5715
                            ],
5716
                            'defaults' => [
5717
                                'controller' => '\LeadersLinked\Controller\ChatController',
5718
                                'action' => 'deleteGroup',
5719
                            ],
5720
                        ],
5721
                    ],
14692 efrain 5722
                    'open' => [
5723
                        'type' => Segment::class,
5724
                        'options' => [
5725
                            'route' => '/open/:id',
5726
                            'constraints' => [
5727
                                'id' => '[A-Za-z0-9\-]+\=*',
5728
                            ],
5729
                            'defaults' => [
5730
                                'controller' => '\LeadersLinked\Controller\ChatController',
5731
                                'action' => 'open',
5732
                            ],
5733
                        ],
5734
                    ],
11340 nelberth 5735
                    'close' => [
5736
                        'type' => Segment::class,
5737
                        'options' => [
5738
                            'route' => '/close/:id',
5739
                            'constraints' => [
5740
                                'id' => '[A-Za-z0-9\-]+\=*',
5741
                            ],
5742
                            'defaults' => [
5743
                                'controller' => '\LeadersLinked\Controller\ChatController',
5744
                                'action' => 'close',
5745
                            ],
5746
                        ],
5747
                    ],
5748
                    'clear' => [
5749
                        'type' => Segment::class,
5750
                        'options' => [
5751
                            'route' => '/clear/:id',
5752
                            'constraints' => [
5753
                                'id' => '[A-Za-z0-9\-]+\=*',
5754
                            ],
5755
                            'defaults' => [
5756
                                'controller' => '\LeadersLinked\Controller\ChatController',
5757
                                'action' => 'clear',
5758
                            ],
5759
                        ],
5760
                    ],
5761
                    'upload' => [
5762
                        'type' => Segment::class,
5763
                        'options' => [
5764
                            'route' => '/upload/:id',
5765
                            'constraints' => [
5766
                                'id' => '[A-Za-z0-9\-]+\=*',
5767
                            ],
5768
                            'defaults' => [
5769
                                'controller' => '\LeadersLinked\Controller\ChatController',
5770
                                'action' => 'upload',
5771
                            ],
5772
                        ],
5773
                    ],
5774
                ],
5775
            ],
15607 anderson 5776
 
1333 efrain 5777
            'high-performance-teams' => [
5778
                'type' => Literal::class,
5779
                'options' => [
4591 nelberth 5780
                    'route' => '/high-performance-teams',
4588 nelberth 5781
                    'defaults' => [
4376 nelberth 5782
                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsController',
1333 efrain 5783
                        'action' => 'index'
5784
                    ]
5785
                ],
5786
                'may_terminate' => true,
5787
                'child_routes' => [
7240 nelberth 5788
                    'groups' => [
4388 nelberth 5789
                        'type' => Literal::class,
5790
                        'options' => [
7224 nelberth 5791
                            'route' => '/groups',
4388 nelberth 5792
                            'defaults' => [
7224 nelberth 5793
                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsController',
4388 nelberth 5794
                                'action' => 'index'
5795
                            ]
15607 anderson 5796
                        ], 'may_terminate' => true,
4411 nelberth 5797
                        'child_routes' => [
5798
 
5799
                            'add' => [
5800
                                'type' => Literal::class,
5801
                                'options' => [
5802
                                    'route' => '/add',
5803
                                    'defaults' => [
7224 nelberth 5804
                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsController',
4411 nelberth 5805
                                        'action' => 'add'
5806
                                    ]
5807
                                ]
5808
                            ],
5809
                            'edit' => [
5810
                                'type' => Segment::class,
5811
                                'options' => [
11082 nelberth 5812
                                    'route' => '/edit/:group_id',
4411 nelberth 5813
                                    'constraints' => [
11082 nelberth 5814
                                        'group_id' => '[A-Za-z0-9\-]+\=*'
4411 nelberth 5815
                                    ],
5816
                                    'defaults' => [
7224 nelberth 5817
                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsController',
4411 nelberth 5818
                                        'action' => 'edit'
5819
                                    ]
5820
                                ]
5821
                            ],
5822
                            'delete' => [
5823
                                'type' => Segment::class,
5824
                                'options' => [
11082 nelberth 5825
                                    'route' => '/delete/:group_id',
4411 nelberth 5826
                                    'constraints' => [
11082 nelberth 5827
                                        'group_id' => '[A-Za-z0-9\-]+\=*'
4411 nelberth 5828
                                    ],
5829
                                    'defaults' => [
7224 nelberth 5830
                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsController',
4411 nelberth 5831
                                        'action' => 'delete'
5832
                                    ]
5833
                                ]
15607 anderson 5834
                            ], 'view' => [
4509 nelberth 5835
                                'type' => Segment::class,
5836
                                'options' => [
11082 nelberth 5837
                                    'route' => '/view/:group_id',
4509 nelberth 5838
                                    'constraints' => [
11082 nelberth 5839
                                        'group_id' => '[A-Za-z0-9\-]+\=*',
4509 nelberth 5840
                                    ],
5841
                                    'defaults' => [
7308 nelberth 5842
                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewController',
4571 nelberth 5843
                                        'action' => 'index'
4509 nelberth 5844
                                    ]
7483 nelberth 5845
                                ],
15607 anderson 5846
                                'may_terminate' => true,
5847
                                'child_routes' => [
5848
                                    'objectives' => [
5849
                                        'type' => Literal::class,
5850
                                        'options' => [
5851
                                            'route' => '/objectives',
5852
                                            'defaults' => [
5853
                                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController',
5854
                                                'action' => 'index'
5855
                                            ]
5856
                                        ],
5857
 
5858
                                        'may_terminate' => true,
5859
                                        'child_routes' => [
5860
 
5861
                                            'add' => [
5862
                                                'type' => Literal::class,
5863
                                                'options' => [
5864
                                                    'route' => '/add',
5865
                                                    'defaults' => [
5866
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController',
5867
                                                        'action' => 'add'
5868
                                                    ]
12408 nelberth 5869
                                                ]
5870
                                            ],
15607 anderson 5871
                                            'edit' => [
5872
                                                'type' => Segment::class,
5873
                                                'options' => [
5874
                                                    'route' => '/edit/:id',
5875
                                                    'constraints' => [
5876
                                                        'id' => '[A-Za-z0-9\-]+\=*'
5877
                                                    ],
5878
                                                    'defaults' => [
5879
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController',
5880
                                                        'action' => 'edit'
12408 nelberth 5881
                                                    ]
15607 anderson 5882
                                                ]
5883
                                            ],
5884
                                            'delete' => [
5885
                                                'type' => Segment::class,
5886
                                                'options' => [
5887
                                                    'route' => '/delete/:id',
5888
                                                    'constraints' => [
5889
                                                        'id' => '[A-Za-z0-9\-]+\=*'
5890
                                                    ],
5891
                                                    'defaults' => [
5892
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController',
5893
                                                        'action' => 'delete'
12408 nelberth 5894
                                                    ]
15607 anderson 5895
                                                ]
5896
                                            ],
5897
                                            'report' => [
5898
                                                'type' => Segment::class,
5899
                                                'options' => [
5900
                                                    'route' => '/report/:id',
5901
                                                    'constraints' => [
5902
                                                        'id' => '[A-Za-z0-9\-]+\=*'
5903
                                                    ],
5904
                                                    'defaults' => [
5905
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController',
5906
                                                        'action' => 'report'
12408 nelberth 5907
                                                    ]
15607 anderson 5908
                                                ]
5909
                                            ],
5910
                                            'reportall' => [
5911
                                                'type' => Literal::class,
5912
                                                'options' => [
5913
                                                    'route' => '/reportall',
5914
                                                    'defaults' => [
5915
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController',
5916
                                                        'action' => 'reportall'
12408 nelberth 5917
                                                    ]
15607 anderson 5918
                                                ]
5919
                                            ],
5920
 
5921
                                            'matriz' => [
5922
                                                'type' => Literal::class,
5923
                                                'options' => [
5924
                                                    'route' => '/matriz',
5925
                                                    'defaults' => [
5926
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController',
5927
                                                        'action' => 'matriz'
12408 nelberth 5928
                                                    ]
15607 anderson 5929
                                                ]
5930
                                            ],
5931
                                            'goals' => [
5932
                                                'type' => Segment::class,
5933
                                                'options' => [
5934
                                                    'route' => '/:objective_id/goals',
5935
                                                    'constraints' => [
5936
                                                        'objective_id' => '[A-Za-z0-9\-]+\=*'
5937
                                                    ],
5938
                                                    'defaults' => [
5939
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewGoalsController',
5940
                                                        'action' => 'index'
12408 nelberth 5941
                                                    ]
5942
                                                ],
15607 anderson 5943
 
5944
                                                'may_terminate' => true,
5945
                                                'child_routes' => [
5946
                                                    'add' => [
5947
                                                        'type' => Literal::class,
5948
                                                        'options' => [
5949
                                                            'route' => '/add',
5950
                                                            'defaults' => [
5951
                                                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewGoalsController',
5952
                                                                'action' => 'add'
5953
                                                            ]
12408 nelberth 5954
                                                        ]
5955
                                                    ],
15607 anderson 5956
                                                    'edit' => [
5957
                                                        'type' => Segment::class,
5958
                                                        'options' => [
5959
                                                            'route' => '/edit/:id',
5960
                                                            'constraints' => [
5961
                                                                'id' => '[A-Za-z0-9\-]+\=*'
5962
                                                            ],
5963
                                                            'defaults' => [
5964
                                                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewGoalsController',
5965
                                                                'action' => 'edit'
12408 nelberth 5966
                                                            ]
15607 anderson 5967
                                                        ]
5968
                                                    ],
5969
                                                    'delete' => [
5970
                                                        'type' => Segment::class,
5971
                                                        'options' => [
5972
                                                            'route' => '/delete/:id',
5973
                                                            'constraints' => [
5974
                                                                'id' => '[A-Za-z0-9\-]+\=*'
5975
                                                            ],
5976
                                                            'defaults' => [
5977
                                                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewGoalsController',
5978
                                                                'action' => 'delete'
12408 nelberth 5979
                                                            ]
15607 anderson 5980
                                                        ]
5981
                                                    ],
5982
                                                    'task' => [
5983
                                                        'type' => Segment::class,
5984
                                                        'options' => [
5985
                                                            'route' => '/:goal_id/task',
5986
                                                            'constraints' => [
5987
                                                                'goal_id' => '[A-Za-z0-9\-]+\=*'
5988
                                                            ],
5989
                                                            'defaults' => [
5990
                                                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController',
5991
                                                                'action' => 'index'
12408 nelberth 5992
                                                            ]
5993
                                                        ],
15607 anderson 5994
 
5995
                                                        'may_terminate' => true,
5996
                                                        'child_routes' => [
5997
                                                            'add' => [
5998
                                                                'type' => Literal::class,
5999
                                                                'options' => [
6000
                                                                    'route' => '/add',
6001
                                                                    'defaults' => [
6002
                                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController',
6003
                                                                        'action' => 'add'
6004
                                                                    ]
12408 nelberth 6005
                                                                ]
6006
                                                            ],
15607 anderson 6007
                                                            'edit' => [
6008
                                                                'type' => Segment::class,
6009
                                                                'options' => [
6010
                                                                    'route' => '/edit/:id',
6011
                                                                    'constraints' => [
6012
                                                                        'id' => '[A-Za-z0-9\-]+\=*'
6013
                                                                    ],
6014
                                                                    'defaults' => [
6015
                                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController',
6016
                                                                        'action' => 'edit'
12408 nelberth 6017
                                                                    ]
15607 anderson 6018
                                                                ]
6019
                                                            ],
6020
                                                            'delete' => [
6021
                                                                'type' => Segment::class,
6022
                                                                'options' => [
6023
                                                                    'route' => '/delete/:id',
6024
                                                                    'constraints' => [
6025
                                                                        'id' => '[A-Za-z0-9\-]+\=*'
6026
                                                                    ],
6027
                                                                    'defaults' => [
6028
                                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController',
6029
                                                                        'action' => 'delete'
12408 nelberth 6030
                                                                    ]
15607 anderson 6031
                                                                ]
6032
                                                            ],
6033
                                                            'view' => [
6034
                                                                'type' => Segment::class,
6035
                                                                'options' => [
6036
                                                                    'route' => '/view/:id',
6037
                                                                    'constraints' => [
6038
                                                                        'id' => '[A-Za-z0-9\-]+\=*'
6039
                                                                    ],
6040
                                                                    'defaults' => [
6041
                                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController',
6042
                                                                        'action' => 'view'
12408 nelberth 6043
                                                                    ]
15607 anderson 6044
                                                                ]
6045
                                                            ],
12408 nelberth 6046
                                                        ]
6047
                                                    ],
6048
                                                ]
6049
                                            ],
6050
                                        ]
15607 anderson 6051
                                    ], 'feeds' => [
6052
                                        'type' => Literal::class,
6053
                                        'options' => [
6054
                                            'route' => '/feeds',
6055
 
6056
                                        ],
6057
                                        'may_terminate' => true,
6058
                                        'child_routes' => [
6059
                                            'timeline' => [
6060
                                                'type' => Segment::class,
6061
                                                'options' => [
6062
                                                    'route' => '/timeline[/urgent/:urgent][/topic_id/:topic_id]',
6063
                                                    'constraints' => [
6064
                                                        'hptg_id' => '[A-Za-z0-9\-]+\=*',
6065
                                                        'topic_id' => '[A-Za-z0-9\-]+\=*',
6066
                                                        'urgent' => 'u',
6067
                                                    ],
6068
                                                    'defaults' => [
6069
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController',
6070
                                                        'action' => 'timeline'
6071
                                                    ]
6072
                                                ]
11902 nelberth 6073
                                            ],
15607 anderson 6074
                                            'onefeed' => [
6075
                                                'type' => Segment::class,
6076
                                                'options' => [
6077
                                                    'route' => '/onefeed[/:feed_id][/:topic_id]',
6078
                                                    'constraints' => [
6079
                                                        'group_id' => '[A-Za-z0-9\-]+\=*',
6080
                                                        'feed_id' => '[A-Za-z0-9\-]+\=*',
6081
                                                        'topic_id' => '[A-Za-z0-9\-]+\=*',
6082
                                                    ],
6083
                                                    'defaults' => [
6084
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController',
6085
                                                        'action' => 'oneFeed'
11902 nelberth 6086
                                                    ]
15607 anderson 6087
                                                ]
6088
                                            ],
6089
                                            'delete' => [
6090
                                                'type' => Segment::class,
6091
                                                'options' => [
6092
                                                    'route' => '/delete/:id',
6093
                                                    'constraints' => [
6094
                                                        'id' => '[A-Za-z0-9\-]+\=*',
6095
                                                    ],
6096
                                                    'defaults' => [
6097
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController',
6098
                                                        'action' => 'delete'
6099
                                                    ],
6100
                                                ]
6101
                                            ],
6102
                                            'comments' => [
6103
                                                'type' => Segment::class,
6104
                                                'options' => [
6105
                                                    'route' => '/comments/:id',
6106
                                                    'constraints' => [
6107
                                                        'id' => '[A-Za-z0-9\-]+\=*',
6108
                                                    ],
6109
                                                    'defaults' => [
6110
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController',
6111
                                                        'action' => 'comment'
6112
                                                    ],
11902 nelberth 6113
                                                ],
15607 anderson 6114
                                                'may_terminate' => true,
6115
                                                'child_routes' => [
6116
                                                    'delete' => [
6117
                                                        'type' => Segment::class,
6118
                                                        'options' => [
6119
                                                            'route' => '/delete/:comment',
6120
                                                            'constraints' => [
6121
                                                                'comment' => '[A-Za-z0-9\-]+\=*',
6122
                                                            ],
6123
                                                            'defaults' => [
6124
                                                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController',
6125
                                                                'action' => 'commentDelete'
6126
                                                            ]
11902 nelberth 6127
                                                        ]
6128
                                                    ],
15607 anderson 6129
 
6130
                                                    'answer' => [
6131
                                                        'type' => Segment::class,
6132
                                                        'options' => [
6133
                                                            'route' => '/answer/:comment',
6134
                                                            'constraints' => [
6135
                                                                'comment' => '[A-Za-z0-9\-]+\=*',
6136
                                                            ],
6137
                                                            'defaults' => [
6138
                                                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController',
6139
                                                                'action' => 'answer'
11902 nelberth 6140
                                                            ]
6141
                                                        ]
15607 anderson 6142
                                                    ],
6143
                                                ]
6144
                                            ],
6145
                                            'add' => [
6146
                                                'type' => Segment::class,
6147
                                                'options' => [
6148
                                                    'route' => '/add[/group/:group_id][/encoding/:encoding][/topic_id/:topic_id]',
6149
                                                    'constraints' => [
6150
                                                        'group_id' => '[A-Za-z0-9\-]+\=*',
6151
                                                        'topic_id' => '[A-Za-z0-9\-]+\=*',
6152
                                                        'encoding' => 'base64'
6153
                                                    ],
6154
                                                    'defaults' => [
6155
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController',
6156
                                                        'action' => 'add'
11902 nelberth 6157
                                                    ]
15607 anderson 6158
                                                ]
11902 nelberth 6159
                                            ],
6160
                                        ],
15607 anderson 6161
                                    ],
6162
                                    'members' => [
6163
                                        'type' => Literal::class,
6164
                                        'options' => [
6165
                                            'route' => '/members',
6166
                                            'defaults' => [
6167
                                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController',
6168
                                                'action' => 'index'
6169
                                            ]
6170
                                        ], 'may_terminate' => true,
6171
                                        'child_routes' => [
6172
                                            'invite' => [
6173
                                                'type' => Segment::class,
6174
                                                'options' => [
6175
                                                    'route' => '/invite/:user_id',
6176
                                                    'constraints' => [
6177
                                                        'user_id' => '[A-Za-z0-9\-]+\=*'
6178
                                                    ],
6179
                                                    'defaults' => [
6180
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController',
6181
                                                        'action' => 'invite'
6182
                                                    ]
7811 nelberth 6183
                                                ]
15607 anderson 6184
                                            ],
6185
                                            'edit' => [
6186
                                                'type' => Segment::class,
6187
                                                'options' => [
6188
                                                    'route' => '/edit/:user_id',
6189
                                                    'constraints' => [
6190
                                                        'user_id' => '[A-Za-z0-9\-]+\=*'
6191
                                                    ],
6192
                                                    'defaults' => [
6193
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController',
6194
                                                        'action' => 'edit'
8012 nelberth 6195
                                                    ]
15607 anderson 6196
                                                ]
6197
                                            ],
6198
                                            'delete' => [
6199
                                                'type' => Segment::class,
6200
                                                'options' => [
6201
                                                    'route' => '/delete[/:user_id]',
6202
                                                    'constraints' => [
6203
                                                        'user_id' => '[A-Za-z0-9\-]+\=*'
6204
                                                    ],
6205
                                                    'defaults' => [
6206
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController',
6207
                                                        'action' => 'delete'
8012 nelberth 6208
                                                    ]
15607 anderson 6209
                                                ]
6210
                                            ],
6211
                                        ]
6212
                                    ],
6213
                                    'urgent' => [
6214
                                        'type' => Segment::class,
6215
                                        'options' => [
6216
                                            'route' => '/urgent[/:urgent]',
6217
                                            'constraints' => [
6218
                                                'urgent' => 'u'
6219
                                            ],
6220
                                            'defaults' => [
6221
                                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewController',
6222
                                                'action' => 'index'
6223
                                            ]
6224
                                        ]
6225
                                    ],
6226
                                    'calendar' => [
6227
                                        'type' => Literal::class,
6228
                                        'options' => [
6229
                                            'route' => '/calendar',
6230
 
6231
                                            'defaults' => [
6232
                                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewCalendarController',
6233
                                                'action' => 'index'
6234
                                            ]
6235
                                        ], 'may_terminate' => true,
6236
                                        'child_routes' => [
6237
                                            'view' => [
6238
                                                'type' => Segment::class,
6239
                                                'options' => [
6240
                                                    'route' => '/view[/:feed_id]',
6241
                                                    'constraints' => [
6242
                                                        'feed_id' => '[A-Za-z0-9\-]+\=*'
6243
                                                    ],
6244
                                                    'defaults' => [
6245
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewCalendarController',
6246
                                                        'action' => 'view'
8012 nelberth 6247
                                                    ]
8702 nelberth 6248
                                                ]
15607 anderson 6249
                                            ],
6250
                                        ]
6251
                                    ],
6252
                                    'foro' => [
6253
                                        'type' => Literal::class,
6254
                                        'options' => [
6255
                                            'route' => '/foro',
6256
                                            'defaults' => [
6257
                                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoController',
6258
                                                'action' => 'index'
8702 nelberth 6259
                                            ]
6260
                                        ],
15607 anderson 6261
                                        'may_terminate' => true,
6262
                                        'child_routes' => [
6263
                                            'view' => [
6264
                                                'type' => Literal::class,
6265
                                                'options' => [
6266
                                                    'route' => '/view',
6267
                                                    'defaults' => [
6268
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoController',
6269
                                                        'action' => 'view'
9923 nelberth 6270
                                                    ]
10143 nelberth 6271
                                                ]
9644 nelberth 6272
                                            ],
15607 anderson 6273
                                            'categories' => [
6274
                                                'type' => Literal::class,
6275
                                                'options' => [
6276
                                                    'route' => '/categories',
6277
                                                    'defaults' => [
6278
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController',
6279
                                                        'action' => 'index'
10150 nelberth 6280
                                                    ]
6281
                                                ],
15607 anderson 6282
                                                'may_terminate' => true,
6283
                                                'child_routes' => [
6284
                                                    'view' => [
6285
                                                        'type' => Literal::class,
6286
                                                        'options' => [
6287
                                                            'route' => '/view',
6288
                                                            'defaults' => [
6289
                                                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController',
6290
                                                                'action' => 'view'
6291
                                                            ]
9631 nelberth 6292
                                                        ]
9638 nelberth 6293
                                                    ],
15607 anderson 6294
                                                    'add' => [
6295
                                                        'type' => Literal::class,
6296
                                                        'options' => [
6297
                                                            'route' => '/add',
6298
                                                            'defaults' => [
6299
                                                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController',
6300
                                                                'action' => 'add'
9720 nelberth 6301
                                                            ]
15607 anderson 6302
                                                        ]
6303
                                                    ],
6304
                                                    'edit' => [
6305
                                                        'type' => Segment::class,
6306
                                                        'options' => [
6307
                                                            'route' => '/edit/:category_id',
6308
                                                            'constraints' => [
6309
                                                                'category_id' => '[A-Za-z0-9\-]+\=*'
6310
                                                            ],
6311
                                                            'defaults' => [
6312
                                                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController',
6313
                                                                'action' => 'edit'
9644 nelberth 6314
                                                            ]
15607 anderson 6315
                                                        ]
6316
                                                    ],
6317
                                                    'delete' => [
6318
                                                        'type' => Segment::class,
6319
                                                        'options' => [
6320
                                                            'route' => '/delete/:category_id',
6321
                                                            'constraints' => [
6322
                                                                'category_id' => '[A-Za-z0-9\-]+\=*'
6323
                                                            ],
6324
                                                            'defaults' => [
6325
                                                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController',
6326
                                                                'action' => 'delete'
9640 nelberth 6327
                                                            ]
15607 anderson 6328
                                                        ]
6329
                                                    ],
6330
                                                    'articles' => [
6331
                                                        'type' => Segment::class,
6332
                                                        'options' => [
6333
                                                            'route' => '/:category_id/articles',
6334
                                                            'constraints' => [
6335
                                                                'category_id' => '[A-Za-z0-9\-]+\=*'
6336
                                                            ],
6337
                                                            'defaults' => [
6338
                                                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesController',
6339
                                                                'action' => 'index'
9643 nelberth 6340
                                                            ]
6341
                                                        ],
15607 anderson 6342
                                                        'may_terminate' => true,
6343
                                                        'child_routes' => [
6344
                                                            'add' => [
6345
                                                                'type' => Literal::class,
6346
                                                                'options' => [
6347
                                                                    'route' => '/add',
6348
                                                                    'defaults' => [
6349
                                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesController',
6350
                                                                        'action' => 'add'
6351
                                                                    ]
9760 nelberth 6352
                                                                ]
9845 nelberth 6353
                                                            ],
15607 anderson 6354
                                                            'edit' => [
6355
                                                                'type' => Segment::class,
6356
                                                                'options' => [
6357
                                                                    'route' => '/edit/:article_id',
6358
                                                                    'constraints' => [
6359
                                                                        'articles_id' => '[A-Za-z0-9\-]+\=*'
6360
                                                                    ],
6361
                                                                    'defaults' => [
6362
                                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesController',
6363
                                                                        'action' => 'edit'
9845 nelberth 6364
                                                                    ]
15607 anderson 6365
                                                                ]
6366
                                                            ],
6367
 
6368
                                                            'delete' => [
6369
                                                                'type' => Segment::class,
6370
                                                                'options' => [
6371
                                                                    'route' => '/delete/:article_id',
6372
                                                                    'constraints' => [
6373
                                                                        'articles_id' => '[A-Za-z0-9\-]+\=*'
6374
                                                                    ],
6375
                                                                    'defaults' => [
6376
                                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesController',
6377
                                                                        'action' => 'delete'
9845 nelberth 6378
                                                                    ]
15607 anderson 6379
                                                                ]
6380
                                                            ],
6381
                                                            'view' => [
6382
                                                                'type' => Segment::class,
6383
                                                                'options' => [
6384
                                                                    'route' => '/view/:article_id',
6385
                                                                    'constraints' => [
6386
                                                                        'articles_id' => '[A-Za-z0-9\-]+\=*'
6387
                                                                    ],
6388
                                                                    'defaults' => [
6389
                                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesViewController',
6390
                                                                        'action' => 'index'
9845 nelberth 6391
                                                                    ]
15607 anderson 6392
                                                                ]
6393
                                                            ],
6394
                                                        ]
9640 nelberth 6395
                                                    ],
9424 nelberth 6396
                                                ],
15607 anderson 6397
                                            ],
6398
                                        ]
6399
                                    ],
6400
                                    'topic' => [
6401
                                        'type' => Literal::class,
6402
                                        'options' => [
6403
                                            'route' => '/topic',
6404
                                            'defaults' => [
6405
                                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController',
6406
                                                'action' => 'index'
9424 nelberth 6407
                                            ]
15607 anderson 6408
                                        ], 'may_terminate' => true,
6409
                                        'child_routes' => [
6410
                                            'add' => [
6411
                                                'type' => Literal::class,
6412
                                                'options' => [
6413
                                                    'route' => '/add',
6414
                                                    'defaults' => [
6415
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController',
6416
                                                        'action' => 'add'
6417
                                                    ]
7483 nelberth 6418
                                                ]
15607 anderson 6419
                                            ],
6420
                                            'edit' => [
6421
                                                'type' => Segment::class,
6422
                                                'options' => [
6423
                                                    'route' => '/edit/:topic_id',
6424
                                                    'constraints' => [
6425
                                                        'topic_id' => '[A-Za-z0-9\-]+\=*'
6426
                                                    ],
6427
                                                    'defaults' => [
6428
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController',
6429
                                                        'action' => 'edit'
7483 nelberth 6430
                                                    ]
15607 anderson 6431
                                                ]
6432
                                            ],
6433
                                            'view' => [
6434
                                                'type' => Segment::class,
6435
                                                'options' => [
6436
                                                    'route' => '/view[/:topic_id]',
6437
                                                    'constraints' => [
6438
                                                        'topic_id' => '[A-Za-z0-9\-]+\=*'
6439
                                                    ],
6440
                                                    'defaults' => [
6441
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewController',
6442
                                                        'action' => 'index'
7483 nelberth 6443
                                                    ]
15607 anderson 6444
                                                ]
6445
                                            ],
6446
 
6447
                                            'delete' => [
6448
                                                'type' => Segment::class,
6449
                                                'options' => [
6450
                                                    'route' => '/delete/:topic_id',
6451
                                                    'constraints' => [
6452
                                                        'topic_id' => '[A-Za-z0-9\-]+\=*'
6453
                                                    ],
6454
                                                    'defaults' => [
6455
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController',
6456
                                                        'action' => 'delete'
7629 nelberth 6457
                                                    ]
7483 nelberth 6458
                                                ]
15607 anderson 6459
                                            ]
7483 nelberth 6460
                                        ],
6461
                                    ],
6462
 
15607 anderson 6463
                                ],
6464
 
4411 nelberth 6465
                            ],
6466
                        ]
4388 nelberth 6467
                    ],
1333 efrain 6468
                ]
6469
            ],
4588 nelberth 6470
 
15607 anderson 6471
 
1333 efrain 6472
            'my-trainer' => [
6473
                'type' => Literal::class,
6474
                'options' => [
6475
                    'route' => '/my-trainer',
6476
                    'defaults' => [
6477
                        'controller' => '\LeadersLinked\Controller\UnknownController',
6478
                        'action' => 'index'
6479
                    ]
6480
                ],
6481
                'may_terminate' => true,
6482
                'child_routes' => [
8462 eleazar 6483
                    'category' => [
6484
                        'type' => Literal::class,
6485
                        'options' => [
6486
                            'route' => '/category',
6487
                            'defaults' => [
8529 eleazar 6488
                                'controller' => '\LeadersLinked\Controller\MyTrainerCategoriesController',
8462 eleazar 6489
                                'action' => 'index'
6490
                            ]
6491
                        ],
6492
                        'may_terminate' => true,
6493
                        'child_routes' => [
6494
                            'add' => [
6495
                                'type' => Literal::class,
6496
                                'options' => [
6497
                                    'route' => '/add',
6498
                                    'defaults' => [
8529 eleazar 6499
                                        'controller' => '\LeadersLinked\Controller\MyTrainerCategoriesController',
8462 eleazar 6500
                                        'action' => 'add'
6501
                                    ]
6502
                                ]
6503
                            ],
6504
                            'edit' => [
6505
                                'type' => Segment::class,
6506
                                'options' => [
6507
                                    'route' => '/edit/:id',
6508
                                    'constraints' => [
6509
                                        'id' => '[A-Za-z0-9\-]+\=*'
6510
                                    ],
6511
                                    'defaults' => [
8529 eleazar 6512
                                        'controller' => '\LeadersLinked\Controller\MyTrainerCategoriesController',
8462 eleazar 6513
                                        'action' => 'edit'
6514
                                    ]
6515
                                ]
6516
                            ],
6517
                            'delete' => [
6518
                                'type' => Segment::class,
6519
                                'options' => [
6520
                                    'route' => '/delete/:id',
6521
                                    'constraints' => [
6522
                                        'id' => '[A-Za-z0-9\-]+\=*'
6523
                                    ],
6524
                                    'defaults' => [
8529 eleazar 6525
                                        'controller' => '\LeadersLinked\Controller\MyTrainerCategoriesController',
8462 eleazar 6526
                                        'action' => 'delete'
6527
                                    ]
6528
                                ]
6529
                            ]
6530
                        ]
6531
                    ],
6532
                    'question' => [
12250 eleazar 6533
                        'type' => segment::class,
8462 eleazar 6534
                        'options' => [
12260 eleazar 6535
                            'route' => '/question',
8462 eleazar 6536
                            'defaults' => [
9350 eleazar 6537
                                'controller' => '\LeadersLinked\Controller\MyTrainerQuestionController',
8462 eleazar 6538
                                'action' => 'index'
6539
                            ]
6540
                        ],
6541
                        'may_terminate' => true,
6542
                        'child_routes' => [
6543
                            'add' => [
6544
                                'type' => Literal::class,
6545
                                'options' => [
6546
                                    'route' => '/add',
6547
                                    'defaults' => [
9350 eleazar 6548
                                        'controller' => '\LeadersLinked\Controller\MyTrainerQuestionController',
8462 eleazar 6549
                                        'action' => 'add'
6550
                                    ]
6551
                                ]
6552
                            ],
6553
                            'edit' => [
6554
                                'type' => Segment::class,
6555
                                'options' => [
6556
                                    'route' => '/edit/:id',
6557
                                    'constraints' => [
6558
                                        'id' => '[A-Za-z0-9\-]+\=*'
6559
                                    ],
6560
                                    'defaults' => [
9350 eleazar 6561
                                        'controller' => '\LeadersLinked\Controller\MyTrainerQuestionController',
8462 eleazar 6562
                                        'action' => 'edit'
6563
                                    ]
6564
                                ]
6565
                            ],
6566
                            'delete' => [
6567
                                'type' => Segment::class,
6568
                                'options' => [
12193 eleazar 6569
                                    'route' => '/delete/:id',
6570
                                    'constraints' => [
6571
                                        'id' => '[A-Za-z0-9\-]+\=*'
6572
                                    ],
8462 eleazar 6573
                                    'defaults' => [
9350 eleazar 6574
                                        'controller' => '\LeadersLinked\Controller\MyTrainerQuestionController',
8462 eleazar 6575
                                        'action' => 'delete'
6576
                                    ]
6577
                                ]
11195 eleazar 6578
                            ],
6579
                            'view' => [
6580
                                'type' => Segment::class,
6581
                                'options' => [
12280 eleazar 6582
                                    'route' => '/:id/view',
11195 eleazar 6583
                                    'constraints' => [
6584
                                        'id' => '[A-Za-z0-9\-]+\=*'
6585
                                    ],
6586
                                    'defaults' => [
12260 eleazar 6587
                                        'controller' => '\LeadersLinked\Controller\MyTrainerQuestionViewController',
6588
                                        'action' => 'index'
11195 eleazar 6589
                                    ]
6590
                                ]
11303 eleazar 6591
                            ],
11840 eleazar 6592
                            'answer' => [
11322 eleazar 6593
                                'type' => Segment::class,
8462 eleazar 6594
                                'options' => [
11852 eleazar 6595
                                    'route' => '/:id/answer',
11337 eleazar 6596
                                    'constraints' => [
6597
                                        'id' => '[A-Za-z0-9\-]+\=*'
6598
                                    ],
8462 eleazar 6599
                                    'defaults' => [
10602 eleazar 6600
                                        'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
11840 eleazar 6601
                                        'action' => 'index'
8462 eleazar 6602
                                    ]
11810 eleazar 6603
                                ],
6604
                                'may_terminate' => true,
6605
                                'child_routes' => [
11840 eleazar 6606
                                    'add' => [
6607
                                        'type' => Segment::class,
6608
                                        'options' => [
6609
                                            'route' => '/add[/:id]',
6610
                                            'constraints' => [
6611
                                                'id' => '[A-Za-z0-9\-]+\=*'
6612
                                            ],
6613
                                            'defaults' => [
6614
                                                'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
6615
                                                'action' => 'add'
6616
                                            ]
6617
                                        ]
6618
                                    ],
6619
                                    'edit' => [
6620
                                        'type' => Segment::class,
6621
                                        'options' => [
11860 eleazar 6622
                                            'route' => '/edit',
15607 anderson 6623
 
11840 eleazar 6624
                                            'defaults' => [
6625
                                                'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
6626
                                                'action' => 'edit'
6627
                                            ]
6628
                                        ]
6629
                                    ],
11810 eleazar 6630
                                    'delete' => [
6631
                                        'type' => Segment::class,
6632
                                        'options' => [
11859 eleazar 6633
                                            'route' => '/delete',
11810 eleazar 6634
                                            'defaults' => [
11812 eleazar 6635
                                                'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
11840 eleazar 6636
                                                'action' => 'delete'
11810 eleazar 6637
                                            ]
6638
                                        ]
6639
                                    ],
11884 eleazar 6640
                                    'feed' => [
6641
                                        'type' => Segment::class,
6642
                                        'options' => [
6643
                                            'route' => '/feed',
6644
                                            'defaults' => [
6645
                                                'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
6646
                                                'action' => 'feed'
6647
                                            ],
6648
                                        ],
6649
                                    ],
11913 eleazar 6650
                                    'timeline' => [
6651
                                        'type' => Segment::class,
6652
                                        'options' => [
15607 anderson 6653
                                            'route' => '/timeline',
11913 eleazar 6654
                                            'defaults' => [
11921 eleazar 6655
                                                'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
11913 eleazar 6656
                                                'action' => 'timeline'
11921 eleazar 6657
                                            ],
6658
                                        ],
11913 eleazar 6659
                                    ],
11840 eleazar 6660
                                    'comments' => [
6661
                                        'type' => Segment::class,
6662
                                        'options' => [
11860 eleazar 6663
                                            'route' => '/comments',
15607 anderson 6664
 
11840 eleazar 6665
                                            'defaults' => [
6666
                                                'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
6667
                                                'action' => 'comment'
6668
                                            ],
6669
                                        ],
6670
                                        'may_terminate' => true,
6671
                                        'child_routes' => [
6672
                                            'delete' => [
6673
                                                'type' => Segment::class,
6674
                                                'options' => [
6675
                                                    'route' => '/delete/:comment',
6676
                                                    'constraints' => [
6677
                                                        'comment' => '[A-Za-z0-9\-]+\=*',
6678
                                                    ],
6679
                                                    'defaults' => [
6680
                                                        'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
6681
                                                        'action' => 'commentDelete'
6682
                                                    ]
6683
                                                ]
6684
                                            ],
11948 eleazar 6685
                                            'answer' => [
6686
                                                'type' => Segment::class,
6687
                                                'options' => [
6688
                                                    'route' => '/answer/:comment',
6689
                                                    'constraints' => [
6690
                                                        'comment' => '[A-Za-z0-9\-]+\=*',
6691
                                                    ],
6692
                                                    'defaults' => [
6693
                                                        'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
6694
                                                        'action' => 'answer'
6695
                                                    ]
6696
                                                ]
6697
                                            ],
11840 eleazar 6698
                                        ]
6699
                                    ],
6700
                                ],
11810 eleazar 6701
                            ],
11840 eleazar 6702
                        ],
8462 eleazar 6703
                    ],
1333 efrain 6704
                ]
6705
            ],
13354 eleazar 6706
 
6707
            'development-and-content' => [
15028 efrain 6708
                'type' => Literal::class,
13354 eleazar 6709
                'options' => [
15028 efrain 6710
                    'route' => '/development-and-content',
13354 eleazar 6711
                    'defaults' => [
6712
                        'controller' => '\LeadersLinked\Controller\DevelopmentContentController',
14992 kerby 6713
                        'action' => 'index',
13354 eleazar 6714
                    ]
6715
                ],
15028 efrain 6716
 
15607 anderson 6717
 
13354 eleazar 6718
                'may_terminate' => true,
6719
                'child_routes' => [
15028 efrain 6720
                    'listing' => [
15014 efrain 6721
                        'type' => Segment::class,
14743 kerby 6722
                        'options' => [
15028 efrain 6723
                            'route' => '/listing[/:category_id]',
6724
                            'constraints' => [
6725
                                'category_id' => '[A-Za-z0-9\-]+\=*'
6726
                            ],
14743 kerby 6727
                            'defaults' => [
6728
                                'controller' => '\LeadersLinked\Controller\DevelopmentContentController',
15028 efrain 6729
                                'action' => 'listing'
14743 kerby 6730
                            ]
6731
                        ]
6732
                    ],
15028 efrain 6733
                    'add' => [
13354 eleazar 6734
                        'type' => Segment::class,
6735
                        'options' => [
15028 efrain 6736
                            'route' => '/add',
13354 eleazar 6737
                            'defaults' => [
6738
                                'controller' => '\LeadersLinked\Controller\DevelopmentContentController',
15028 efrain 6739
                                'action' => 'add'
13354 eleazar 6740
                            ]
6741
                        ]
6742
                    ],
6743
                    'edit' => [
6744
                        'type' => Segment::class,
6745
                        'options' => [
14972 kerby 6746
                            'route' => '/edit/:id',
14743 kerby 6747
                            'constraints' => [
6748
                                'id' => '[A-Za-z0-9\-]+\=*'
6749
                            ],
13354 eleazar 6750
                            'defaults' => [
6751
                                'controller' => '\LeadersLinked\Controller\DevelopmentContentController',
6752
                                'action' => 'edit'
6753
                            ]
6754
                        ]
6755
                    ],
14743 kerby 6756
                    'aproved' => [
6757
                        'type' => Segment::class,
6758
                        'options' => [
14972 kerby 6759
                            'route' => '/aproved/:id',
14743 kerby 6760
                            'constraints' => [
6761
                                'id' => '[A-Za-z0-9\-]+\=*'
6762
                            ],
6763
                            'defaults' => [
6764
                                'controller' => '\LeadersLinked\Controller\DevelopmentContentController',
6765
                                'action' => 'aproved'
6766
                            ]
6767
                        ]
6768
                    ],
13354 eleazar 6769
                    'delete' => [
6770
                        'type' => Segment::class,
6771
                        'options' => [
14972 kerby 6772
                            'route' => '/delete/:id',
14743 kerby 6773
                            'constraints' => [
6774
                                'id' => '[A-Za-z0-9\-]+\=*'
6775
                            ],
13354 eleazar 6776
                            'defaults' => [
6777
                                'controller' => '\LeadersLinked\Controller\DevelopmentContentController',
6778
                                'action' => 'delete'
6779
                            ]
6780
                        ]
6781
                    ],
15029 kerby 6782
                    'category' => [
6783
                        'type' => Literal::class,
14972 kerby 6784
                        'options' => [
15029 kerby 6785
                            'route' => '/category',
14972 kerby 6786
                            'defaults' => [
15029 kerby 6787
                                'controller' => '\LeadersLinked\Controller\DevelopmentContentCategoryController',
6788
                                'action' => 'index'
6789
                            ]
14972 kerby 6790
                        ],
6791
                        'may_terminate' => true,
6792
                        'child_routes' => [
15029 kerby 6793
                            'add' => [
6794
                                'type' => Literal::class,
6795
                                'options' => [
6796
                                    'route' => '/add',
6797
                                    'defaults' => [
6798
                                        'controller' => '\LeadersLinked\Controller\DevelopmentContentCategoryController',
6799
                                        'action' => 'add'
6800
                                    ]
6801
                                ]
6802
                            ],
6803
                            'edit' => [
14972 kerby 6804
                                'type' => Segment::class,
6805
                                'options' => [
15029 kerby 6806
                                    'route' => '/edit/:id',
14972 kerby 6807
                                    'constraints' => [
15029 kerby 6808
                                        'id' => '[A-Za-z0-9\-]+\=*'
14972 kerby 6809
                                    ],
6810
                                    'defaults' => [
15029 kerby 6811
                                        'controller' => '\LeadersLinked\Controller\DevelopmentContentCategoryController',
6812
                                        'action' => 'edit'
14972 kerby 6813
                                    ]
6814
                                ]
6815
                            ],
15029 kerby 6816
                            'delete' => [
14972 kerby 6817
                                'type' => Segment::class,
6818
                                'options' => [
15029 kerby 6819
                                    'route' => '/delete/:id',
14972 kerby 6820
                                    'constraints' => [
15029 kerby 6821
                                        'id' => '[A-Za-z0-9\-]+\=*'
14972 kerby 6822
                                    ],
6823
                                    'defaults' => [
15029 kerby 6824
                                        'controller' => '\LeadersLinked\Controller\DevelopmentContentCategoryController',
6825
                                        'action' => 'delete'
14972 kerby 6826
                                    ]
6827
                                ]
15029 kerby 6828
                            ]
14972 kerby 6829
                        ]
15029 kerby 6830
                    ]
13354 eleazar 6831
                ]
6832
            ],
15607 anderson 6833
 
1 www 6834
        ]
6835
    ],
6836
    'controllers' => [
6837
        'factories' => [
6838
            \LeadersLinked\Controller\AuthController::class => \LeadersLinked\Factory\Controller\AuthControllerFactory::class,
6839
            \LeadersLinked\Controller\FeedController::class => \LeadersLinked\Factory\Controller\FeedControllerFactory::class,
6840
            \LeadersLinked\Controller\FollowerController::class => \LeadersLinked\Factory\Controller\FollowerControllerFactory::class,
6841
            \LeadersLinked\Controller\JobController::class => \LeadersLinked\Factory\Controller\JobControllerFactory::class,
1469 eleazar 6842
            \LeadersLinked\Controller\RecruitmentSelectionController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionFactory::class,
15461 efrain 6843
            \LeadersLinked\Controller\RecruitmentSelectionVacancyController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionVacancyFactory::class,
6844
            \LeadersLinked\Controller\RecruitmentSelectionApplicationController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionApplicationFactory::class,
6845
            \LeadersLinked\Controller\RecruitmentSelectionFileController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionFileControllerFactory::class,
1709 eleazar 6846
            \LeadersLinked\Controller\RecruitmentSelectionInterviewController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionInterviewFactory::class,
15607 anderson 6847
            /*
15461 efrain 6848
            \LeadersLinked\Controller\RecruitmentSelectionInterviewController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionInterviewFactory::class,
1712 eleazar 6849
            \LeadersLinked\Controller\RecruitmentSelectionInterviewFormController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionInterviewFormFactory::class,
8797 eleazar 6850
            \LeadersLinked\Controller\RecruitmentSelectionInterviewFileController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionInterviewFileControllerFactory::class,
1385 eleazar 6851
            \LeadersLinked\Controller\RecruitmentSelectionVacancyController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionVacancyFactory::class,
1459 eleazar 6852
            \LeadersLinked\Controller\RecruitmentSelectionCandidateController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionCandidateFactory::class,
15461 efrain 6853
            */
1 www 6854
            \LeadersLinked\Controller\ProfileController::class => \LeadersLinked\Factory\Controller\ProfileControllerFactory::class,
6855
            \LeadersLinked\Controller\CompanyController::class => \LeadersLinked\Factory\Controller\CompanyControllerFactory::class,
6856
            \LeadersLinked\Controller\CompanySizeController::class => \LeadersLinked\Factory\Controller\CompanySizeControllerFactory::class,
15460 efrain 6857
            \LeadersLinked\Controller\CountriesController::class => \LeadersLinked\Factory\Controller\CountriesControllerFactory::class,
15607 anderson 6858
 
1115 geraldo 6859
            \LeadersLinked\Controller\BehaviorsController::class => \LeadersLinked\Factory\Controller\BehaviorsControllerFactory::class,
1 www 6860
            \LeadersLinked\Controller\CompetencyTypeController::class => \LeadersLinked\Factory\Controller\CompetencyTypeControllerFactory::class,
6861
            \LeadersLinked\Controller\CompetencyController::class => \LeadersLinked\Factory\Controller\CompetencyControllerFactory::class,
6862
            \LeadersLinked\Controller\DegreeController::class => \LeadersLinked\Factory\Controller\DegreeControllerFactory::class,
13355 eleazar 6863
            \LeadersLinked\Controller\DevelopmentContentCategoryController::class => \LeadersLinked\Factory\Controller\DevelopmentContentCategoryControllerFactory::class,
6864
            \LeadersLinked\Controller\DevelopmentContentController::class => \LeadersLinked\Factory\Controller\DevelopmentContentControllerFactory::class,
1 www 6865
            \LeadersLinked\Controller\EmailTemplateController::class => \LeadersLinked\Factory\Controller\EmailTemplateControllerFactory::class,
6866
            \LeadersLinked\Controller\PushTemplateController::class => \LeadersLinked\Factory\Controller\PushTemplateControllerFactory::class,
6867
            \LeadersLinked\Controller\GroupTypeController::class => \LeadersLinked\Factory\Controller\GroupTypeControllerFactory::class,
6868
            \LeadersLinked\Controller\IndustryController::class => \LeadersLinked\Factory\Controller\IndustryControllerFactory::class,
6869
            \LeadersLinked\Controller\JobCategoryController::class => \LeadersLinked\Factory\Controller\JobCategoryControllerFactory::class,
28 efrain 6870
            \LeadersLinked\Controller\JobDescriptionController::class => \LeadersLinked\Factory\Controller\JobDescriptionControllerFactory::class,
1 www 6871
            \LeadersLinked\Controller\PageController::class => \LeadersLinked\Factory\Controller\PageControllerFactory::class,
67 efrain 6872
            \LeadersLinked\Controller\PositionController::class => \LeadersLinked\Factory\Controller\PositionControllerFactory::class,
1 www 6873
            \LeadersLinked\Controller\PostController::class => \LeadersLinked\Factory\Controller\PostControllerFactory::class,
6874
            \LeadersLinked\Controller\SkillController::class => \LeadersLinked\Factory\Controller\SkillControllerFactory::class,
6875
            \LeadersLinked\Controller\UserController::class => \LeadersLinked\Factory\Controller\UserControllerFactory::class,
6876
            \LeadersLinked\Controller\DashboardController::class => \LeadersLinked\Factory\Controller\DashboardControllerFactory::class,
115 efrain 6877
            \LeadersLinked\Controller\SelfEvaluationController::class => \LeadersLinked\Factory\Controller\SelfEvaluationControllerFactory::class,
6878
            \LeadersLinked\Controller\SelfEvaluationFormController::class => \LeadersLinked\Factory\Controller\SelfEvaluationFormControllerFactory::class,
1089 geraldo 6879
            \LeadersLinked\Controller\SelfEvaluationFormUserController::class => \LeadersLinked\Factory\Controller\SelfEvaluationFormUserControllerFactory::class,
247 geraldo 6880
            \LeadersLinked\Controller\SelfEvaluationReviewController::class => \LeadersLinked\Factory\Controller\SelfEvaluationReviewControllerFactory::class,
4375 eleazar 6881
            \LeadersLinked\Controller\SurveyController::class => \LeadersLinked\Factory\Controller\SurveyControllerFactory::class,
6882
            \LeadersLinked\Controller\SurveyFormController::class => \LeadersLinked\Factory\Controller\SurveyFormControllerFactory::class,
5868 eleazar 6883
            \LeadersLinked\Controller\SurveyReportController::class => \LeadersLinked\Factory\Controller\SurveyReportControllerFactory::class,
5287 eleazar 6884
            \LeadersLinked\Controller\SurveyTestController::class => \LeadersLinked\Factory\Controller\SurveyTestControllerFactory::class,
7218 eleazar 6885
            \LeadersLinked\Controller\OrganizationalClimateController::class => \LeadersLinked\Factory\Controller\OrganizationalClimateControllerFactory::class,
6886
            \LeadersLinked\Controller\OrganizationalClimateFormController::class => \LeadersLinked\Factory\Controller\OrganizationalClimateFormControllerFactory::class,
6887
            \LeadersLinked\Controller\OrganizationalClimateReportController::class => \LeadersLinked\Factory\Controller\OrganizationalClimateReportControllerFactory::class,
6888
            \LeadersLinked\Controller\OrganizationalClimateTestController::class => \LeadersLinked\Factory\Controller\OrganizationalClimateTestControllerFactory::class,
15394 efrain 6889
            \LeadersLinked\Controller\PerformanceEvaluationController::class => \LeadersLinked\Factory\Controller\PerformanceEvaluationControllerFactory::class,
987 geraldo 6890
            \LeadersLinked\Controller\PerformanceEvaluationFormController::class => \LeadersLinked\Factory\Controller\PerformanceEvaluationFormControllerFactory::class,
15394 efrain 6891
            \LeadersLinked\Controller\PerformanceEvaluationTestController::class => \LeadersLinked\Factory\Controller\PerformanceEvaluationTestControllerFactory::class,
9335 eleazar 6892
            \LeadersLinked\Controller\MyTrainerCategoriesController::class => \LeadersLinked\Factory\Controller\MyTrainerCategoriesControllerFactory::class,
12286 eleazar 6893
            \LeadersLinked\Controller\MyTrainerQuestionViewController::class => \LeadersLinked\Factory\Controller\MyTrainerQuestionViewControllerFactory::class,
9350 eleazar 6894
            \LeadersLinked\Controller\MyTrainerQuestionController::class => \LeadersLinked\Factory\Controller\MyTrainerQuestionControllerFactory::class,
10423 eleazar 6895
            \LeadersLinked\Controller\MyTrainerAnswerController::class => \LeadersLinked\Factory\Controller\MyTrainerAnswerControllerFactory::class,
15607 anderson 6896
 
1 www 6897
            \LeadersLinked\Controller\MicrolearningController::class => \LeadersLinked\Factory\Controller\MicrolearningControllerFactory::class,
66 efrain 6898
            \LeadersLinked\Controller\MicrolearningQuizController::class => \LeadersLinked\Factory\Controller\MicrolearningQuizControllerFactory::class,
6899
            \LeadersLinked\Controller\MicrolearningQuestionController::class => \LeadersLinked\Factory\Controller\MicrolearningQuestionControllerFactory::class,
6900
            \LeadersLinked\Controller\MicrolearningAnswerController::class => \LeadersLinked\Factory\Controller\MicrolearningAnswerControllerFactory::class,
1 www 6901
            \LeadersLinked\Controller\MicrolearningTopicController::class => \LeadersLinked\Factory\Controller\MicrolearningTopicControllerFactory::class,
6902
            \LeadersLinked\Controller\MicrolearningCapsuleController::class => \LeadersLinked\Factory\Controller\MicrolearningCapsuleControllerFactory::class,
6903
            \LeadersLinked\Controller\MicrolearningSlideController::class => \LeadersLinked\Factory\Controller\MicrolearningSlideControllerFactory::class,
6904
            \LeadersLinked\Controller\MicrolearningAccessForStudentsController::class => \LeadersLinked\Factory\Controller\MicrolearningAccessForStudentsControllerFactory::class,
6905
            \LeadersLinked\Controller\MicrolearningStudentsController::class => \LeadersLinked\Factory\Controller\MicrolearningStudentsControllerFactory::class,
6906
            \LeadersLinked\Controller\MicrolearningReportsController::class => \LeadersLinked\Factory\Controller\MicrolearningReportsControllerFactory::class,
6907
            \LeadersLinked\Controller\MicrolearningExtendUserCompanyController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserCompanyControllerFactory::class,
6908
            \LeadersLinked\Controller\MicrolearningExtendUserFunctionController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserFunctionControllerFactory::class,
6909
            \LeadersLinked\Controller\MicrolearningExtendUserGroupController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserGroupControllerFactory::class,
6910
            \LeadersLinked\Controller\MicrolearningExtendUserInstitutionController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserInstitutionControllerFactory::class,
6911
            \LeadersLinked\Controller\MicrolearningExtendUserPartnerController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserPartnerControllerFactory::class,
6912
            \LeadersLinked\Controller\MicrolearningExtendUserProgramController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserProgramControllerFactory::class,
6913
            \LeadersLinked\Controller\MicrolearningExtendUserSectorController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserSectorControllerFactory::class,
6914
            \LeadersLinked\Controller\MicrolearningExtendUserStudentTypeController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserStudentTypeControllerFactory::class,
15394 efrain 6915
            \LeadersLinked\Controller\MicrolearningExtendUserCountryController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserCountryControllerFactory::class,
1 www 6916
            \LeadersLinked\Controller\StorageController::class => \LeadersLinked\Factory\Controller\StorageControllerFactory::class,
15336 efrain 6917
            \LeadersLinked\Controller\StorageNetworkController::class => \LeadersLinked\Factory\Controller\StorageNetworkControllerFactory::class,
2232 nelberth 6918
            \LeadersLinked\Controller\PlanningObjectivesAndGoalsController::class => \LeadersLinked\Factory\Controller\PlanningObjectivesAndGoalsControllerFactory::class,
2228 nelberth 6919
            \LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController::class => \LeadersLinked\Factory\Controller\PlanningObjectivesAndGoalsObjectivesControllerFactory::class,
2327 nelberth 6920
            \LeadersLinked\Controller\PlanningObjectivesAndGoalsGoalsController::class => \LeadersLinked\Factory\Controller\PlanningObjectivesAndGoalsGoalsControllerFactory::class,
2517 nelberth 6921
            \LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController::class => \LeadersLinked\Factory\Controller\PlanningObjectivesAndGoalsTaskControllerFactory::class,
15336 efrain 6922
            \LeadersLinked\Controller\PrivateNetworksController::class => \LeadersLinked\Factory\Controller\PrivateNetworksControllerFactory::class,
6923
            \LeadersLinked\Controller\MyPrivateNetworkController::class => \LeadersLinked\Factory\Controller\MyPrivateNetworkControllerFactory::class,
4377 nelberth 6924
            \LeadersLinked\Controller\HighPerformanceTeamsController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsControllerFactory::class,
7224 nelberth 6925
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsControllerFactory::class,
9095 nelberth 6926
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewCalendarController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewCalendarControllerFactory::class,
9619 nelberth 6927
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewForoCategoriesControllerFactory::class,
9764 nelberth 6928
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewForoArticlesControllerFactory::class,
10143 nelberth 6929
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewForoControllerFactory::class,
9921 nelberth 6930
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesViewController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewForoArticlesViewControllerFactory::class,
7308 nelberth 6931
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewControllerFactory::class,
12433 nelberth 6932
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewObjectivesControllerFactory::class,
12736 nelberth 6933
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewGoalsController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewGoalsControllerFactory::class,
12835 nelberth 6934
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewTaskControllerFactory::class,
11898 nelberth 6935
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewFeedControllerFactory::class,
7494 nelberth 6936
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewTopicControllerFactory::class,
7811 nelberth 6937
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsMembersControllerFactory::class,
13014 nelberth 6938
            \LeadersLinked\Controller\ChatController::class => \LeadersLinked\Factory\Controller\ChatControllerFactory::class,
13010 nelberth 6939
            \LeadersLinked\Controller\CommunicationController::class => \LeadersLinked\Factory\Controller\CommunicationControllerFactory::class,
13675 nelberth 6940
            \LeadersLinked\Controller\CommunicationInboxController::class => \LeadersLinked\Factory\Controller\CommunicationInboxControllerFactory::class,
13528 nelberth 6941
            \LeadersLinked\Controller\InMailController::class => \LeadersLinked\Factory\Controller\InMailControllerFactory::class,
15607 anderson 6942
 
6943
 
15387 efrain 6944
            \LeadersLinked\Controller\ReportController::class => \LeadersLinked\Factory\Controller\ReportControllerFactory::class,
1333 efrain 6945
            \LeadersLinked\Controller\UnknownController::class => \LeadersLinked\Factory\Controller\UnknownControllerFactory::class,
66 efrain 6946
            \LeadersLinked\Controller\TestController::class => \LeadersLinked\Factory\Controller\TestControllerFactory::class,
15607 anderson 6947
 
15392 efrain 6948
            \LeadersLinked\Controller\AptitudeController::class => \LeadersLinked\Factory\Controller\AptitudeControllerFactory::class,
6949
            \LeadersLinked\Controller\HobbyAndInterestController::class => \LeadersLinked\Factory\Controller\HobbyAndInterestControllerFactory::class,
15607 anderson 6950
 
15401 efrain 6951
            \LeadersLinked\Controller\DiscoveryContactController::class => \LeadersLinked\Factory\Controller\DiscoveryContactControllerFactory::class,
6952
            \LeadersLinked\Controller\DiscoveryContactLogController::class  => \LeadersLinked\Factory\Controller\DiscoveryContactLogControllerFactory::class,
6953
            \LeadersLinked\Controller\DiscoveryContactInteractionTypeController::class  => \LeadersLinked\Factory\Controller\DiscoveryContactInteractionTypeControllerFactory::class,
6954
            \LeadersLinked\Controller\DiscoveryContactInteractionController::class  => \LeadersLinked\Factory\Controller\DiscoveryContactInteractionControllerFactory::class,
15607 anderson 6955
 
15649 anderson 6956
 
15442 efrain 6957
            \LeadersLinked\Controller\ActivityCenterController::Class  => \LeadersLinked\Factory\Controller\ActivityCenterControllerFactory::class,
6958
            \LeadersLinked\Controller\ActivityCenterPerformanceEvaluationController::class  => \LeadersLinked\Factory\Controller\ActivityCenterPerformanceEvaluationControllerFactory::class,
15461 efrain 6959
            \LeadersLinked\Controller\ActivityCenterRecruitmentSelectionController::class  => \LeadersLinked\Factory\Controller\ActivityCenterRecruitmentSelectionControllerFactory::class,
15607 anderson 6960
 
15540 efrain 6961
            \LeadersLinked\Controller\EngagementController::class => \LeadersLinked\Factory\Controller\EngagementControllerFactory::class,
15543 efrain 6962
            \LeadersLinked\Controller\EngagementRewardController::class => \LeadersLinked\Factory\Controller\EngagementRewardControllerFactory::class,
15540 efrain 6963
            \LeadersLinked\Controller\EngagementReportsController::class => \LeadersLinked\Factory\Controller\EngagementReportsControllerFactory::class,
15607 anderson 6964
 
15540 efrain 6965
            \LeadersLinked\Controller\DailyPulseController::Class  => \LeadersLinked\Factory\Controller\DailyPulseControllerFactory::class,
6966
            \LeadersLinked\Controller\DailyPulseEmojiController::Class  => \LeadersLinked\Factory\Controller\DailyPulseEmojiControllerFactory::class,
6967
            \LeadersLinked\Controller\DailyPulseReportsController::Class  => \LeadersLinked\Factory\Controller\DailyPulseReportsControllerFactory::class,
15607 anderson 6968
 
6969
 
15451 efrain 6970
            \LeadersLinked\Controller\MyCoachController::Class  => \LeadersLinked\Factory\Controller\MyCoachControllerFactory::class,
6971
            \LeadersLinked\Controller\MyCoachCategoryController::class  => \LeadersLinked\Factory\Controller\MyCoachCategoryControllerFactory::class,
15607 anderson 6972
 
15457 efrain 6973
            \LeadersLinked\Controller\UserRequestAccessController::class  => \LeadersLinked\Factory\Controller\UserRequestAccessControllerFactory::class,
15607 anderson 6974
 
6975
 
1 www 6976
        ],
6977
        'aliases' => [
6978
            '\LeadersLinked\Controller\AuthController' => \LeadersLinked\Controller\AuthController::class,
6979
            '\LeadersLinked\Controller\FollowerController' => \LeadersLinked\Controller\FollowerController::class,
6980
            '\LeadersLinked\Controller\FeedController' => \LeadersLinked\Controller\FeedController::class,
6981
            '\LeadersLinked\Controller\JobController' => \LeadersLinked\Controller\JobController::class,
1343 eleazar 6982
            '\LeadersLinked\Controller\RecruitmentSelectionController' => \LeadersLinked\Controller\RecruitmentSelectionController::class,
15461 efrain 6983
            '\LeadersLinked\Controller\RecruitmentSelectionApplicationController' => \LeadersLinked\Controller\RecruitmentSelectionApplicationController::class,
1385 eleazar 6984
            '\LeadersLinked\Controller\RecruitmentSelectionVacancyController' => \LeadersLinked\Controller\RecruitmentSelectionVacancyController::class,
15461 efrain 6985
            '\LeadersLinked\Controller\RecruitmentSelectionFileController' => \LeadersLinked\Controller\RecruitmentSelectionFileController::class,
6986
            '\LeadersLinked\Controller\RecruitmentSelectionInterviewController' => \LeadersLinked\Controller\RecruitmentSelectionInterviewController::class,
1 www 6987
            '\LeadersLinked\Controller\ProfileController' => \LeadersLinked\Controller\ProfileController::class,
6988
            '\LeadersLinked\Controller\CompanyController' => \LeadersLinked\Controller\CompanyController::class,
6989
            '\LeadersLinked\Controller\CompanySizeController' => \LeadersLinked\Controller\CompanySizeController::class,
6990
            '\LeadersLinked\Controller\CompetencyTypeController' => \LeadersLinked\Controller\CompetencyTypeController::class,
1102 geraldo 6991
            '\LeadersLinked\Controller\BehaviorsController' => \LeadersLinked\Controller\BehaviorsController::class,
1 www 6992
            '\LeadersLinked\Controller\CompetencyController' => \LeadersLinked\Controller\CompetencyController::class,
6993
            '\LeadersLinked\Controller\DegreeController' => \LeadersLinked\Controller\DegreeController::class,
13355 eleazar 6994
            '\LeadersLinked\Controller\DevelopmentContentCategoryController' => \LeadersLinked\Controller\DevelopmentContentCategoryController::class,
6995
            '\LeadersLinked\Controller\DevelopmentContentController' => \LeadersLinked\Controller\DevelopmentContentController::class,
1 www 6996
            '\LeadersLinked\Controller\EmailTemplateController' => \LeadersLinked\Controller\EmailTemplateController::class,
1089 geraldo 6997
            '\LeadersLinked\Controller\PushTemplateController' => \LeadersLinked\Controller\PushTemplateController::class,
1 www 6998
            '\LeadersLinked\Controller\GroupTypeController' => \LeadersLinked\Controller\GroupTypeController::class,
6999
            '\LeadersLinked\Controller\IndustryController' => \LeadersLinked\Controller\IndustryController::class,
7000
            '\LeadersLinked\Controller\JobCategoryController' => \LeadersLinked\Controller\JobCategoryController::class,
66 efrain 7001
            '\LeadersLinked\Controller\JobDescriptionController' => \LeadersLinked\Controller\JobDescriptionController::class,
1 www 7002
            '\LeadersLinked\Controller\PageController' => \LeadersLinked\Controller\PageController::class,
67 efrain 7003
            '\LeadersLinked\Controller\PositionController' => \LeadersLinked\Controller\PositionController::class,
1 www 7004
            '\LeadersLinked\Controller\PostController' => \LeadersLinked\Controller\PostController::class,
7005
            '\LeadersLinked\Controller\SkillController' => \LeadersLinked\Controller\SkillController::class,
7006
            '\LeadersLinked\Controller\UserController' => \LeadersLinked\Controller\UserController::class,
7007
            '\LeadersLinked\Controller\DashboardController' => \LeadersLinked\Controller\DashboardController::class,
115 efrain 7008
            '\LeadersLinked\Controller\SelfEvaluationController' => \LeadersLinked\Controller\SelfEvaluationController::class,
7009
            '\LeadersLinked\Controller\SelfEvaluationFormController' => \LeadersLinked\Controller\SelfEvaluationFormController::class,
7010
            '\LeadersLinked\Controller\SelfEvaluationFormUserController' => \LeadersLinked\Controller\SelfEvaluationFormUserController::class,
247 geraldo 7011
            '\LeadersLinked\Controller\SelfEvaluationReviewController' => \LeadersLinked\Controller\SelfEvaluationReviewController::class,
4375 eleazar 7012
            '\LeadersLinked\Controller\SurveyController' => \LeadersLinked\Controller\SurveyController::class,
7013
            '\LeadersLinked\Controller\SurveyFormController' => \LeadersLinked\Controller\SurveyFormController::class,
5868 eleazar 7014
            '\LeadersLinked\Controller\SurveyReportController' => \LeadersLinked\Controller\SurveyReportController::class,
5287 eleazar 7015
            '\LeadersLinked\Controller\SurveyTestController' => \LeadersLinked\Controller\SurveyTestController::class,
7218 eleazar 7016
            '\LeadersLinked\Controller\OrganizationalClimateController' => \LeadersLinked\Controller\OrganizationalClimateController::class,
7017
            '\LeadersLinked\Controller\OrganizationalClimateFormController' => \LeadersLinked\Controller\OrganizationalClimateFormController::class,
7018
            '\LeadersLinked\Controller\OrganizationalClimateReportController' => \LeadersLinked\Controller\OrganizationalClimateReportController::class,
7019
            '\LeadersLinked\Controller\OrganizationalClimateTestController' => \LeadersLinked\Controller\OrganizationalClimateTestController::class,
15394 efrain 7020
            '\LeadersLinked\Controller\PerformanceEvaluationController' => \LeadersLinked\Controller\PerformanceEvaluationController::class,
982 geraldo 7021
            '\LeadersLinked\Controller\PerformanceEvaluationFormController' => \LeadersLinked\Controller\PerformanceEvaluationFormController::class,
15394 efrain 7022
            '\LeadersLinked\Controller\PerformanceEvaluationTestController' => \LeadersLinked\Controller\PerformanceEvaluationTestController::class,
1 www 7023
            '\LeadersLinked\Controller\MicrolearningController' => \LeadersLinked\Controller\MicrolearningController::class,
66 efrain 7024
            '\LeadersLinked\Controller\MicrolearningQuizController' => \LeadersLinked\Controller\MicrolearningQuizController::class,
7025
            '\LeadersLinked\Controller\MicrolearningQuestionController' => \LeadersLinked\Controller\MicrolearningQuestionController::class,
7026
            '\LeadersLinked\Controller\MicrolearningAnswerController' => \LeadersLinked\Controller\MicrolearningAnswerController::class,
1 www 7027
            '\LeadersLinked\Controller\MicrolearningTopicController' => \LeadersLinked\Controller\MicrolearningTopicController::class,
7028
            '\LeadersLinked\Controller\MicrolearningCapsuleController' => \LeadersLinked\Controller\MicrolearningCapsuleController::class,
7029
            '\LeadersLinked\Controller\MicrolearningSlideController' => \LeadersLinked\Controller\MicrolearningSlideController::class,
7030
            '\LeadersLinked\Controller\MicrolearningStudentsController' => \LeadersLinked\Controller\MicrolearningStudentsController::class,
7031
            '\LeadersLinked\Controller\MicrolearningAccessForStudentsController' => \LeadersLinked\Controller\MicrolearningAccessForStudentsController::class,
7032
            '\LeadersLinked\Controller\MicrolearningReportsController' => \LeadersLinked\Controller\MicrolearningReportsController::class,
7033
            '\LeadersLinked\Controller\MicrolearningExtendUserCompanyController' => \LeadersLinked\Controller\MicrolearningExtendUserCompanyController::class,
7034
            '\LeadersLinked\Controller\MicrolearningExtendUserFunctionController' => \LeadersLinked\Controller\MicrolearningExtendUserFunctionController::class,
7035
            '\LeadersLinked\Controller\MicrolearningExtendUserGroupController' => \LeadersLinked\Controller\MicrolearningExtendUserGroupController::class,
7036
            '\LeadersLinked\Controller\MicrolearningExtendUserInstitutionController' => \LeadersLinked\Controller\MicrolearningExtendUserInstitutionController::class,
7037
            '\LeadersLinked\Controller\MicrolearningExtendUserPartnerController' => \LeadersLinked\Controller\MicrolearningExtendUserPartnerController::class,
12792 eleazar 7038
            '\LeadersLinked\Controller\MicrolearningExtendUserStudentTypeController' => \LeadersLinked\Controller\MicrolearningExtendUserStudentTypeController::class,
1 www 7039
            '\LeadersLinked\Controller\MicrolearningExtendUserProgramController' => \LeadersLinked\Controller\MicrolearningExtendUserProgramController::class,
7040
            '\LeadersLinked\Controller\MicrolearningExtendUserSectorController' => \LeadersLinked\Controller\MicrolearningExtendUserSectorController::class,
15394 efrain 7041
            '\LeadersLinked\Controller\MicrolearningExtendUserCountryController' => \LeadersLinked\Controller\MicrolearningExtendUserCountryController::class,
9335 eleazar 7042
            '\LeadersLinked\Controller\MyTrainerCategoriesController' => \LeadersLinked\Controller\MyTrainerCategoriesController::class,
12286 eleazar 7043
            '\LeadersLinked\Controller\MyTrainerQuestionViewController' => \LeadersLinked\Controller\MyTrainerQuestionViewController::class,
9350 eleazar 7044
            '\LeadersLinked\Controller\MyTrainerQuestionController' => \LeadersLinked\Controller\MyTrainerQuestionController::class,
10423 eleazar 7045
            '\LeadersLinked\Controller\MyTrainerAnswerController' => \LeadersLinked\Controller\MyTrainerAnswerController::class,
1 www 7046
            '\LeadersLinked\Controller\StorageController' => \LeadersLinked\Controller\StorageController::class,
15336 efrain 7047
            '\LeadersLinked\Controller\StorageNetworkController' => \LeadersLinked\Controller\StorageNetworkController::class,
2232 nelberth 7048
            '\LeadersLinked\Controller\PlanningObjectivesAndGoalsController' => \LeadersLinked\Controller\PlanningObjectivesAndGoalsController::class,
2228 nelberth 7049
            '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController' => \LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController::class,
2517 nelberth 7050
            '\LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController' => \LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController::class,
4377 nelberth 7051
            '\LeadersLinked\Controller\PlanningObjectivesAndGoalsGoalsController' => \LeadersLinked\Controller\PlanningObjectivesAndGoalsGoalsController::class,
15336 efrain 7052
            '\LeadersLinked\Controller\MyPrivateNetworkController' => \LeadersLinked\Controller\MyPrivateNetworkController::class,
7053
            '\LeadersLinked\Controller\PrivateNetworksController' => \LeadersLinked\Controller\PrivateNetworksController::class,
4377 nelberth 7054
            '\LeadersLinked\Controller\HighPerformanceTeamsController' => \LeadersLinked\Controller\HighPerformanceTeamsController::class,
7224 nelberth 7055
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsController::class,
7308 nelberth 7056
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewController::class,
12435 nelberth 7057
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController::class,
12736 nelberth 7058
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewGoalsController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewGoalsController::class,
12835 nelberth 7059
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController::class,
11898 nelberth 7060
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController::class,
7494 nelberth 7061
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController::class,
9095 nelberth 7062
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewCalendarController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewCalendarController::class,
9619 nelberth 7063
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController::class,
9764 nelberth 7064
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesController::class,
10143 nelberth 7065
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoController::class,
9921 nelberth 7066
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesViewController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesViewController::class,
7811 nelberth 7067
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController::class,
11340 nelberth 7068
            '\LeadersLinked\Controller\ChatController' => \LeadersLinked\Controller\ChatController::class,
13010 nelberth 7069
            '\LeadersLinked\Controller\CommunicationController' => \LeadersLinked\Controller\CommunicationController::class,
13675 nelberth 7070
            '\LeadersLinked\Controller\CommunicationInboxController' => \LeadersLinked\Controller\CommunicationInboxController::class,
13528 nelberth 7071
            '\LeadersLinked\Controller\InMailController' => \LeadersLinked\Controller\InMailController::class,
15387 efrain 7072
            '\LeadersLinked\Controller\ReportController' => \LeadersLinked\Controller\ReportController::class,
1333 efrain 7073
            '\LeadersLinked\Controller\UnknownController' => \LeadersLinked\Controller\UnknownController::class,
13014 nelberth 7074
            '\LeadersLinked\Controller\TestController' => \LeadersLinked\Controller\TestController::class,
15392 efrain 7075
            '\LeadersLinked\Controller\AptitudeController' => \LeadersLinked\Controller\AptitudeController::class,
7076
            '\LeadersLinked\Controller\HobbyAndInterestController' => \LeadersLinked\Controller\HobbyAndInterestController::class,
15460 efrain 7077
            '\LeadersLinked\Controller\CountriesController' => \LeadersLinked\Controller\CountriesController::class,
15607 anderson 7078
 
7079
 
15401 efrain 7080
            '\LeadersLinked\Controller\DiscoveryContactController' => \LeadersLinked\Controller\DiscoveryContactController::class,
7081
            '\LeadersLinked\Controller\DiscoveryContactLogController' => \LeadersLinked\Controller\DiscoveryContactLogController::class,
7082
            '\LeadersLinked\Controller\DiscoveryContactInteractionTypeController' => \LeadersLinked\Controller\DiscoveryContactInteractionTypeController::class,
7083
            '\LeadersLinked\Controller\DiscoveryContactInteractionController' => \LeadersLinked\Controller\DiscoveryContactInteractionController::class,
15607 anderson 7084
 
15442 efrain 7085
            '\LeadersLinked\Controller\ActivityCenterController' => \LeadersLinked\Controller\ActivityCenterController::class,
7086
            '\LeadersLinked\Controller\ActivityCenterPerformanceEvaluationController' => \LeadersLinked\Controller\ActivityCenterPerformanceEvaluationController::class,
15461 efrain 7087
            '\LeadersLinked\Controller\ActivityCenterRecruitmentSelectionController' => \LeadersLinked\Controller\ActivityCenterRecruitmentSelectionController::class,
15607 anderson 7088
 
15540 efrain 7089
            '\LeadersLinked\Controller\EngagementController' => \LeadersLinked\Controller\EngagementController::class,
15543 efrain 7090
            '\LeadersLinked\Controller\EngagementRewardController' => \LeadersLinked\Controller\EngagementRewardController::class,
15540 efrain 7091
            '\LeadersLinked\Controller\EngagementReportsController' => \LeadersLinked\Controller\EngagementReportsController::class,
15607 anderson 7092
 
15540 efrain 7093
            '\LeadersLinked\Controller\DailyPulseController' => \LeadersLinked\Controller\DailyPulseController::class,
7094
            '\LeadersLinked\Controller\DailyPulseEmojiController' => \LeadersLinked\Controller\DailyPulseEmojiController::class,
7095
            '\LeadersLinked\Controller\DailyPulseReportsController' => \LeadersLinked\Controller\DailyPulseReportsController::class,
15607 anderson 7096
 
15451 efrain 7097
            '\LeadersLinked\Controller\MyCoachController' => \LeadersLinked\Controller\MyCoachController::class,
7098
            '\LeadersLinked\Controller\MyCoachCategoryController' => \LeadersLinked\Controller\MyCoachCategoryController::class,
15607 anderson 7099
 
7100
 
15457 efrain 7101
            '\LeadersLinked\Controller\UserRequestAccessController' => \LeadersLinked\Controller\UserRequestAccessController::Class,
15607 anderson 7102
 
1 www 7103
        ]
7104
    ],
7105
    'laminas-cli' => [
15607 anderson 7106
        'commands' => []
1 www 7107
    ],
7108
    'service_manager' => [
7109
        'abstract_factories' => [
7110
            \Laminas\Db\Adapter\AdapterAbstractServiceFactory::class
7111
        ],
7112
        'factories' => [
7113
            'RenderingStrategy' => function ($container) {
7114
                $translator = $container->get('MvcTranslator');
7115
                return new \LeadersLinked\View\RenderingStrategy($translator);
7116
            },
7117
            'menuNavigation' => \LeadersLinked\Navigation\MenuNavigation::class,
7118
            'footerNavigation' => \LeadersLinked\Navigation\FooterNavigation::class,
1089 geraldo 7119
        ],
15607 anderson 7120
        'aliases' => [ // 'leaders-linked-storage' => \LeadersLinked\Service\StorageService::class
1 www 7121
        ]
7122
    ],
7123
    'view_helpers' => [
7124
        'factories' => [
11351 nelberth 7125
            \LeadersLinked\Helper\ChatHelper::class => \LeadersLinked\Factory\Helper\ChatHelperFactory::class,
1 www 7126
            \LeadersLinked\Helper\CurrentUserHelper::class => \LeadersLinked\Factory\Helper\CurrentUserHelperFactory::class,
15336 efrain 7127
            \LeadersLinked\Helper\CurrentNetworkHelper::class => \LeadersLinked\Factory\Helper\CurrentNetworkHelperFactory::class,
7128
            \LeadersLinked\Helper\NetworkFavicoHelper::class => \LeadersLinked\Factory\Helper\NetworkFavicoHelperFactory::class,
7129
            \LeadersLinked\Helper\NetworkIntroHelper::class => \LeadersLinked\Factory\Helper\NetworkIntroHelperFactory::class,
7130
            \LeadersLinked\Helper\NetworkLogoHelper::class => \LeadersLinked\Factory\Helper\NetworkLogoHelperFactory::class,
7131
            \LeadersLinked\Helper\NetworkNavbarHelper::class => \LeadersLinked\Factory\Helper\NetworkNavbarHelperFactory::class,
7132
            \LeadersLinked\Helper\NetworkStylesAndColorsHelper::class => \LeadersLinked\Factory\Helper\NetworkStylesAndColorsHelperFactory::class,
15607 anderson 7133
 
1 www 7134
        ],
7135
        'invokables' => [
11527 nelberth 7136
            'chatHelper' => \LeadersLinked\Helper\ChatHelper::class,
1 www 7137
            'menuHelper' => \LeadersLinked\Helper\MenuHelper::class,
7138
        ],
7139
        'aliases' => [
15607 anderson 7140
 
1 www 7141
            'currentUserHelper' => \LeadersLinked\Helper\CurrentUserHelper::class,
15336 efrain 7142
            'currentNetworkHelper' =>  \LeadersLinked\Helper\CurrentNetworkHelper::class,
7143
            'networkFavicoHelper'  => \LeadersLinked\Helper\NetworkFavicoHelper::class,
7144
            'networkIntroHelper' => \LeadersLinked\Helper\NetworkIntroHelper::class,
7145
            'networkLogoHelper'  => \LeadersLinked\Helper\NetworkLogoHelper::class,
7146
            'networkNavbarHelper'  => \LeadersLinked\Helper\NetworkNavbarHelper::class,
7147
            'networkStylesAndColorsHelper'  => \LeadersLinked\Helper\NetworkStylesAndColorsHelper::class,
15607 anderson 7148
 
7149
 
1 www 7150
        ]
7151
    ],
7152
    'controller_plugins' => [
7153
        'invokables' => [],
7154
        'factories' => [
15336 efrain 7155
            \LeadersLinked\Plugin\CurrentUserPlugin::class => \LeadersLinked\Factory\Plugin\CurrentUserPluginFactory::class,
7156
            \LeadersLinked\Plugin\CurrentNetworkPlugin::class => \LeadersLinked\Factory\Plugin\CurrentNetworkPluginFactory::class,
1 www 7157
        ],
7158
        'aliases' => [
15607 anderson 7159
            'currentUserPlugin' => \LeadersLinked\Plugin\CurrentUserPlugin::class,
15336 efrain 7160
            'currentNetworkPlugin' => \LeadersLinked\Plugin\CurrentNetworkPlugin::class,
1 www 7161
        ]
7162
    ],
7163
    'view_manager' => [
7164
        'display_not_found_reason' => true,
7165
        'display_exceptions' => true,
7166
        'doctype' => 'HTML5',
7167
        'not_found_template' => 'error/404',
7168
        'exception_template' => 'error/index',
7169
        'template_map' => [
7170
            'layout/layout' => __DIR__ . '/../view/layout/layout.phtml',
7171
            'error/404' => __DIR__ . '/../view/error/404.phtml',
7172
            'error/index' => __DIR__ . '/../view/error/index.phtml'
7173
        ],
7174
        'template_path_stack' => [
7175
            __DIR__ . '/../view'
7176
        ],
7177
        'strategies' => [
7178
            'ViewJsonStrategy',
7179
            'RenderingStrategy'
7180
        ]
7181
    ]
7182
];