Proyectos de Subversion LeadersLinked - Backend

Rev

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