Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 15540 | Rev 15546 | 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' => [
15543 efrain 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|daily-pulse|engagement-reward',
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
            ],
15540 efrain 2259
            'engagement' => [
2260
                'type' => Literal::class,
2261
                'options' => [
2262
                    'route' => '/engagement',
2263
                    'defaults' => [
2264
                        'controller' => '\LeadersLinked\Controller\EngagementController',
2265
                        'action' => 'index'
2266
                    ]
2267
                ],
2268
                'may_terminate' => true,
2269
                'child_routes' => [
2270
                    'setup' => [
2271
                        'type' => Literal::class,
2272
                        'options' => [
2273
                            'route' => '/setup',
2274
                            'defaults' => [
2275
                                'controller' => '\LeadersLinked\Controller\EngagementController',
2276
                                'action' => 'setup'
2277
                            ]
2278
                        ],
2279
                    ],
15543 efrain 2280
                    'rewards' => [
2281
                        'type' => Literal::class,
2282
                        'options' => [
2283
                            'route' => '/rewards',
2284
                            'defaults' => [
2285
                                'controller' => '\LeadersLinked\Controller\EngagementRewardController',
2286
                                'action' => 'index'
2287
                            ]
2288
                        ],
2289
                        'may_terminate' => true,
2290
                        'child_routes' => [
2291
                            'add' => [
2292
                                'type' => Literal::class,
2293
                                'options' => [
2294
                                    'route' => '/add',
2295
                                    'defaults' => [
2296
                                        'controller' => '\LeadersLinked\Controller\EngagementRewardController',
2297
                                        'action' => 'add'
2298
                                    ]
2299
                                ]
2300
                            ],
2301
                            'edit' => [
2302
                                'type' => Segment::class,
2303
                                'options' => [
2304
                                    'route' => '/edit/:id',
2305
                                    'constraints' => [
2306
                                        'id' => '[A-Za-z0-9\-]+\=*'
2307
                                    ],
2308
                                    'defaults' => [
2309
                                        'controller' => '\LeadersLinked\Controller\EngagementRewardController',
2310
                                        'action' => 'edit'
2311
                                    ]
2312
                                ]
2313
                            ],
2314
                            'delete' => [
2315
                                'type' => Segment::class,
2316
                                'options' => [
2317
                                    'route' => '/delete/:id',
2318
                                    'constraints' => [
2319
                                        'id' => '[A-Za-z0-9\-]+\=*'
2320
                                    ],
2321
                                    'defaults' => [
2322
                                        'controller' => '\LeadersLinked\Controller\EngagementRewardController',
2323
                                        'action' => 'delete'
2324
                                    ]
2325
                                ]
2326
                            ]
2327
                        ],
2328
 
2329
                    ],
15540 efrain 2330
                    'reports' => [
2331
                        'type' => Literal::class,
2332
                        'options' => [
2333
                            'route' => '/reports',
2334
                            'defaults' => [
2335
                                'controller' => '\LeadersLinked\Controller\EngagementReportsController',
2336
                                'action' => 'index'
2337
                            ]
2338
                        ],
2339
                        'may_terminate' => true,
2340
                        'child_routes' => [
2341
                            'overview' => [
2342
                                'type' => Literal::class,
2343
                                'options' => [
2344
                                    'route' => '/overview',
2345
                                    'defaults' => [
2346
                                        'controller' => '\LeadersLinked\Controller\EngagementReportsController',
2347
                                        'action' => 'overview'
2348
                                    ]
2349
                                ]
2350
                            ],
2351
 
2352
                        ]
2353
                    ],
2354
                ],
2355
            ],
2356
 
2357
            /*** DAILY PULSE ****/
2358
            'daily-pulse' => [
2359
                'type' => Literal::class,
2360
                'options' => [
2361
                    'route' => '/daily-pulse',
2362
                    'defaults' => [
2363
                        'controller' => '\LeadersLinked\Controller\DailyPulseController',
2364
                        'action' => 'index'
2365
                    ]
2366
                ],
2367
                'may_terminate' => true,
2368
                'child_routes' => [
2369
                    'emojis' => [
2370
                        'type' => Literal::class,
2371
                        'options' => [
2372
                            'route' => '/emojis',
2373
                            'defaults' => [
2374
                                'controller' => '\LeadersLinked\Controller\DailyPulseEmojiController',
2375
                                'action' => 'index'
2376
                            ]
2377
                        ],
2378
                        'may_terminate' => true,
2379
                        'child_routes' => [
2380
                            'add' => [
2381
                                'type' => Literal::class,
2382
                                'options' => [
2383
                                    'route' => '/add',
2384
                                    'defaults' => [
2385
                                        'controller' => '\LeadersLinked\Controller\DailyPulseEmojiController',
2386
                                        'action' => 'add'
2387
                                    ]
2388
                                ]
2389
                            ],
2390
                            'edit' => [
2391
                                'type' => Segment::class,
2392
                                'options' => [
2393
                                    'route' => '/edit/:id',
2394
                                    'constraints' => [
2395
                                        'id' => '[A-Za-z0-9\-]+\=*'
2396
                                    ],
2397
                                    'defaults' => [
2398
                                        'controller' => '\LeadersLinked\Controller\DailyPulseEmojiController',
2399
                                        'action' => 'edit'
2400
                                    ]
2401
                                ]
2402
                            ],
2403
                            'delete' => [
2404
                                'type' => Segment::class,
2405
                                'options' => [
2406
                                    'route' => '/delete/:id',
2407
                                    'constraints' => [
2408
                                        'id' => '[A-Za-z0-9\-]+\=*'
2409
                                    ],
2410
                                    'defaults' => [
2411
                                        'controller' => '\LeadersLinked\Controller\DailyPulseEmojiController',
2412
                                        'action' => 'delete'
2413
                                    ]
2414
                                ]
2415
                            ]
2416
                        ],
2417
 
2418
                    ],
2419
                    'reports' => [
2420
                        'type' => Literal::class,
2421
                        'options' => [
2422
                            'route' => '/reports',
2423
                            'defaults' => [
2424
                                'controller' => '\LeadersLinked\Controller\DailyPulseReportsController',
2425
                                'action' => 'index'
2426
                            ]
2427
                        ],
2428
                        'may_terminate' => true,
2429
                        'child_routes' => [
2430
                            'overview' => [
2431
                                'type' => Literal::class,
2432
                                'options' => [
2433
                                    'route' => '/overview',
2434
                                    'defaults' => [
2435
                                        'controller' => '\LeadersLinked\Controller\DailyPulseReportsController',
2436
                                        'action' => 'overview'
2437
                                    ]
2438
                                ],
2439
                                'may_terminate' => true,
2440
                                'child_routes' => [
2441
                                    'download' => [
2442
                                        'type' => Literal::class,
2443
                                        'options' => [
2444
                                            'route' => '/download',
2445
                                            'defaults' => [
2446
                                                'controller' => '\LeadersLinked\Controller\DailyPulseReportsController',
2447
                                                'action' => 'overviewDownload'
2448
                                            ]
2449
                                        ]
2450
                                    ],
2451
                                ]
2452
                            ],
2453
 
2454
                        ]
2455
                    ],
2456
                ],
2457
            ],
1089 geraldo 2458
            /*             * * START SELF EVALUATION ** */
114 efrain 2459
            'self-evaluation' => [
2460
                'type' => Literal::class,
2461
                'options' => [
2462
                    'route' => '/self-evaluation',
2463
                    'defaults' => [
115 efrain 2464
                        'controller' => '\LeadersLinked\Controller\SelfEvaluationController',
114 efrain 2465
                        'action' => 'index'
2466
                    ]
2467
                ],
2468
                'may_terminate' => true,
2469
                'child_routes' => [
2470
                    'forms' => [
2471
                        'type' => Literal::class,
2472
                        'options' => [
2473
                            'route' => '/forms',
2474
                            'defaults' => [
115 efrain 2475
                                'controller' => '\LeadersLinked\Controller\SelfEvaluationFormController',
114 efrain 2476
                                'action' => 'index'
2477
                            ]
2478
                        ],
2479
                        'may_terminate' => true,
2480
                        'child_routes' => [
2481
                            'add' => [
2482
                                'type' => Literal::class,
2483
                                'options' => [
2484
                                    'route' => '/add',
2485
                                    'defaults' => [
115 efrain 2486
                                        'controller' => '\LeadersLinked\Controller\SelfEvaluationFormController',
114 efrain 2487
                                        'action' => 'add'
2488
                                    ]
2489
                                ]
2490
                            ],
2491
                            'edit' => [
2492
                                'type' => Segment::class,
2493
                                'options' => [
2494
                                    'route' => '/edit/:id',
2495
                                    'constraints' => [
2496
                                        'id' => '[A-Za-z0-9\-]+\=*'
2497
                                    ],
2498
                                    'defaults' => [
115 efrain 2499
                                        'controller' => '\LeadersLinked\Controller\SelfEvaluationFormController',
114 efrain 2500
                                        'action' => 'edit'
2501
                                    ]
2502
                                ]
2503
                            ],
2504
                            'delete' => [
2505
                                'type' => Segment::class,
2506
                                'options' => [
2507
                                    'route' => '/delete/:id',
2508
                                    'constraints' => [
2509
                                        'id' => '[A-Za-z0-9\-]+\=*'
2510
                                    ],
2511
                                    'defaults' => [
115 efrain 2512
                                        'controller' => '\LeadersLinked\Controller\SelfEvaluationFormController',
114 efrain 2513
                                        'action' => 'delete'
2514
                                    ]
2515
                                ]
2516
                            ]
2517
                        ]
2518
                    ],
115 efrain 2519
                    'users' => [
2520
                        'type' => Literal::class,
2521
                        'options' => [
2522
                            'route' => '/users',
2523
                            'defaults' => [
2524
                                'controller' => '\LeadersLinked\Controller\SelfEvaluationFormUserController',
2525
                                'action' => 'index'
2526
                            ]
2527
                        ],
2528
                        'may_terminate' => true,
2529
                        'child_routes' => [
2530
                            'add' => [
2531
                                'type' => Segment::class,
2532
                                'options' => [
2533
                                    'route' => '/add/:form_id/:user_id',
2534
                                    'constraints' => [
2535
                                        'form_id' => '[A-Za-z0-9\-]+\=*',
2536
                                        'user_id' => '[A-Za-z0-9\-]+\=*'
2537
                                    ],
2538
                                    'defaults' => [
2539
                                        'controller' => '\LeadersLinked\Controller\SelfEvaluationFormUserController',
2540
                                        'action' => 'add'
2541
                                    ]
2542
                                ]
2543
                            ],
2544
                            'delete' => [
2545
                                'type' => Segment::class,
2546
                                'options' => [
2547
                                    'route' => '/delete/:form_id/:user_id',
2548
                                    'constraints' => [
2549
                                        'form_id' => '[A-Za-z0-9\-]+\=*',
2550
                                        'user_id' => '[A-Za-z0-9\-]+\=*'
2551
                                    ],
2552
                                    'defaults' => [
2553
                                        'controller' => '\LeadersLinked\Controller\SelfEvaluationFormUserController',
2554
                                        'action' => 'delete'
2555
                                    ]
2556
                                ]
2557
                            ]
2558
                        ]
2559
                    ],
114 efrain 2560
                    'reviews' => [
2561
                        'type' => Literal::class,
2562
                        'options' => [
2563
                            'route' => '/reviews',
2564
                            'defaults' => [
115 efrain 2565
                                'controller' => '\LeadersLinked\Controller\SelfEvaluationReviewController',
114 efrain 2566
                                'action' => 'index'
2567
                            ]
2568
                        ],
2569
                        'may_terminate' => true,
2570
                        'child_routes' => [
2571
                            'edit' => [
2572
                                'type' => Segment::class,
2573
                                'options' => [
2574
                                    'route' => '/edit/:id',
2575
                                    'constraints' => [
2576
                                        'id' => '[A-Za-z0-9\-]+\=*'
2577
                                    ],
2578
                                    'defaults' => [
115 efrain 2579
                                        'controller' => '\LeadersLinked\Controller\SelfEvaluationReviewController',
486 geraldo 2580
                                        'action' => 'edit'
114 efrain 2581
                                    ]
2582
                                ]
2583
                            ],
469 geraldo 2584
                            'report' => [
2585
                                'type' => Segment::class,
2586
                                'options' => [
2587
                                    'route' => '/report/:id',
2588
                                    'constraints' => [
2589
                                        'id' => '[A-Za-z0-9\-]+\=*'
2590
                                    ],
2591
                                    'defaults' => [
2592
                                        'controller' => '\LeadersLinked\Controller\SelfEvaluationReviewController',
487 geraldo 2593
                                        'action' => 'report'
469 geraldo 2594
                                    ]
2595
                                ]
2596
                            ],
114 efrain 2597
                        ]
2598
                    ],
2599
                ]
1089 geraldo 2600
            ],
2601
            /*             * * END SELF EVALUATION ** */
15451 efrain 2602
 
2603
            /*             * * START MY COACH ** */
2604
            'my-coach' => [
2605
                'type' => Literal::class,
2606
                'options' => [
2607
                    'route' => '/my-coach',
2608
                    'defaults' => [
2609
                        'controller' => '\LeadersLinked\Controller\MyCoachController',
2610
                        'action' => 'index'
2611
                    ]
2612
                ],
2613
                'may_terminate' => true,
2614
                'child_routes' => [
2615
                    'categories' => [
2616
                        'type' => Literal::class,
2617
                        'options' => [
2618
                            'route' => '/categories',
2619
                            'defaults' => [
2620
                                'controller' => '\LeadersLinked\Controller\MyCoachCategoryController',
2621
                                'action' => 'index'
2622
                            ]
2623
                        ],
2624
                        'may_terminate' => true,
2625
                        'child_routes' => [
2626
                            'add' => [
2627
                                'type' => Literal::class,
2628
                                'options' => [
2629
                                    'route' => '/add',
2630
                                    'defaults' => [
2631
                                        'controller' =>  '\LeadersLinked\Controller\MyCoachCategoryController',
2632
                                        'action' => 'add'
2633
                                    ]
2634
                                ]
2635
                            ],
2636
                            'edit' => [
2637
                                'type' => Segment::class,
2638
                                'options' => [
2639
                                    'route' => '/edit/:id',
2640
                                    'constraints' => [
2641
                                        'id' => '[A-Za-z0-9\-]+\=*'
2642
                                    ],
2643
                                    'defaults' => [
2644
                                        'controller' =>  '\LeadersLinked\Controller\MyCoachCategoryController',
2645
                                        'action' => 'edit'
2646
                                    ]
2647
                                ]
2648
                            ],
2649
                            'delete' => [
2650
                                'type' => Segment::class,
2651
                                'options' => [
2652
                                    'route' => '/delete/:id',
2653
                                    'constraints' => [
2654
                                        'id' => '[A-Za-z0-9\-]+\=*'
2655
                                    ],
2656
                                    'defaults' => [
2657
                                        'controller' =>  '\LeadersLinked\Controller\MyCoachCategoryController',
2658
                                        'action' => 'delete'
2659
                                    ]
2660
                                ]
2661
                            ],
2662
 
2663
                        ]
2664
                    ],
2665
                ]
2666
            ],
2667
 
2668
            /*             * * END MY COACH ** */
2669
 
946 geraldo 2670
 
1089 geraldo 2671
            /*             * * START PERFOMANCE EVALUATION ** */
946 geraldo 2672
            'performance-evaluation' => [
2673
                'type' => Literal::class,
2674
                'options' => [
2675
                    'route' => '/performance-evaluation',
2676
                    'defaults' => [
15394 efrain 2677
                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationController',
946 geraldo 2678
                        'action' => 'index'
2679
                    ]
2680
                ],
2681
                'may_terminate' => true,
2682
                'child_routes' => [
2683
                    'forms' => [
2684
                        'type' => Literal::class,
2685
                        'options' => [
2686
                            'route' => '/forms',
2687
                            'defaults' => [
977 geraldo 2688
                                'controller' => '\LeadersLinked\Controller\PerformanceEvaluationFormController',
946 geraldo 2689
                                'action' => 'index'
2690
                            ]
2691
                        ],
2692
                        'may_terminate' => true,
2693
                        'child_routes' => [
2694
                            'add' => [
2695
                                'type' => Literal::class,
2696
                                'options' => [
2697
                                    'route' => '/add',
2698
                                    'defaults' => [
977 geraldo 2699
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationFormController',
946 geraldo 2700
                                        'action' => 'add'
2701
                                    ]
2702
                                ]
2703
                            ],
2704
                            'edit' => [
2705
                                'type' => Segment::class,
2706
                                'options' => [
2707
                                    'route' => '/edit/:id',
2708
                                    'constraints' => [
2709
                                        'id' => '[A-Za-z0-9\-]+\=*'
2710
                                    ],
2711
                                    'defaults' => [
986 geraldo 2712
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationFormController',
946 geraldo 2713
                                        'action' => 'edit'
2714
                                    ]
2715
                                ]
2716
                            ],
2717
                            'delete' => [
2718
                                'type' => Segment::class,
2719
                                'options' => [
2720
                                    'route' => '/delete/:id',
2721
                                    'constraints' => [
2722
                                        'id' => '[A-Za-z0-9\-]+\=*'
2723
                                    ],
2724
                                    'defaults' => [
986 geraldo 2725
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationFormController',
946 geraldo 2726
                                        'action' => 'delete'
2727
                                    ]
2728
                                ]
15079 efrain 2729
                            ],
15442 efrain 2730
                            'active' => [
2731
                                'type' => Segment::class,
15079 efrain 2732
                                'options' => [
15442 efrain 2733
                                    'route' => '/active/:id',
2734
                                    'constraints' => [
2735
                                        'id' => '[A-Za-z0-9\-]+\=*'
2736
                                    ],
15079 efrain 2737
                                    'defaults' => [
2738
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationFormController',
15442 efrain 2739
                                        'action' => 'active'
2740
                                    ]
2741
                                ]
2742
                            ],
2743
                            'inactive' => [
2744
                                'type' => Segment::class,
2745
                                'options' => [
2746
                                    'route' => '/inactive/:id',
2747
                                    'constraints' => [
2748
                                        'id' => '[A-Za-z0-9\-]+\=*'
2749
                                    ],
2750
                                    'defaults' => [
2751
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationFormController',
2752
                                        'action' => 'inactive'
2753
                                    ]
2754
                                ]
2755
                            ],
2756
                            'job-description' => [
2757
                                'type' => Segment::class,
2758
                                'options' => [
2759
                                    'route' => '/job-description/:id',
2760
                                    'constraints' => [
2761
                                        'id' => '[A-Za-z0-9\-]+\=*',
2762
                                    ],
2763
                                    'defaults' => [
2764
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationFormController',
15079 efrain 2765
                                        'action' => 'jobDescription'
2766
                                    ]
2767
                                ]
2768
                            ],
1263 geraldo 2769
                            'report' => [
2770
                                'type' => Segment::class,
2771
                                'options' => [
2772
                                    'route' => '/report/:id',
2773
                                    'constraints' => [
2774
                                        'id' => '[A-Za-z0-9\-]+\=*'
2775
                                    ],
2776
                                    'defaults' => [
2777
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationFormController',
2778
                                        'action' => 'report'
2779
                                    ]
2780
                                ]
2781
                            ],
946 geraldo 2782
                        ]
2783
                    ],
15442 efrain 2784
                    'evaluations' => [
946 geraldo 2785
                        'type' => Literal::class,
2786
                        'options' => [
15442 efrain 2787
                            'route' => '/evaluations',
946 geraldo 2788
                            'defaults' => [
15394 efrain 2789
                                'controller' => '\LeadersLinked\Controller\PerformanceEvaluationTestController',
946 geraldo 2790
                                'action' => 'index'
2791
                            ]
2792
                        ],
2793
                        'may_terminate' => true,
2794
                        'child_routes' => [
1383 efrain 2795
                            'add' => [
1320 efrain 2796
                                'type' => Literal::class,
946 geraldo 2797
                                'options' => [
1383 efrain 2798
                                    'route' => '/add',
946 geraldo 2799
                                    'defaults' => [
15394 efrain 2800
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationTestController',
1383 efrain 2801
                                        'action' => 'add'
946 geraldo 2802
                                    ]
1383 efrain 2803
                                ]
2804
                            ],
7902 eleazar 2805
                            'delete' => [
1383 efrain 2806
                                'type' => Segment::class,
2807
                                'options' => [
7902 eleazar 2808
                                    'route' => '/delete/:id',
1383 efrain 2809
                                    'constraints' => [
2810
                                        'id' => '[A-Za-z0-9\-]+\=*',
1320 efrain 2811
                                    ],
1383 efrain 2812
                                    'defaults' => [
15394 efrain 2813
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationTestController',
7902 eleazar 2814
                                        'action' => 'delete'
1320 efrain 2815
                                    ]
946 geraldo 2816
                                ]
1383 efrain 2817
                            ],
15442 efrain 2818
                            'report' =>[
7947 eleazar 2819
                                'type' => Segment::class,
1383 efrain 2820
                                'options' => [
15442 efrain 2821
                                    'route' => '/report/:id',
7907 eleazar 2822
                                    'constraints' => [
8176 eleazar 2823
                                        'id' => '[A-Za-z0-9\-]+\=*'
2824
                                    ],
2825
                                    'defaults' => [
15394 efrain 2826
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationTestController',
15442 efrain 2827
                                        'action' => 'report',
8176 eleazar 2828
                                    ],
2829
                                ],
2830
                            ],
946 geraldo 2831
                        ]
2832
                    ],
2833
                ]
1089 geraldo 2834
            ],
15442 efrain 2835
 
1089 geraldo 2836
            /*             * * END PERFORMANCE EVALUATION ** */
2837
 
15442 efrain 2838
            /* START JOBS DESCRIPTION */
2839
 
2840
            'jobs-description' => [
1 www 2841
                'type' => Literal::class,
2842
                'options' => [
15442 efrain 2843
                    'route' => '/jobs-description',
1 www 2844
                    'defaults' => [
15442 efrain 2845
                        'controller' => '\LeadersLinked\Controller\JobDescriptionController',
1 www 2846
                        'action' => 'index'
2847
                    ]
2848
                ],
2849
                'may_terminate' => true,
2850
                'child_routes' => [
15442 efrain 2851
                    'add' => [
15336 efrain 2852
                        'type' => Literal::class,
2853
                        'options' => [
15442 efrain 2854
                            'route' => '/add',
15336 efrain 2855
                            'defaults' => [
15442 efrain 2856
                                'controller' => '\LeadersLinked\Controller\JobDescriptionController',
2857
                                'action' => 'add'
15336 efrain 2858
                            ]
15442 efrain 2859
                        ]
2860
                    ],
2861
                    'edit' => [
2862
                        'type' => Segment::class,
2863
                        'options' => [
2864
                            'route' => '/edit/:id',
2865
                            'constraints' => [
2866
                                'id' => '[A-Za-z0-9\-]+\=*'
15336 efrain 2867
                            ],
15442 efrain 2868
                            'defaults' => [
2869
                                'controller' => '\LeadersLinked\Controller\JobDescriptionController',
2870
                                'action' => 'edit'
2871
                            ]
15336 efrain 2872
                        ]
2873
                    ],
15442 efrain 2874
                    'delete' => [
2875
                        'type' => Segment::class,
15336 efrain 2876
                        'options' => [
15442 efrain 2877
                            'route' => '/delete/:id',
2878
                            'constraints' => [
2879
                                'id' => '[A-Za-z0-9\-]+\=*'
2880
                            ],
15336 efrain 2881
                            'defaults' => [
15442 efrain 2882
                                'controller' => '\LeadersLinked\Controller\JobDescriptionController',
2883
                                'action' => 'delete'
15336 efrain 2884
                            ]
15442 efrain 2885
                        ]
2886
                    ],
2887
                    'report' => [
2888
                        'type' => Segment::class,
2889
                        'options' => [
2890
                            'route' => '/report/:id',
2891
                            'constraints' => [
2892
                                'id' => '[A-Za-z0-9\-]+\=*'
15336 efrain 2893
                            ],
15442 efrain 2894
                            'defaults' => [
2895
                                'controller' => '\LeadersLinked\Controller\JobDescriptionController',
2896
                                'action' => 'report'
15336 efrain 2897
                            ]
2898
                        ]
2899
                    ],
15442 efrain 2900
                    'import' => [
1 www 2901
                        'type' => Literal::class,
2902
                        'options' => [
15442 efrain 2903
                            'route' => '/import',
1 www 2904
                            'defaults' => [
15442 efrain 2905
                                'controller' => '\LeadersLinked\Controller\JobDescriptionController',
2906
                                'action' => 'import'
1 www 2907
                            ]
2908
                        ]
2909
                    ],
2910
                    'competency-types' => [
2911
                        'type' => Literal::class,
2912
                        'options' => [
2913
                            'route' => '/competency-types',
2914
                            'defaults' => [
2915
                                'controller' => '\LeadersLinked\Controller\CompetencyTypeController',
2916
                                'action' => 'index'
2917
                            ]
2918
                        ],
2919
                        'may_terminate' => true,
2920
                        'child_routes' => [
2921
                            'add' => [
2922
                                'type' => Literal::class,
2923
                                'options' => [
2924
                                    'route' => '/add',
2925
                                    'defaults' => [
2926
                                        'controller' => '\LeadersLinked\Controller\CompetencyTypeController',
2927
                                        'action' => 'add'
2928
                                    ]
2929
                                ]
2930
                            ],
2931
                            'edit' => [
2932
                                'type' => Segment::class,
2933
                                'options' => [
2934
                                    'route' => '/edit/:id',
2935
                                    'constraints' => [
2936
                                        'id' => '[A-Za-z0-9\-]+\=*'
2937
                                    ],
2938
                                    'defaults' => [
2939
                                        'controller' => '\LeadersLinked\Controller\CompetencyTypeController',
2940
                                        'action' => 'edit'
2941
                                    ]
2942
                                ]
2943
                            ],
2944
                            'delete' => [
2945
                                'type' => Segment::class,
2946
                                'options' => [
2947
                                    'route' => '/delete/:id',
2948
                                    'constraints' => [
2949
                                        'id' => '[A-Za-z0-9\-]+\=*'
2950
                                    ],
2951
                                    'defaults' => [
2952
                                        'controller' => '\LeadersLinked\Controller\CompetencyTypeController',
2953
                                        'action' => 'delete'
2954
                                    ]
2955
                                ]
28 efrain 2956
                            ],
2957
                            'import' => [
2958
                                'type' => Literal::class,
2959
                                'options' => [
2960
                                    'route' => '/import',
2961
                                    'defaults' => [
2962
                                        'controller' => '\LeadersLinked\Controller\CompetencyTypeController',
2963
                                        'action' => 'import'
2964
                                    ]
2965
                                ]
2966
                            ],
1 www 2967
                        ]
2968
                    ],
1104 geraldo 2969
                    'behaviors' => [
2970
                        'type' => Literal::class,
2971
                        'options' => [
2972
                            'route' => '/behaviors',
2973
                            'defaults' => [
2974
                                'controller' => '\LeadersLinked\Controller\BehaviorsController',
2975
                                'action' => 'index'
2976
                            ]
2977
                        ],
2978
                        'may_terminate' => true,
2979
                        'child_routes' => [
2980
                            'add' => [
2981
                                'type' => Literal::class,
2982
                                'options' => [
14989 efrain 2983
                                    'route' => '/add[/inline/:inline]',
2984
                                    'constraints' => [
2985
                                        'inline' => 'yes|no'
2986
                                    ],
1104 geraldo 2987
                                    'defaults' => [
2988
                                        'controller' => '\LeadersLinked\Controller\BehaviorsController',
2989
                                        'action' => 'add'
2990
                                    ]
2991
                                ]
1115 geraldo 2992
                            ],
2993
                            'edit' => [
2994
                                'type' => Segment::class,
2995
                                'options' => [
2996
                                    'route' => '/edit/:id',
2997
                                    'constraints' => [
2998
                                        'id' => '[A-Za-z0-9\-]+\=*'
2999
                                    ],
3000
                                    'defaults' => [
3001
                                        'controller' => '\LeadersLinked\Controller\BehaviorsController',
3002
                                        'action' => 'edit'
3003
                                    ]
3004
                                ]
3005
                            ],
14280 kerby 3006
                            'delete' => [
3007
                                'type' => Segment::class,
3008
                                'options' => [
14875 efrain 3009
                                    'route' => '/delete/:id',
14280 kerby 3010
                                    'constraints' => [
14292 kerby 3011
                                        'id' => '[A-Za-z0-9\-]+\=*'
14280 kerby 3012
                                    ],
3013
                                    'defaults' => [
3014
                                        'controller' => '\LeadersLinked\Controller\BehaviorsController',
3015
                                        'action' => 'delete'
3016
                                    ]
3017
                                ]
14875 efrain 3018
                            ],
3019
                            'import' => [
3020
                                'type' => Literal::class,
3021
                                'options' => [
3022
                                    'route' => '/import',
3023
                                    'defaults' => [
3024
                                        'controller' => '\LeadersLinked\Controller\BehaviorsController',
3025
                                        'action' => 'import'
3026
                                    ]
3027
                                ]
3028
                            ],
3029
 
1104 geraldo 3030
                        ]
3031
                    ],
1 www 3032
                    'competencies' => [
3033
                        'type' => Literal::class,
3034
                        'options' => [
3035
                            'route' => '/competencies',
3036
                            'defaults' => [
3037
                                'controller' => '\LeadersLinked\Controller\CompetencyController',
3038
                                'action' => 'index'
3039
                            ]
3040
                        ],
3041
                        'may_terminate' => true,
3042
                        'child_routes' => [
3043
                            'add' => [
3044
                                'type' => Literal::class,
3045
                                'options' => [
3046
                                    'route' => '/add',
3047
                                    'defaults' => [
3048
                                        'controller' => '\LeadersLinked\Controller\CompetencyController',
3049
                                        'action' => 'add'
3050
                                    ]
3051
                                ]
3052
                            ],
3053
                            'edit' => [
3054
                                'type' => Segment::class,
3055
                                'options' => [
3056
                                    'route' => '/edit/:id',
3057
                                    'constraints' => [
3058
                                        'id' => '[A-Za-z0-9\-]+\=*'
3059
                                    ],
3060
                                    'defaults' => [
3061
                                        'controller' => '\LeadersLinked\Controller\CompetencyController',
3062
                                        'action' => 'edit'
3063
                                    ]
3064
                                ]
3065
                            ],
3066
                            'delete' => [
3067
                                'type' => Segment::class,
3068
                                'options' => [
3069
                                    'route' => '/delete/:id',
3070
                                    'constraints' => [
3071
                                        'id' => '[A-Za-z0-9\-]+\=*'
3072
                                    ],
3073
                                    'defaults' => [
3074
                                        'controller' => '\LeadersLinked\Controller\CompetencyController',
3075
                                        'action' => 'delete'
3076
                                    ]
3077
                                ]
28 efrain 3078
                            ],
3079
                            'import' => [
3080
                                'type' => Literal::class,
3081
                                'options' => [
3082
                                    'route' => '/import',
3083
                                    'defaults' => [
3084
                                        'controller' => '\LeadersLinked\Controller\CompetencyController',
3085
                                        'action' => 'import'
3086
                                    ]
3087
                                ]
3088
                            ],
14875 efrain 3089
                            'behaviors' => [
3090
                                'type' => Segment::class,
3091
                                'options' => [
3092
                                    'route' => '/behaviors/:id',
3093
                                    'constraints' => [
3094
                                        'id' => '[A-Za-z0-9\-]+\=*'
3095
                                    ],
3096
                                    'defaults' => [
3097
                                        'controller' => '\LeadersLinked\Controller\CompetencyController',
3098
                                        'action' => 'behaviors'
3099
                                    ]
3100
                                ],
3101
                                'child_routes' => [
3102
                                    'add' => [
3103
                                        'type' => Literal::class,
3104
                                        'options' => [
3105
                                            'route' => '/add',
3106
                                            'defaults' => [
3107
                                                'controller' => '\LeadersLinked\Controller\CompetencyController',
3108
                                                'action' => 'behaviorAdd'
3109
                                            ]
3110
                                        ]
3111
                                    ],
3112
                                    'set' => [
3113
                                        'type' => Segment::class,
3114
                                        'options' => [
3115
                                            'route' => '/set/:behavior_id',
3116
                                            'constraints' => [
3117
                                                'behavior_id' => '[A-Za-z0-9\-]+\=*'
3118
                                            ],
3119
                                            'defaults' => [
3120
                                                'controller' => '\LeadersLinked\Controller\CompetencyController',
3121
                                                'action' => 'behaviorSet'
3122
                                            ]
3123
                                        ]
3124
                                    ],
3125
                                    'unset' => [
3126
                                        'type' => Segment::class,
3127
                                        'options' => [
3128
                                            'route' => '/unset/:behavior_id',
3129
                                            'constraints' => [
3130
                                                'behavior_id' => '[A-Za-z0-9\-]+\=*'
3131
                                            ],
3132
                                            'defaults' => [
3133
                                                'controller' => '\LeadersLinked\Controller\CompetencyController',
3134
                                                'action' => 'behaviorUnset'
3135
                                            ]
3136
                                        ]
3137
                                    ],
3138
                                ]
3139
                            ],
1 www 3140
                        ]
3141
                    ],
15457 efrain 3142
                    'positions' => [
3143
                        'type' => Literal::class,
3144
                        'options' => [
3145
                            'route' => '/positions',
3146
                            'defaults' => [
3147
                                'controller' => '\LeadersLinked\Controller\PositionController',
3148
                                'action' => 'index'
3149
                            ]
3150
                        ],
3151
                        'may_terminate' => true,
3152
                        'child_routes' => [
3153
                            'add' => [
3154
                                'type' => Literal::class,
3155
                                'options' => [
3156
                                    'route' => '/add',
3157
                                    'defaults' => [
3158
                                        'controller' => '\LeadersLinked\Controller\PositionController',
3159
                                        'action' => 'add'
3160
                                    ]
3161
                                ]
3162
                            ],
3163
                            'edit' => [
3164
                                'type' => Segment::class,
3165
                                'options' => [
3166
                                    'route' => '/edit/:id',
3167
                                    'constraints' => [
3168
                                        'id' => '[A-Za-z0-9\-]+\=*'
3169
                                    ],
3170
                                    'defaults' => [
3171
                                        'controller' => '\LeadersLinked\Controller\PositionController',
3172
                                        'action' => 'edit'
3173
                                    ]
3174
                                ]
3175
                            ],
3176
                            'delete' => [
3177
                                'type' => Segment::class,
3178
                                'options' => [
3179
                                    'route' => '/delete/:id',
3180
                                    'constraints' => [
3181
                                        'id' => '[A-Za-z0-9\-]+\=*'
3182
                                    ],
3183
                                    'defaults' => [
3184
                                        'controller' => '\LeadersLinked\Controller\PositionController',
3185
                                        'action' => 'delete'
3186
                                    ]
3187
                                ]
3188
                            ],
3189
                            'subordinates' => [
3190
                                'type' => Segment::class,
3191
                                'options' => [
3192
                                    'route' => '/subordinates/:job_description_id',
3193
                                    'constraints' => [
3194
                                        'job_description_id' => '[A-Za-z0-9\-]+\=*'
3195
                                    ],
3196
                                    'defaults' => [
3197
                                        'controller' => '\LeadersLinked\Controller\PositionController',
3198
                                        'action' => 'subordinates'
3199
                                    ]
3200
                                ]
3201
                            ],
3202
                        ]
3203
                    ],
15442 efrain 3204
                ]
3205
            ],
3206
 
3207
            /* END JOBS DESCRIPTION */
3208
 
3209
 
3210
            /*             * * START SETTINGS ** */
3211
            'settings' => [
3212
                'type' => Literal::class,
3213
                'options' => [
3214
                    'route' => '/settings',
3215
                    'defaults' => [
3216
                        'controller' => '\LeadersLinked\Controller\DashboardController',
3217
                        'action' => 'index'
3218
                    ]
3219
                ],
3220
                'may_terminate' => true,
3221
                'child_routes' => [
3222
                    'my-private-network' => [
3223
                        'type' => Literal::class,
3224
                        'options' => [
3225
                            'route' => '/my-private-network',
3226
                            'defaults' => [
3227
                                'controller' => '\LeadersLinked\Controller\MyPrivateNetworkController',
3228
                                'action' => 'index'
3229
                            ]
3230
                        ],
3231
                        'may_terminate' => true,
3232
                        'child_routes' => [
3233
                            'intro' => [
3234
                                'type' => Literal::class,
3235
                                'options' => [
3236
                                    'route' => '/intro',
3237
                                    'defaults' => [
3238
                                        'controller' =>  '\LeadersLinked\Controller\MyPrivateNetworkController',
3239
                                        'action' => 'intro'
3240
                                    ]
3241
                                ]
3242
                            ],
3243
                            'calendar' => [
3244
                                'type' => Literal::class,
3245
                                'options' => [
3246
                                    'route' => '/calendar',
3247
                                    'defaults' => [
3248
                                        'controller' =>  '\LeadersLinked\Controller\MyPrivateNetworkController',
3249
                                        'action' => 'calendar'
3250
                                    ]
3251
                                ]
3252
                            ],
3253
                            'styles-and-colors' => [
3254
                                'type' => Literal::class,
3255
                                'options' => [
3256
                                    'route' => '/styles-and-colors',
3257
                                    'defaults' => [
3258
                                        'controller' =>  '\LeadersLinked\Controller\MyPrivateNetworkController',
3259
                                        'action' => 'stylesAndColors'
3260
                                    ]
3261
                                ]
3262
                            ],
3263
                            'navbar' => [
3264
                                'type' => Literal::class,
3265
                                'options' => [
3266
                                    'route' => '/navbar',
3267
                                    'defaults' => [
3268
                                        'controller' =>  '\LeadersLinked\Controller\MyPrivateNetworkController',
3269
                                        'action' => 'navbar'
3270
                                    ]
3271
                                ]
3272
                            ],
3273
                            'favicon' => [
3274
                                'type' => Literal::class,
3275
                                'options' => [
3276
                                    'route' => '/favicon',
3277
                                    'defaults' => [
3278
                                        'controller' =>  '\LeadersLinked\Controller\MyPrivateNetworkController',
3279
                                        'action' => 'favicon'
3280
                                    ]
3281
                                ]
3282
                            ],
3283
                            'logo' => [
3284
                                'type' => Literal::class,
3285
                                'options' => [
3286
                                    'route' => '/logo',
3287
                                    'defaults' => [
3288
                                        'controller' =>  '\LeadersLinked\Controller\MyPrivateNetworkController',
3289
                                        'action' => 'logo'
3290
                                    ]
3291
                                ]
3292
                            ],
3293
 
3294
 
3295
 
3296
                        ]
3297
                    ],
14875 efrain 3298
 
15442 efrain 3299
                    'private-networks' => [
1 www 3300
                        'type' => Literal::class,
3301
                        'options' => [
15442 efrain 3302
                            'route' => '/private-networks',
1 www 3303
                            'defaults' => [
15442 efrain 3304
                                'controller' => '\LeadersLinked\Controller\PrivateNetworksController',
1 www 3305
                                'action' => 'index'
3306
                            ]
3307
                        ],
3308
                        'may_terminate' => true,
3309
                        'child_routes' => [
3310
                            'add' => [
3311
                                'type' => Literal::class,
3312
                                'options' => [
3313
                                    'route' => '/add',
3314
                                    'defaults' => [
15442 efrain 3315
                                        'controller' => '\LeadersLinked\Controller\PrivateNetworksController',
1 www 3316
                                        'action' => 'add'
3317
                                    ]
3318
                                ]
3319
                            ],
3320
                            'edit' => [
3321
                                'type' => Segment::class,
3322
                                'options' => [
3323
                                    'route' => '/edit/:id',
3324
                                    'constraints' => [
3325
                                        'id' => '[A-Za-z0-9\-]+\=*'
3326
                                    ],
3327
                                    'defaults' => [
15442 efrain 3328
                                        'controller' => '\LeadersLinked\Controller\PrivateNetworksController',
1 www 3329
                                        'action' => 'edit'
3330
                                    ]
3331
                                ]
3332
                            ],
3333
                            'delete' => [
3334
                                'type' => Segment::class,
3335
                                'options' => [
3336
                                    'route' => '/delete/:id',
3337
                                    'constraints' => [
3338
                                        'id' => '[A-Za-z0-9\-]+\=*'
3339
                                    ],
3340
                                    'defaults' => [
15442 efrain 3341
                                        'controller' => '\LeadersLinked\Controller\PrivateNetworksController',
1 www 3342
                                        'action' => 'delete'
3343
                                    ]
3344
                                ]
3345
                            ]
3346
                        ]
3347
                    ],
15442 efrain 3348
                    'company-sizes' => [
1 www 3349
                        'type' => Literal::class,
3350
                        'options' => [
15442 efrain 3351
                            'route' => '/company-sizes',
1 www 3352
                            'defaults' => [
15442 efrain 3353
                                'controller' => '\LeadersLinked\Controller\CompanySizeController',
1 www 3354
                                'action' => 'index'
3355
                            ]
3356
                        ],
3357
                        'may_terminate' => true,
3358
                        'child_routes' => [
3359
                            'add' => [
3360
                                'type' => Literal::class,
3361
                                'options' => [
3362
                                    'route' => '/add',
3363
                                    'defaults' => [
15442 efrain 3364
                                        'controller' => '\LeadersLinked\Controller\CompanySizeController',
1 www 3365
                                        'action' => 'add'
3366
                                    ]
3367
                                ]
3368
                            ],
3369
                            'edit' => [
3370
                                'type' => Segment::class,
3371
                                'options' => [
3372
                                    'route' => '/edit/:id',
3373
                                    'constraints' => [
3374
                                        'id' => '[A-Za-z0-9\-]+\=*'
3375
                                    ],
3376
                                    'defaults' => [
15442 efrain 3377
                                        'controller' => '\LeadersLinked\Controller\CompanySizeController',
1 www 3378
                                        'action' => 'edit'
3379
                                    ]
3380
                                ]
3381
                            ],
3382
                            'delete' => [
3383
                                'type' => Segment::class,
3384
                                'options' => [
3385
                                    'route' => '/delete/:id',
3386
                                    'constraints' => [
3387
                                        'id' => '[A-Za-z0-9\-]+\=*'
3388
                                    ],
3389
                                    'defaults' => [
15442 efrain 3390
                                        'controller' => '\LeadersLinked\Controller\CompanySizeController',
1 www 3391
                                        'action' => 'delete'
3392
                                    ]
3393
                                ]
3394
                            ]
3395
                        ]
3396
                    ],
15442 efrain 3397
 
3398
 
15460 efrain 3399
                    'countries' => [
3400
                        'type' => Literal::class,
3401
                        'options' => [
3402
                            'route' => '/countries',
3403
                            'defaults' => [
3404
                                'controller' => '\LeadersLinked\Controller\CountriesController',
3405
                                'action' => 'index'
3406
                            ]
3407
                        ],
3408
                        'may_terminate' => true,
3409
                        'child_routes' => [
3410
                            'add' => [
3411
                                'type' => Literal::class,
3412
                                'options' => [
3413
                                    'route' => '/add',
3414
                                    'defaults' => [
3415
                                        'controller' => '\LeadersLinked\Controller\CountriesController',
3416
                                        'action' => 'add'
3417
                                    ]
3418
                                ]
3419
                            ],
3420
                            'edit' => [
3421
                                'type' => Segment::class,
3422
                                'options' => [
3423
                                    'route' => '/edit/:id',
3424
                                    'constraints' => [
3425
                                        'id' => '[A-Za-z0-9\-]+\=*'
3426
                                    ],
3427
                                    'defaults' => [
3428
                                        'controller' => '\LeadersLinked\Controller\CountriesController',
3429
                                        'action' => 'edit'
3430
                                    ]
3431
                                ]
3432
                            ],
3433
                            'delete' => [
3434
                                'type' => Segment::class,
3435
                                'options' => [
3436
                                    'route' => '/delete/:id',
3437
                                    'constraints' => [
3438
                                        'id' => '[A-Za-z0-9\-]+\=*'
3439
                                    ],
3440
                                    'defaults' => [
3441
                                        'controller' => '\LeadersLinked\Controller\CountriesController',
3442
                                        'action' => 'delete'
3443
                                    ]
3444
                                ]
3445
                            ]
3446
                        ]
3447
                    ],
3448
 
3449
 
15442 efrain 3450
                    'degrees' => [
1 www 3451
                        'type' => Literal::class,
3452
                        'options' => [
15442 efrain 3453
                            'route' => '/degrees',
1 www 3454
                            'defaults' => [
15442 efrain 3455
                                'controller' => '\LeadersLinked\Controller\DegreeController',
1 www 3456
                                'action' => 'index'
3457
                            ]
3458
                        ],
3459
                        'may_terminate' => true,
3460
                        'child_routes' => [
3461
                            'add' => [
3462
                                'type' => Literal::class,
3463
                                'options' => [
3464
                                    'route' => '/add',
3465
                                    'defaults' => [
15442 efrain 3466
                                        'controller' => '\LeadersLinked\Controller\DegreeController',
1 www 3467
                                        'action' => 'add'
3468
                                    ]
3469
                                ]
3470
                            ],
3471
                            'edit' => [
3472
                                'type' => Segment::class,
3473
                                'options' => [
3474
                                    'route' => '/edit/:id',
3475
                                    'constraints' => [
3476
                                        'id' => '[A-Za-z0-9\-]+\=*'
3477
                                    ],
3478
                                    'defaults' => [
15442 efrain 3479
                                        'controller' => '\LeadersLinked\Controller\DegreeController',
1 www 3480
                                        'action' => 'edit'
3481
                                    ]
3482
                                ]
3483
                            ],
3484
                            'delete' => [
3485
                                'type' => Segment::class,
3486
                                'options' => [
3487
                                    'route' => '/delete/:id',
3488
                                    'constraints' => [
3489
                                        'id' => '[A-Za-z0-9\-]+\=*'
3490
                                    ],
3491
                                    'defaults' => [
15442 efrain 3492
                                        'controller' => '\LeadersLinked\Controller\DegreeController',
1 www 3493
                                        'action' => 'delete'
3494
                                    ]
3495
                                ]
3496
                            ]
3497
                        ]
3498
                    ],
3499
                    'group-types' => [
3500
                        'type' => Literal::class,
3501
                        'options' => [
15442 efrain 3502
                            'route' => '/competency-types',
1 www 3503
                            'defaults' => [
3504
                                'controller' => '\LeadersLinked\Controller\GroupTypeController',
3505
                                'action' => 'index'
3506
                            ]
3507
                        ],
3508
                        'may_terminate' => true,
3509
                        'child_routes' => [
3510
                            'add' => [
3511
                                'type' => Literal::class,
3512
                                'options' => [
3513
                                    'route' => '/add',
3514
                                    'defaults' => [
3515
                                        'controller' => '\LeadersLinked\Controller\GroupTypeController',
3516
                                        'action' => 'add'
3517
                                    ]
3518
                                ]
3519
                            ],
3520
                            'edit' => [
3521
                                'type' => Segment::class,
3522
                                'options' => [
3523
                                    'route' => '/edit/:id',
3524
                                    'constraints' => [
3525
                                        'id' => '[A-Za-z0-9\-]+\=*'
3526
                                    ],
3527
                                    'defaults' => [
3528
                                        'controller' => '\LeadersLinked\Controller\GroupTypeController',
3529
                                        'action' => 'edit'
3530
                                    ]
3531
                                ]
3532
                            ],
3533
                            'delete' => [
3534
                                'type' => Segment::class,
3535
                                'options' => [
3536
                                    'route' => '/delete/:id',
3537
                                    'constraints' => [
3538
                                        'id' => '[A-Za-z0-9\-]+\=*'
3539
                                    ],
3540
                                    'defaults' => [
3541
                                        'controller' => '\LeadersLinked\Controller\GroupTypeController',
3542
                                        'action' => 'delete'
3543
                                    ]
3544
                                ]
3545
                            ]
3546
                        ]
3547
                    ],
15442 efrain 3548
                    'industries' => [
1 www 3549
                        'type' => Literal::class,
3550
                        'options' => [
15442 efrain 3551
                            'route' => '/industries',
1 www 3552
                            'defaults' => [
15442 efrain 3553
                                'controller' => '\LeadersLinked\Controller\IndustryController',
1 www 3554
                                'action' => 'index'
3555
                            ]
3556
                        ],
3557
                        'may_terminate' => true,
3558
                        'child_routes' => [
3559
                            'add' => [
3560
                                'type' => Literal::class,
3561
                                'options' => [
3562
                                    'route' => '/add',
3563
                                    'defaults' => [
15442 efrain 3564
                                        'controller' => '\LeadersLinked\Controller\IndustryController',
1 www 3565
                                        'action' => 'add'
3566
                                    ]
3567
                                ]
3568
                            ],
3569
                            'edit' => [
3570
                                'type' => Segment::class,
3571
                                'options' => [
3572
                                    'route' => '/edit/:id',
3573
                                    'constraints' => [
3574
                                        'id' => '[A-Za-z0-9\-]+\=*'
3575
                                    ],
3576
                                    'defaults' => [
15442 efrain 3577
                                        'controller' => '\LeadersLinked\Controller\IndustryController',
1 www 3578
                                        'action' => 'edit'
3579
                                    ]
3580
                                ]
3581
                            ],
3582
                            'delete' => [
3583
                                'type' => Segment::class,
3584
                                'options' => [
3585
                                    'route' => '/delete/:id',
3586
                                    'constraints' => [
3587
                                        'id' => '[A-Za-z0-9\-]+\=*'
3588
                                    ],
3589
                                    'defaults' => [
15442 efrain 3590
                                        'controller' => '\LeadersLinked\Controller\IndustryController',
1 www 3591
                                        'action' => 'delete'
3592
                                    ]
3593
                                ]
3594
                            ]
3595
                        ]
3596
                    ],
15442 efrain 3597
                    'group-types' => [
28 efrain 3598
                        'type' => Literal::class,
3599
                        'options' => [
15442 efrain 3600
                            'route' => '/group-types',
28 efrain 3601
                            'defaults' => [
15442 efrain 3602
                                'controller' => '\LeadersLinked\Controller\GroupTypeController',
28 efrain 3603
                                'action' => 'index'
3604
                            ]
3605
                        ],
3606
                        'may_terminate' => true,
3607
                        'child_routes' => [
3608
                            'add' => [
3609
                                'type' => Literal::class,
3610
                                'options' => [
3611
                                    'route' => '/add',
3612
                                    'defaults' => [
15442 efrain 3613
                                        'controller' => '\LeadersLinked\Controller\GroupTypeController',
28 efrain 3614
                                        'action' => 'add'
3615
                                    ]
3616
                                ]
3617
                            ],
3618
                            'edit' => [
3619
                                'type' => Segment::class,
3620
                                'options' => [
3621
                                    'route' => '/edit/:id',
3622
                                    'constraints' => [
3623
                                        'id' => '[A-Za-z0-9\-]+\=*'
3624
                                    ],
3625
                                    'defaults' => [
15442 efrain 3626
                                        'controller' => '\LeadersLinked\Controller\GroupTypeController',
28 efrain 3627
                                        'action' => 'edit'
3628
                                    ]
3629
                                ]
3630
                            ],
3631
                            'delete' => [
3632
                                'type' => Segment::class,
3633
                                'options' => [
3634
                                    'route' => '/delete/:id',
3635
                                    'constraints' => [
3636
                                        'id' => '[A-Za-z0-9\-]+\=*'
3637
                                    ],
3638
                                    'defaults' => [
15442 efrain 3639
                                        'controller' => '\LeadersLinked\Controller\GroupTypeController',
28 efrain 3640
                                        'action' => 'delete'
3641
                                    ]
3642
                                ]
15442 efrain 3643
                            ]
3644
                        ]
3645
                    ],
3646
                    'job-categories' => [
3647
                        'type' => Literal::class,
3648
                        'options' => [
3649
                            'route' => '/job-categories',
3650
                            'defaults' => [
3651
                                'controller' => '\LeadersLinked\Controller\JobCategoryController',
3652
                                'action' => 'index'
3653
                            ]
3654
                        ],
3655
                        'may_terminate' => true,
3656
                        'child_routes' => [
3657
                            'add' => [
3658
                                'type' => Literal::class,
3659
                                'options' => [
3660
                                    'route' => '/add',
3661
                                    'defaults' => [
3662
                                        'controller' => '\LeadersLinked\Controller\JobCategoryController',
3663
                                        'action' => 'add'
3664
                                    ]
3665
                                ]
559 geraldo 3666
                            ],
15442 efrain 3667
                            'edit' => [
559 geraldo 3668
                                'type' => Segment::class,
3669
                                'options' => [
15442 efrain 3670
                                    'route' => '/edit/:id',
559 geraldo 3671
                                    'constraints' => [
3672
                                        'id' => '[A-Za-z0-9\-]+\=*'
3673
                                    ],
3674
                                    'defaults' => [
15442 efrain 3675
                                        'controller' => '\LeadersLinked\Controller\JobCategoryController',
3676
                                        'action' => 'edit'
559 geraldo 3677
                                    ]
3678
                                ]
3679
                            ],
15442 efrain 3680
                            'delete' => [
3681
                                'type' => Segment::class,
846 geraldo 3682
                                'options' => [
15442 efrain 3683
                                    'route' => '/delete/:id',
3684
                                    'constraints' => [
3685
                                        'id' => '[A-Za-z0-9\-]+\=*'
3686
                                    ],
846 geraldo 3687
                                    'defaults' => [
15442 efrain 3688
                                        'controller' => '\LeadersLinked\Controller\JobCategoryController',
3689
                                        'action' => 'delete'
846 geraldo 3690
                                    ]
3691
                                ]
15442 efrain 3692
                            ]
28 efrain 3693
                        ]
3694
                    ],
15442 efrain 3695
 
1 www 3696
                    'email-templates' => [
3697
                        'type' => Literal::class,
3698
                        'options' => [
3699
                            'route' => '/email-templates',
3700
                            'defaults' => [
3701
                                'controller' => '\LeadersLinked\Controller\EmailTemplateController',
3702
                                'action' => 'index'
3703
                            ]
3704
                        ],
3705
                        'may_terminate' => true,
3706
                        'child_routes' => [
3707
                            'edit' => [
3708
                                'type' => Segment::class,
3709
                                'options' => [
3710
                                    'route' => '/edit/:id',
3711
                                    'constraints' => [
3712
                                        'id' => '[A-Za-z0-9\-]+\=*'
3713
                                    ],
3714
                                    'defaults' => [
3715
                                        'controller' => '\LeadersLinked\Controller\EmailTemplateController',
3716
                                        'action' => 'edit'
3717
                                    ]
3718
                                ]
3719
                            ],
3720
                        ]
3721
                    ],
15457 efrain 3722
 
1 www 3723
                    'push-templates' => [
3724
                        'type' => Literal::class,
3725
                        'options' => [
3726
                            'route' => '/push-templates',
3727
                            'defaults' => [
3728
                                'controller' => '\LeadersLinked\Controller\PushTemplateController',
3729
                                'action' => 'index'
3730
                            ]
3731
                        ],
3732
                        'may_terminate' => true,
3733
                        'child_routes' => [
3734
                            'edit' => [
3735
                                'type' => Segment::class,
3736
                                'options' => [
3737
                                    'route' => '/edit/:id',
3738
                                    'constraints' => [
3739
                                        'id' => '[A-Za-z0-9\-]+\=*'
3740
                                    ],
3741
                                    'defaults' => [
3742
                                        'controller' => '\LeadersLinked\Controller\PushTemplateController',
3743
                                        'action' => 'edit'
3744
                                    ]
3745
                                ]
3746
                            ],
15355 efrain 3747
                            'import' => [
3748
                                'type' => Literal::class,
3749
                                'options' => [
3750
                                    'route' => '/import',
3751
                                    'defaults' => [
3752
                                        'controller' => '\LeadersLinked\Controller\PushTemplateController',
3753
                                        'action' => 'import'
3754
                                    ]
3755
                                ]
3756
                            ],
1 www 3757
                        ]
3758
                    ],
3759
                    'skills' => [
3760
                        'type' => Literal::class,
3761
                        'options' => [
3762
                            'route' => '/skills',
3763
                            'defaults' => [
3764
                                'controller' => '\LeadersLinked\Controller\SkillController',
3765
                                'action' => 'index'
3766
                            ]
3767
                        ],
3768
                        'may_terminate' => true,
3769
                        'child_routes' => [
3770
                            'add' => [
3771
                                'type' => Literal::class,
3772
                                'options' => [
3773
                                    'route' => '/add',
3774
                                    'defaults' => [
3775
                                        'controller' => '\LeadersLinked\Controller\SkillController',
3776
                                        'action' => 'add'
3777
                                    ]
3778
                                ]
3779
                            ],
3780
                            'edit' => [
3781
                                'type' => Segment::class,
3782
                                'options' => [
3783
                                    'route' => '/edit/:id',
3784
                                    'constraints' => [
3785
                                        'id' => '[A-Za-z0-9\-]+\=*'
3786
                                    ],
3787
                                    'defaults' => [
3788
                                        'controller' => '\LeadersLinked\Controller\SkillController',
3789
                                        'action' => 'edit'
3790
                                    ]
3791
                                ]
3792
                            ],
3793
                            'delete' => [
3794
                                'type' => Segment::class,
3795
                                'options' => [
3796
                                    'route' => '/delete/:id',
3797
                                    'constraints' => [
3798
                                        'id' => '[A-Za-z0-9\-]+\=*'
3799
                                    ],
3800
                                    'defaults' => [
3801
                                        'controller' => '\LeadersLinked\Controller\SkillController',
3802
                                        'action' => 'delete'
3803
                                    ]
3804
                                ]
3805
                            ]
3806
                        ]
3807
                    ],
15392 efrain 3808
                    'aptitudes' => [
3809
                        'type' => Literal::class,
3810
                        'options' => [
3811
                            'route' => '/aptitudes',
3812
                            'defaults' => [
3813
                                'controller' => '\LeadersLinked\Controller\AptitudeController',
3814
                                'action' => 'index'
3815
                            ]
3816
                        ],
3817
                        'may_terminate' => true,
3818
                        'child_routes' => [
3819
                            'add' => [
3820
                                'type' => Literal::class,
3821
                                'options' => [
3822
                                    'route' => '/add',
3823
                                    'defaults' => [
3824
                                        'controller' => '\LeadersLinked\Controller\AptitudeController',
3825
                                        'action' => 'add'
3826
                                    ]
3827
                                ]
3828
                            ],
3829
                            'edit' => [
3830
                                'type' => Segment::class,
3831
                                'options' => [
3832
                                    'route' => '/edit/:id',
3833
                                    'constraints' => [
3834
                                        'id' => '[A-Za-z0-9\-]+\=*'
3835
                                    ],
3836
                                    'defaults' => [
3837
                                        'controller' => '\LeadersLinked\Controller\AptitudeController',
3838
                                        'action' => 'edit'
3839
                                    ]
3840
                                ]
3841
                            ],
3842
                            'delete' => [
3843
                                'type' => Segment::class,
3844
                                'options' => [
3845
                                    'route' => '/delete/:id',
3846
                                    'constraints' => [
3847
                                        'id' => '[A-Za-z0-9\-]+\=*'
3848
                                    ],
3849
                                    'defaults' => [
3850
                                        'controller' => '\LeadersLinked\Controller\AptitudeController',
3851
                                        'action' => 'delete'
3852
                                    ]
3853
                                ]
3854
                            ]
3855
                        ]
3856
                    ],
3857
                    'hobbies-and-interests' => [
3858
                        'type' => Literal::class,
3859
                        'options' => [
3860
                            'route' => '/hobbies-and-interests',
3861
                            'defaults' => [
3862
                                'controller' => '\LeadersLinked\Controller\HobbyAndInterestController',
3863
                                'action' => 'index'
3864
                            ]
3865
                        ],
3866
                        'may_terminate' => true,
3867
                        'child_routes' => [
3868
                            'add' => [
3869
                                'type' => Literal::class,
3870
                                'options' => [
3871
                                    'route' => '/add',
3872
                                    'defaults' => [
3873
                                        'controller' => '\LeadersLinked\Controller\HobbyAndInterestController',
3874
                                        'action' => 'add'
3875
                                    ]
3876
                                ]
3877
                            ],
3878
                            'edit' => [
3879
                                'type' => Segment::class,
3880
                                'options' => [
3881
                                    'route' => '/edit/:id',
3882
                                    'constraints' => [
3883
                                        'id' => '[A-Za-z0-9\-]+\=*'
3884
                                    ],
3885
                                    'defaults' => [
3886
                                        'controller' => '\LeadersLinked\Controller\HobbyAndInterestController',
3887
                                        'action' => 'edit'
3888
                                    ]
3889
                                ]
3890
                            ],
3891
                            'delete' => [
3892
                                'type' => Segment::class,
3893
                                'options' => [
3894
                                    'route' => '/delete/:id',
3895
                                    'constraints' => [
3896
                                        'id' => '[A-Za-z0-9\-]+\=*'
3897
                                    ],
3898
                                    'defaults' => [
3899
                                        'controller' => '\LeadersLinked\Controller\HobbyAndInterestController',
3900
                                        'action' => 'delete'
3901
                                    ]
3902
                                ]
3903
                            ]
3904
                        ]
3905
                    ],
1089 geraldo 3906
                ]
1 www 3907
            ],
1089 geraldo 3908
        /*         * * FIN SETTINGS ** */
1333 efrain 3909
 
3910
            'own-professional-network' => [
3911
                'type' => Literal::class,
3912
                'options' => [
3913
                    'route' => '/own-professional-network',
3914
                    'defaults' => [
3915
                        'controller' => '\LeadersLinked\Controller\UnknownController',
3916
                        'action' => 'index'
3917
                    ]
3918
                ],
3919
                'may_terminate' => true,
3920
                'child_routes' => [
3921
                ]
3922
            ],
3923
 
3924
            'organizational-design' => [
3925
                'type' => Literal::class,
3926
                'options' => [
3927
                    'route' => '/organizational-design',
3928
                    'defaults' => [
3929
                        'controller' => '\LeadersLinked\Controller\UnknownController',
3930
                        'action' => 'index'
3931
                    ]
3932
                ],
3933
                'may_terminate' => true,
3934
                'child_routes' => [
3935
                ]
3936
            ],
3937
 
3938
            'planning-objectives-and-goals' => [
3939
                'type' => Literal::class,
3940
                'options' => [
3941
                    'route' => '/planning-objectives-and-goals',
3942
                    'defaults' => [
2235 nelberth 3943
                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsController',
1951 nelberth 3944
                        'action' => 'index'
1333 efrain 3945
                    ]
3946
                ],
3947
                'may_terminate' => true,
3948
                'child_routes' => [
2238 nelberth 3949
                    'objectives' => [
2250 nelberth 3950
                        'type' => Literal::class,
1914 nelberth 3951
                        'options' => [
2248 nelberth 3952
                            'route' => '/objectives',
1914 nelberth 3953
                            'defaults' => [
2228 nelberth 3954
                                'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController',
2238 nelberth 3955
                                'action' => 'index'
1914 nelberth 3956
                            ]
2251 nelberth 3957
                        ],
3958
 
3959
                        'may_terminate' => true,
3960
                        'child_routes' => [
2324 nelberth 3961
 
2251 nelberth 3962
                            'add' => [
3963
                                'type' => Literal::class,
3964
                                'options' => [
3965
                                    'route' => '/add',
3966
                                    'defaults' => [
3967
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController',
3968
                                        'action' => 'add'
3969
                                    ]
3970
                                ]
3971
                            ],
3972
                            'edit' => [
3973
                                'type' => Segment::class,
3974
                                'options' => [
3975
                                    'route' => '/edit/:id',
3976
                                    'constraints' => [
3977
                                        'id' => '[A-Za-z0-9\-]+\=*'
3978
                                    ],
3979
                                    'defaults' => [
3980
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController',
3981
                                        'action' => 'edit'
3982
                                    ]
3983
                                ]
3984
                            ],
3985
                            'delete' => [
3986
                                'type' => Segment::class,
3987
                                'options' => [
3988
                                    'route' => '/delete/:id',
3989
                                    'constraints' => [
3990
                                        'id' => '[A-Za-z0-9\-]+\=*'
3991
                                    ],
3992
                                    'defaults' => [
3993
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController',
3994
                                        'action' => 'delete'
3995
                                    ]
3996
                                ]
2324 nelberth 3997
                            ],
3462 nelberth 3998
                            'report' => [
3999
                                'type' => Segment::class,
4000
                                'options' => [
4001
                                    'route' => '/report/:id',
4002
                                    'constraints' => [
4003
                                        'id' => '[A-Za-z0-9\-]+\=*'
4004
                                    ],
4005
                                    'defaults' => [
4006
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController',
4007
                                        'action' => 'report'
4008
                                    ]
4009
                                ]
3986 nelberth 4010
                            ],
4011
                            'reportall' => [
4012
                                'type' => Literal::class,
4013
                                'options' => [
4014
                                    'route' => '/reportall',
4015
                                    'defaults' => [
4016
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController',
4017
                                        'action' => 'reportall'
4018
                                    ]
4019
                                ]
3462 nelberth 4020
                            ],
4041 nelberth 4021
 
4022
                            'matriz' => [
4023
                                'type' => Literal::class,
4024
                                'options' => [
4025
                                    'route' => '/matriz',
4026
                                    'defaults' => [
4027
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController',
4028
                                        'action' => 'matriz'
4029
                                    ]
4030
                                ]
4031
                            ],
2324 nelberth 4032
                            'goals' => [
2336 nelberth 4033
                                'type' => Segment::class,
2324 nelberth 4034
                                'options' => [
11092 nelberth 4035
                                    'route' => '/:objective_id/goals',
2324 nelberth 4036
                                    'constraints' => [
11092 nelberth 4037
                                        'objective_id' => '[A-Za-z0-9\-]+\=*'
2324 nelberth 4038
                                    ],
4039
                                    'defaults' => [
4040
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsGoalsController',
4041
                                        'action' => 'index'
4042
                                    ]
2369 nelberth 4043
                                ],
2370 nelberth 4044
 
4045
                                'may_terminate' => true,
4046
                                'child_routes' => [
4047
                                    'add' => [
4048
                                        'type' => Literal::class,
4049
                                        'options' => [
4050
                                            'route' => '/add',
4051
                                            'defaults' => [
4052
                                                'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsGoalsController',
4053
                                                'action' => 'add'
4054
                                            ]
2369 nelberth 4055
                                        ]
2370 nelberth 4056
                                    ],
4057
                                    'edit' => [
4058
                                        'type' => Segment::class,
4059
                                        'options' => [
4060
                                            'route' => '/edit/:id',
4061
                                            'constraints' => [
4062
                                                'id' => '[A-Za-z0-9\-]+\=*'
4063
                                            ],
4064
                                            'defaults' => [
4065
                                                'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsGoalsController',
4066
                                                'action' => 'edit'
4067
                                            ]
2369 nelberth 4068
                                        ]
2370 nelberth 4069
                                    ],
4070
                                    'delete' => [
4071
                                        'type' => Segment::class,
4072
                                        'options' => [
4073
                                            'route' => '/delete/:id',
4074
                                            'constraints' => [
4075
                                                'id' => '[A-Za-z0-9\-]+\=*'
4076
                                            ],
4077
                                            'defaults' => [
4078
                                                'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsGoalsController',
4079
                                                'action' => 'delete'
4080
                                            ]
4081
                                        ]
4082
                                    ],
2517 nelberth 4083
                                    'task' => [
4084
                                        'type' => Segment::class,
4085
                                        'options' => [
11092 nelberth 4086
                                            'route' => '/:goal_id/task',
2517 nelberth 4087
                                            'constraints' => [
11092 nelberth 4088
                                                'goal_id' => '[A-Za-z0-9\-]+\=*'
2517 nelberth 4089
                                            ],
4090
                                            'defaults' => [
4091
                                                'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController',
4092
                                                'action' => 'index'
4093
                                            ]
4094
                                        ],
4095
 
4096
                                        'may_terminate' => true,
4097
                                        'child_routes' => [
4098
                                            'add' => [
4099
                                                'type' => Literal::class,
4100
                                                'options' => [
4101
                                                    'route' => '/add',
4102
                                                    'defaults' => [
4103
                                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController',
4104
                                                        'action' => 'add'
4105
                                                    ]
4106
                                                ]
4107
                                            ],
4108
                                            'edit' => [
4109
                                                'type' => Segment::class,
4110
                                                'options' => [
4111
                                                    'route' => '/edit/:id',
4112
                                                    'constraints' => [
4113
                                                        'id' => '[A-Za-z0-9\-]+\=*'
4114
                                                    ],
4115
                                                    'defaults' => [
4116
                                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController',
4117
                                                        'action' => 'edit'
4118
                                                    ]
4119
                                                ]
4120
                                            ],
4121
                                            'delete' => [
4122
                                                'type' => Segment::class,
4123
                                                'options' => [
4124
                                                    'route' => '/delete/:id',
4125
                                                    'constraints' => [
4126
                                                        'id' => '[A-Za-z0-9\-]+\=*'
4127
                                                    ],
4128
                                                    'defaults' => [
4129
                                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController',
4130
                                                        'action' => 'delete'
4131
                                                    ]
4132
                                                ]
4133
                                            ],
2822 nelberth 4134
                                            'view' => [
4135
                                                'type' => Segment::class,
4136
                                                'options' => [
4137
                                                    'route' => '/view/:id',
4138
                                                    'constraints' => [
4139
                                                        'id' => '[A-Za-z0-9\-]+\=*'
4140
                                                    ],
4141
                                                    'defaults' => [
4142
                                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController',
4143
                                                        'action' => 'view'
4144
                                                    ]
4145
                                                ]
4146
                                            ],
2517 nelberth 4147
                                    ]
4148
                                ],
2369 nelberth 4149
                            ]
2370 nelberth 4150
                        ],
1914 nelberth 4151
                        ]
2246 nelberth 4152
                    ]
2238 nelberth 4153
 
1333 efrain 4154
                ]
4155
            ],
4156
 
15401 efrain 4157
 
4158
            'discovery-contacts' => [
4159
                'type' => Literal::class,
4160
                'options' => [
4161
                    'route' => '/discovery-contacts',
4162
                    'defaults' => [
4163
                        'controller' => '\LeadersLinked\Controller\DiscoveryContactController',
4164
                        'action' => 'index'
4165
                    ]
4166
                ],
4167
                'may_terminate' => true,
4168
                'child_routes' => [
4169
                    'add' => [
4170
                        'type' => Literal::class,
4171
                        'options' => [
4172
                            'route' => '/add',
4173
                            'defaults' => [
4174
                                'controller' => '\LeadersLinked\Controller\DiscoveryContactController',
4175
                                'action' => 'add'
4176
                            ]
4177
                        ]
4178
                    ],
4179
                    'edit' => [
4180
                        'type' => Segment::class,
4181
                        'options' => [
4182
                            'route' => '/edit/:id',
4183
                            'constraints' => [
4184
                                'id' => '[A-Za-z0-9\-]+\=*'
4185
                            ],
4186
                            'defaults' => [
4187
                                'controller' => '\LeadersLinked\Controller\DiscoveryContactController',
4188
                                'action' => 'edit'
4189
                            ]
4190
                        ]
4191
                    ],
4192
                    'delete' => [
4193
                        'type' => Segment::class,
4194
                        'options' => [
4195
                            'route' => '/delete/:id',
4196
                            'constraints' => [
4197
                                'id' => '[A-Za-z0-9\-]+\=*'
4198
                            ],
4199
                            'defaults' => [
4200
                                'controller' => '\LeadersLinked\Controller\DiscoveryContactController',
4201
                                'action' => 'delete'
4202
                            ]
4203
                        ]
4204
                    ],
4205
                    'view' => [
4206
                        'type' => Segment::class,
4207
                        'options' => [
4208
                            'route' => '/view/:id',
4209
                            'constraints' => [
4210
                                'id' => '[A-Za-z0-9\-]+\=*'
4211
                            ],
4212
                            'defaults' => [
4213
                                'controller' => '\LeadersLinked\Controller\DiscoveryContactController',
4214
                                'action' => 'view'
4215
                            ]
4216
                        ]
4217
                    ],
4218
                    'interaction-types' => [
4219
                        'type' => Literal::class,
4220
                        'options' => [
4221
                            'route' => '/interaction-types',
4222
                            'defaults' => [
4223
                                'controller' => '\LeadersLinked\Controller\DiscoveryContactInteractionTypeController',
4224
                                'action' => 'index'
4225
                            ]
4226
                        ],
4227
                        'may_terminate' => true,
4228
                        'child_routes' => [
4229
                            'add' => [
4230
                                'type' => Literal::class,
4231
                                'options' => [
4232
                                    'route' => '/add',
4233
                                    'defaults' => [
4234
                                        'controller' => '\LeadersLinked\Controller\DiscoveryContactInteractionTypeController',
4235
                                        'action' => 'add'
4236
                                    ]
4237
                                ]
4238
                            ],
4239
                            'edit' => [
4240
                                'type' => Segment::class,
4241
                                'options' => [
4242
                                    'route' => '/edit/:id',
4243
                                    'constraints' => [
4244
                                        'id' => '[A-Za-z0-9\-]+\=*'
4245
                                    ],
4246
                                    'defaults' => [
4247
                                        'controller' => '\LeadersLinked\Controller\DiscoveryContactInteractionTypeController',
4248
                                        'action' => 'edit'
4249
                                    ]
4250
                                ]
4251
                            ],
4252
                            'delete' => [
4253
                                'type' => Segment::class,
4254
                                'options' => [
4255
                                    'route' => '/delete/:id',
4256
                                    'constraints' => [
4257
                                        'id' => '[A-Za-z0-9\-]+\=*'
4258
                                    ],
4259
                                    'defaults' => [
4260
                                        'controller' => '\LeadersLinked\Controller\DiscoveryContactInteractionTypeController',
4261
                                        'action' => 'delete'
4262
                                    ]
4263
                                ]
4264
                            ],
4265
 
4266
 
4267
 
4268
                        ]
4269
                    ],
4270
                    'interactions' => [
4271
                        'type' => Segment::class,
4272
                        'options' => [
4273
                            'route' => '/interactions/:id',
4274
                            'constraints' => [
4275
                                'id' => '[A-Za-z0-9\-]+\=*'
4276
                            ],
4277
                            'defaults' => [
4278
                                'controller' => '\LeadersLinked\Controller\DiscoveryContactInteractionController',
4279
                                'action' => 'index'
4280
                            ]
4281
                        ],
4282
                        'may_terminate' => true,
4283
                        'child_routes' => [
4284
                            'add' => [
4285
                                'type' => Segment::class,
4286
                                'options' => [
4287
                                    'route' => '/add',
4288
                                    'defaults' => [
4289
                                        'controller' => '\LeadersLinked\Controller\DiscoveryContactInteractionController',
4290
                                        'action' => 'add'
4291
                                    ]
4292
                                ]
4293
                            ],
4294
                            'delete' => [
4295
                                'type' => Segment::class,
4296
                                'options' => [
4297
                                    'route' => '/delete/:interaction',
4298
                                    'constraints' => [
4299
                                        'interaction' => '[A-Za-z0-9\-]+\=*'
4300
                                    ],
4301
                                    'defaults' => [
4302
                                        'controller' => '\LeadersLinked\Controller\DiscoveryContactInteractionController',
4303
                                        'action' => 'delete'
4304
                                    ]
4305
                                ]
4306
                            ],
4307
 
4308
 
4309
 
4310
                        ]
4311
                    ],
4312
                    'logs' => [
4313
                        'type' => Segment::class,
4314
                        'options' => [
4315
                            'route' => '/log/:id',
4316
                            'constraints' => [
4317
                                'id' => '[A-Za-z0-9\-]+\=*'
4318
                            ],
4319
                            'defaults' => [
4320
                                'controller' => '\LeadersLinked\Controller\DiscoveryContactLogController',
4321
                                'action' => 'index'
4322
                            ]
4323
                        ],
4324
                        'may_terminate' => true,
4325
                        'child_routes' => [
4326
                        ]
4327
                    ],
4328
 
4329
                ]
4330
            ],
4331
 
4332
 
4333
 
1333 efrain 4334
            'development-and-training' => [
4335
                'type' => Literal::class,
4336
                'options' => [
4337
                    'route' => '/development-and-training',
4338
                    'defaults' => [
4339
                        'controller' => '\LeadersLinked\Controller\UnknownController',
4340
                        'action' => 'index'
4341
                    ]
4342
                ],
4343
                'may_terminate' => true,
4344
                'child_routes' => [
15401 efrain 4345
 
1333 efrain 4346
                ]
4347
            ],
1477 efrain 4348
 
1333 efrain 4349
 
1477 efrain 4350
            'recruitment-and-selection' => [
1333 efrain 4351
                'type' => Literal::class,
4352
                'options' => [
1477 efrain 4353
                    'route' => '/recruitment-and-selection',
1333 efrain 4354
                    'defaults' => [
1477 efrain 4355
                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionController',
1333 efrain 4356
                        'action' => 'index'
4357
                    ]
4358
                ],
4359
                'may_terminate' => true,
4360
                'child_routes' => [
1477 efrain 4361
                    'vacancies' => [
1345 eleazar 4362
                        'type' => Literal::class,
4363
                        'options' => [
1477 efrain 4364
                            'route' => '/vacancies',
1345 eleazar 4365
                            'defaults' => [
1385 eleazar 4366
                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionVacancyController',
1345 eleazar 4367
                                'action' => 'index'
4368
                            ]
4369
                        ],
4370
                        'may_terminate' => true,
4371
                        'child_routes' => [
4372
                            'add' => [
4373
                                'type' => Literal::class,
4374
                                'options' => [
4375
                                    'route' => '/add',
4376
                                    'defaults' => [
1385 eleazar 4377
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionVacancyController',
1345 eleazar 4378
                                        'action' => 'add'
4379
                                    ]
4380
                                ]
4381
                            ],
4382
                            'edit' => [
4383
                                'type' => Segment::class,
4384
                                'options' => [
4385
                                    'route' => '/edit/:id',
4386
                                    'constraints' => [
4387
                                        'id' => '[A-Za-z0-9\-]+\=*'
4388
                                    ],
4389
                                    'defaults' => [
1385 eleazar 4390
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionVacancyController',
1345 eleazar 4391
                                        'action' => 'edit'
4392
                                    ]
4393
                                ]
4394
                            ],
4395
                            'delete' => [
4396
                                'type' => Segment::class,
4397
                                'options' => [
4398
                                    'route' => '/delete/:id',
4399
                                    'constraints' => [
4400
                                        'id' => '[A-Za-z0-9\-]+\=*'
4401
                                    ],
4402
                                    'defaults' => [
1385 eleazar 4403
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionVacancyController',
1345 eleazar 4404
                                        'action' => 'delete'
4405
                                    ]
4406
                                ]
4407
                            ]
4408
                        ]
4409
                    ],
15461 efrain 4410
                    'applications' => [
4411
                        'type' =>  Literal::class,
4412
                        'options' => [
4413
                            'route' => '/applications',
4414
                            'defaults' => [
4415
                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionApplicationController',
4416
                                'action' => 'index'
4417
                            ]
4418
                        ],
4419
                        'may_terminate' => true,
4420
                        'child_routes' => [
4421
                            'add' => [
4422
                                'type' => Segment::class,
4423
                                'options' => [
4424
                                    'route' => '/add/vacancy/:vacancy_id',
4425
                                    'constraints' => [
4426
                                        'vacancy_id' => '[A-Za-z0-9\-]+\=*'
4427
                                    ],
4428
                                    'defaults' => [
4429
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionApplicationController',
4430
                                        'action' => 'add'
4431
                                    ]
4432
                                ]
4433
                            ],
4434
                            'delete' => [
4435
                                'type' => Segment::class,
4436
                                'options' => [
4437
                                    'route' => '/delete/vacancy/:vacancy_id/application/:application_id',
4438
                                    'constraints' => [
4439
                                        'vacancy_id' => '[A-Za-z0-9\-]+\=*',
4440
                                        'application_id' => '[A-Za-z0-9\-]+\=*'
4441
                                    ],
4442
                                    'defaults' => [
4443
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionApplicationController',
4444
                                        'action' => 'delete'
4445
                                    ]
4446
                                ]
4447
                            ],
4448
                            'user-by-email' => [
4449
                                'type' => Literal::class,
4450
                                'options' => [
4451
                                    'route' => '/user-by-email',
4452
                                    'defaults' => [
4453
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionApplicationController',
4454
                                        'action' => 'userByEmail'
4455
                                    ]
4456
                                ]
4457
                            ],
4458
                            'view' => [
4459
                                'type' => Segment::class,
4460
                                'options' => [
4461
                                    'route' => '/view/vacancy/:vacancy_id/application/:application_id',
4462
                                    'constraints' => [
4463
                                        'vacancy_id' => '[A-Za-z0-9\-]+\=*',
4464
                                        'application_id' => '[A-Za-z0-9\-]+\=*'
4465
                                    ],
4466
                                    'defaults' => [
4467
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionApplicationController',
4468
                                        'action' => 'view'
4469
                                    ]
4470
                                ]
4471
                            ],
4472
                            'comment' => [
4473
                                'type' => Segment::class,
4474
                                'options' => [
4475
                                    'route' => '/comment/vacancy/:vacancy_id/application/:application_id',
4476
                                    'constraints' => [
4477
                                        'vacancy_id' => '[A-Za-z0-9\-]+\=*',
4478
                                        'application_id' => '[A-Za-z0-9\-]+\=*'
4479
                                    ],
4480
                                    'defaults' => [
4481
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionApplicationController',
4482
                                        'action' => 'comment'
4483
                                    ]
4484
                                ]
4485
                            ],
4486
                            'status' => [
4487
                                'type' => Segment::class,
4488
                                'options' => [
4489
                                    'route' => '/status/vacancy/:vacancy_id/application/:application_id',
4490
                                    'constraints' => [
4491
                                        'vacancy_id' => '[A-Za-z0-9\-]+\=*',
4492
                                        'iapplication_id' => '[A-Za-z0-9\-]+\=*'
4493
                                    ],
4494
                                    'defaults' => [
4495
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionApplicationController',
4496
                                        'action' => 'status'
4497
                                    ]
4498
                                ]
4499
                            ],
4500
                            'level' => [
4501
                                'type' => Segment::class,
4502
                                'options' => [
4503
                                    'route' => '/level/vacancy/:vacancy_id/application/:application_id',
4504
                                    'constraints' => [
4505
                                        'vacancy_id' => '[A-Za-z0-9\-]+\=*',
4506
                                        'application_id' => '[A-Za-z0-9\-]+\=*'
4507
                                    ],
4508
                                    'defaults' => [
4509
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionApplicationController',
4510
                                        'action' => 'level'
4511
                                    ]
4512
                                ]
4513
                            ],
4514
                            'files' => [
4515
                                'type' => Segment::class,
4516
                                'options' => [
4517
                                    'route' => '/files/vacancy/:vacancy_id/application/:application_id',
4518
                                    'constraints' => [
4519
                                        'vacancy_id' => '[A-Za-z0-9\-]+\=*',
4520
                                        'application_id' => '[A-Za-z0-9\-]+\=*'
4521
                                    ],
4522
                                    'defaults' => [
4523
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionFileController',
4524
                                        'action' => 'index'
4525
                                    ]
4526
                                ],
4527
                                'may_terminate' => true,
4528
                                'child_routes' => [
4529
                                    'add' => [
4530
                                        'type' => Segment::class,
4531
                                        'options' => [
4532
                                            'route' => '/add',
4533
                                            'defaults' => [
4534
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionFileController',
4535
                                                'action' => 'add'
4536
                                            ]
4537
                                        ]
4538
                                    ],
4539
                                    'delete' => [
4540
                                        'type' => Segment::class,
4541
                                        'options' => [
4542
                                            'route' => '/delete/:id',
4543
                                            'constraints' => [
4544
                                                'id' => '[A-Za-z0-9\-]+\=*'
4545
                                            ],
4546
                                            'defaults' => [
4547
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionFileController',
4548
                                                'action' => 'delete'
4549
                                            ]
4550
                                        ]
4551
                                    ],
4552
                                    'view' => [
4553
                                        'type' => Segment::class,
4554
                                        'options' => [
4555
                                            'route' => '/view/:id',
4556
                                            'constraints' => [
4557
                                                'id' => '[A-Za-z0-9\-]+\=*'
4558
                                            ],
4559
                                            'defaults' => [
4560
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionFileController',
4561
                                                'action' => 'view'
4562
                                            ]
4563
                                        ]
4564
                                    ],
4565
                                ]
4566
                            ],
4567
                            'interviews' => [
4568
                                'type' => Segment::class,
4569
                                'options' => [
4570
                                    'route' => '/interviews/vacancy/:vacancy_id/application/:application_id',
4571
                                    'constraints' => [
4572
                                        'vacancy_id' => '[A-Za-z0-9\-]+\=*',
4573
                                        'application_id' => '[A-Za-z0-9\-]+\=*'
4574
                                    ],
4575
                                    'defaults' => [
4576
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewController',
4577
                                        'action' => 'index'
4578
                                    ]
4579
                                ],
4580
                                'may_terminate' => true,
4581
                                'child_routes' => [
4582
                                    'add' => [
4583
                                        'type' => Segment::class,
4584
                                        'options' => [
4585
                                            'route' => '/add',
4586
                                            'defaults' => [
4587
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewController',
4588
                                                'action' => 'add'
4589
                                            ]
4590
                                        ]
4591
                                    ],
4592
                                    'delete' => [
4593
                                        'type' => Segment::class,
4594
                                        'options' => [
4595
                                            'route' => '/delete/:id',
4596
                                            'constraints' => [
4597
                                                'id' => '[A-Za-z0-9\-]+\=*'
4598
                                            ],
4599
                                            'defaults' => [
4600
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewController',
4601
                                                'action' => 'delete'
4602
                                            ]
4603
                                        ]
4604
                                    ],
4605
                                    'report' => [
4606
                                        'type' => Segment::class,
4607
                                        'options' => [
4608
                                            'route' => '/report/:id',
4609
                                            'constraints' => [
4610
                                                'id' => '[A-Za-z0-9\-]+\=*'
4611
                                            ],
4612
                                            'defaults' => [
4613
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewController',
4614
                                                'action' => 'report'
4615
                                            ]
4616
                                        ]
4617
                                    ],
4618
                                    'edit' => [
4619
                                        'type' => Segment::class,
4620
                                        'options' => [
4621
                                            'route' => '/edit/:id',
4622
                                            'constraints' => [
4623
                                                'id' => '[A-Za-z0-9\-]+\=*'
4624
                                            ],
4625
                                            'defaults' => [
4626
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewController',
4627
                                                'action' => 'edit'
4628
                                            ]
4629
                                        ]
4630
                                    ],
4631
                                ]
4632
                            ],
4633
                        ]
4634
 
4635
 
4636
                     ],
4637
                    /*
1459 eleazar 4638
                    'candidates' => [
4639
                        'type' => Segment::class,
4640
                        'options' => [
1501 eleazar 4641
                            'route' => '/candidates[/:vacancy_uuid]',
1459 eleazar 4642
                            'constraints' => [
1508 eleazar 4643
                                'vacancy_uuid' => '[A-Za-z0-9\-]+\=*'
1459 eleazar 4644
                            ],
4645
                            'defaults' => [
4646
                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
1502 eleazar 4647
                                'action' => 'index',
1503 eleazar 4648
                                'vacancy_uuid' => '',
1459 eleazar 4649
                            ]
4650
                        ],
4651
                        'may_terminate' => true,
4652
                        'child_routes' => [
4653
                            'add' => [
4654
                                'type' => Literal::class,
4655
                                'options' => [
1506 eleazar 4656
                                    'route' => '/add',
1459 eleazar 4657
                                    'defaults' => [
4658
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
4659
                                        'action' => 'add'
4660
                                    ]
4661
                                ]
4662
                            ],
4663
                            'edit' => [
4664
                                'type' => Segment::class,
4665
                                'options' => [
4666
                                    'route' => '/edit/:id',
4667
                                    'constraints' => [
4668
                                        'id' => '[A-Za-z0-9\-]+\=*'
4669
                                    ],
4670
                                    'defaults' => [
4671
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
4672
                                        'action' => 'edit'
4673
                                    ]
4674
                                ]
4675
                            ],
4676
                            'delete' => [
4677
                                'type' => Segment::class,
4678
                                'options' => [
4679
                                    'route' => '/delete/:id',
4680
                                    'constraints' => [
4681
                                        'id' => '[A-Za-z0-9\-]+\=*'
4682
                                    ],
4683
                                    'defaults' => [
4684
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
4685
                                        'action' => 'delete'
4686
                                    ]
4687
                                ]
1630 eleazar 4688
                            ],
4689
                            'email' => [
4690
                                'type' => Literal::class,
4691
                                'options' => [
4692
                                    'route' => '/email',
4693
                                    'defaults' => [
4694
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
4695
                                        'action' => 'email'
4696
                                    ]
4697
                                ]
4698
                            ],
1459 eleazar 4699
                        ]
4700
                    ],
1635 eleazar 4701
                    'user-by-email' => [
4702
                        'type' => Literal::class,
4703
                        'options' => [
4704
                            'route' => '/user-by-email',
4705
                            'defaults' => [
4706
                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
4707
                                'action' => 'email'
4708
                            ]
4709
                        ]
1709 eleazar 4710
                    ],
4711
                    'interview' => [
4712
                        'type' => Segment::class,
4713
                        'options' => [
4714
                            'route' => '/interview',
4715
                            'defaults' => [
4716
                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewController',
4717
                                'action' => 'index',
4718
                            ],
4719
                        ],
4720
                        'may_terminate' => true,
4721
                        'child_routes' => [
4722
                            'form' => [
4351 eleazar 4723
                                'type' => Segment::class,
1709 eleazar 4724
                                'options' => [
4349 eleazar 4725
                                    'route' => '/form[/:vacancy_uuid]',
4726
                                    'constraints' => [
4727
                                        'vacancy_uuid' => '[A-Za-z0-9\-]+\=*'
4728
                                    ],
1709 eleazar 4729
                                    'defaults' => [
1711 eleazar 4730
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
2029 eleazar 4731
                                        'action' => 'index',
4352 eleazar 4732
                                        'vacancy_uuid' => '',
1709 eleazar 4733
                                    ],
4734
                                ],
4735
                                'may_terminate' => true,
4736
                                'child_routes' => [
4737
                                    'add' => [
2059 eleazar 4738
                                        'type' => Segment::class,
1709 eleazar 4739
                                        'options' => [
3563 eleazar 4740
                                            'route' => '/add',
1709 eleazar 4741
                                            'defaults' => [
1899 eleazar 4742
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
1709 eleazar 4743
                                                'action' => 'add'
4744
                                            ],
4745
                                        ],
4746
                                    ],
4747
                                    'edit' => [
2775 eleazar 4748
                                        'type' => Segment::class,
1709 eleazar 4749
                                        'options' => [
2764 eleazar 4750
                                            'route' => '/edit/:interview_uuid',
2765 eleazar 4751
                                            'constraints' => [
4752
                                                'interview_uuid' => '[A-Za-z0-9\-]+\=*'
4753
                                            ],
1709 eleazar 4754
                                            'defaults' => [
1944 eleazar 4755
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
1709 eleazar 4756
                                                'action' => 'edit'
4757
                                            ],
4758
                                        ],
4759
                                    ],
4760
                                    'delete' => [
2775 eleazar 4761
                                        'type' => Segment::class,
1709 eleazar 4762
                                        'options' => [
2764 eleazar 4763
                                            'route' => '/delete/:interview_uuid',
2765 eleazar 4764
                                            'constraints' => [
4765
                                                'interview_uuid' => '[A-Za-z0-9\-]+\=*'
4766
                                            ],
1709 eleazar 4767
                                            'defaults' => [
2766 eleazar 4768
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
1709 eleazar 4769
                                                'action' => 'delete'
4770
                                            ],
4771
                                        ],
4772
                                    ],
8781 eleazar 4773
                                ],
4774
                            ],
4775
                            'file' => [
4776
                                'type' => Segment::class,
4777
                                'options' => [
4778
                                    'route' => '/:interview_uuid/file',
4779
                                    'constraints' => [
4780
                                        'interview_uuid' => '[A-Za-z0-9\-]+\=*'
4781
                                    ],
4782
                                    'defaults' => [
4783
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFileController',
4784
                                        'action' => 'index'
4785
                                    ],
4786
                                ],
4787
                                'may_terminate' => true,
4788
                                'child_routes' => [
4789
                                    'add' => [
4790
                                        'type' => Literal::class,
4791
                                        'options' => [
4792
                                            'route' => '/add',
4793
                                            'defaults' => [
4794
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFileController',
4795
                                                'action' => 'add'
4796
                                            ]
4797
                                        ]
4798
                                    ],
4799
                                    'edit' => [
8779 eleazar 4800
                                        'type' => Segment::class,
4801
                                        'options' => [
8874 eleazar 4802
                                            'route' => '/edit/:id',
8779 eleazar 4803
                                            'constraints' => [
8781 eleazar 4804
                                                'id' => '[A-Za-z0-9\-]+\=*'
8779 eleazar 4805
                                            ],
4806
                                            'defaults' => [
4807
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFileController',
8781 eleazar 4808
                                                'action' => 'edit'
4809
                                            ]
4810
                                        ]
4811
                                    ],
4812
                                    'delete' => [
4813
                                        'type' => Segment::class,
4814
                                        'options' => [
8874 eleazar 4815
                                            'route' => '/delete/:id',
8781 eleazar 4816
                                            'constraints' => [
4817
                                                'id' => '[A-Za-z0-9\-]+\=*'
8779 eleazar 4818
                                            ],
8781 eleazar 4819
                                            'defaults' => [
4820
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFileController',
4821
                                                'action' => 'delete'
8779 eleazar 4822
                                            ]
4823
                                        ]
8874 eleazar 4824
                                    ],
8781 eleazar 4825
                                ]
1709 eleazar 4826
                            ],
4827
                            'report' =>[
4828
                                'type' => Segment::class,
4829
                                'options' => [
2864 eleazar 4830
                                    'route' => '/report/:interview_uuid',
4831
                                    'constraints' => [
4832
                                        'interview_uuid' => '[A-Za-z0-9\-]+\=*'
4833
                                    ],
1709 eleazar 4834
                                    'defaults' => [
2864 eleazar 4835
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
4836
                                        'action' => 'report',
1709 eleazar 4837
                                    ],
4838
                                ],
4839
                            ],
3571 eleazar 4840
                            'vacancy' =>[
4841
                                'type' => Segment::class,
4842
                                'options' => [
4843
                                    'route' => '/vacancy/:vacancy_uuid',
4844
                                    'constraints' => [
4845
                                        'vacancy_uuid' => '[A-Za-z0-9\-]+\=*'
4846
                                    ],
4847
                                    'defaults' => [
4848
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
4849
                                        'action' => 'vacancy',
4850
                                    ],
4851
                                ],
4852
                            ],
4367 eleazar 4853
                            'type' =>[
4365 eleazar 4854
                                'type' => Segment::class,
4855
                                'options' => [
4367 eleazar 4856
                                    'route' => '/type/:candidate_uuid',
4365 eleazar 4857
                                    'constraints' => [
4858
                                        'candidate_uuid' => '[A-Za-z0-9\-]+\=*'
4859
                                    ],
4860
                                    'defaults' => [
4861
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
4367 eleazar 4862
                                        'action' => 'type',
4365 eleazar 4863
                                    ],
4864
                                ],
4865
                            ],
1709 eleazar 4866
                        ],
15461 efrain 4867
                    ], */
1459 eleazar 4868
                ],
1333 efrain 4869
            ],
4870
 
4871
            'induction' => [
4872
                'type' => Literal::class,
4873
                'options' => [
4874
                    'route' => '/induction',
4875
                    'defaults' => [
4876
                        'controller' => '\LeadersLinked\Controller\UnknownController',
4877
                        'action' => 'index'
4878
                    ]
4879
                ],
4880
                'may_terminate' => true,
4881
                'child_routes' => [
4882
                ]
4883
            ],
4884
 
4885
            'organizational-climate' => [
4886
                'type' => Literal::class,
4887
                'options' => [
4888
                    'route' => '/organizational-climate',
4889
                    'defaults' => [
7218 eleazar 4890
                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateController',
1333 efrain 4891
                        'action' => 'index'
4892
                    ]
4893
                ],
4894
                'may_terminate' => true,
4895
                'child_routes' => [
7218 eleazar 4896
                    'add' => [
4897
                        'type' => Segment::class,
4898
                        'options' => [
4899
                            'route' => '/add',
4900
                            'defaults' => [
7295 eleazar 4901
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateController',
7218 eleazar 4902
                                'action' => 'add'
4903
                            ],
4904
                        ],
4905
                    ],
4906
                    'edit' => [
4907
                        'type' => Segment::class,
4908
                        'options' => [
4909
                            'route' => '/edit/:id',
4910
                            'defaults' => [
7295 eleazar 4911
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateController',
7218 eleazar 4912
                                'action' => 'edit'
4913
                            ],
4914
                        ],
4915
                    ],
4916
                    'delete' => [
4917
                        'type' => Segment::class,
4918
                        'options' => [
4919
                            'route' => '/delete/:id',
4920
                            'defaults' => [
7295 eleazar 4921
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateController',
7218 eleazar 4922
                                'action' => 'delete'
4923
                            ],
4924
                        ],
4925
                    ],
4926
                    'segment' => [
4927
                        'type' => Segment::class,
4928
                        'options' => [
4929
                            'route' => '/segment/:id',
8536 efrain 4930
                            'constraints' => [
4931
                                'id' => '[A-Za-z0-9\-]+\=*'
4932
                            ],
7218 eleazar 4933
                            'defaults' => [
7295 eleazar 4934
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateController',
7218 eleazar 4935
                                'action' => 'segment'
4936
                            ],
4937
                        ],
4938
                    ],
4939
                    'form' => [
4940
                        'type' => Segment::class,
4941
                        'options' => [
4942
                            'route' => '/form',
4943
                            'defaults' => [
7295 eleazar 4944
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateFormController',
7218 eleazar 4945
                                'action' => 'index',
4946
                            ],
4947
                        ],
4948
                        'may_terminate' => true,
4949
                        'child_routes' => [
4950
                            'add' => [
4951
                                'type' => Segment::class,
4952
                                'options' => [
4953
                                    'route' => '/add',
4954
                                    'defaults' => [
7295 eleazar 4955
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateFormController',
7218 eleazar 4956
                                        'action' => 'add'
4957
                                    ],
4958
                                ],
4959
                            ],
4960
                            'edit' => [
4961
                                'type' => Segment::class,
4962
                                'options' => [
4963
                                    'route' => '/edit/:id',
4964
                                    'constraints' => [
4965
                                        'id' => '[A-Za-z0-9\-]+\=*'
4966
                                    ],
4967
                                    'defaults' => [
7295 eleazar 4968
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateFormController',
7218 eleazar 4969
                                        'action' => 'edit'
4970
                                    ]
4971
                                ]
4972
                            ],
4973
                            'delete' => [
4974
                                'type' => Segment::class,
4975
                                'options' => [
4976
                                    'route' => '/delete/:id',
4977
                                    'constraints' => [
4978
                                        'id' => '[A-Za-z0-9\-]+\=*'
4979
                                    ],
4980
                                    'defaults' => [
7295 eleazar 4981
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateFormController',
7218 eleazar 4982
                                        'action' => 'delete'
4983
                                    ]
4984
                                ]
4985
                            ]
4986
                        ],
4987
                    ],
4988
                    'test' => [
4989
                        'type' => Segment::class,
4990
                        'options' => [
14187 efrain 4991
                            'route' => '/test[/:organizational_climate_id]',
7218 eleazar 4992
                            'constraints' => [
14187 efrain 4993
                                'organizational_climate_id' => '[A-Za-z0-9\-]+\=*'
7218 eleazar 4994
                            ],
4995
                            'defaults' => [
7295 eleazar 4996
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateTestController',
7218 eleazar 4997
                                'action' => 'index',
14187 efrain 4998
                                'organizational_climate_id' => '',
7218 eleazar 4999
                            ],
5000
                        ],
5001
                        'may_terminate' => true,
5002
                        'child_routes' => [
5003
                            'add' => [
5004
                                'type' => Segment::class,
5005
                                'options' => [
5006
                                    'route' => '/add',
5007
                                    'defaults' => [
7295 eleazar 5008
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateTestController',
7218 eleazar 5009
                                        'action' => 'add',
5010
                                    ],
5011
                                ],
5012
                            ],
5013
                            'report' => [
5014
                                'type' => Segment::class,
5015
                                'options' => [
5016
                                    'route' => '/report/:uuid',
5017
                                    'defaults' => [
7295 eleazar 5018
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateTestController',
7218 eleazar 5019
                                        'action' => 'report',
5020
                                    ],
5021
                                ],
5022
                            ],
5023
                            'delete' => [
5024
                                'type' => Segment::class,
5025
                                'options' => [
5026
                                    'route' => '/delete/:id',
5027
                                    'defaults' => [
7295 eleazar 5028
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateTestController',
7218 eleazar 5029
                                        'action' => 'delete'
5030
                                    ]
5031
                                ]
5032
                            ]
5033
                        ],
5034
                    ],
5035
                    'report' => [
5036
                        'type' => Segment::class,
5037
                        'options' => [
14187 efrain 5038
                            'route' => '/report[/:organizational_climate_id]',
7218 eleazar 5039
                            'constraints' => [
14187 efrain 5040
                                'organizational_climate_id' => '[A-Za-z0-9\-]+\=*'
7218 eleazar 5041
                            ],
5042
                            'defaults' => [
7295 eleazar 5043
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateReportController',
7218 eleazar 5044
                                'action' => 'index',
14187 efrain 5045
                                'organizational_climate_id' => '',
7218 eleazar 5046
                            ],
5047
                        ],
5048
                        'may_terminate' => true,
5049
                        'child_routes' => [
5050
                            'all' => [
5051
                                'type' => Segment::class,
5052
                                'options' => [
5053
                                    'route' => '/all',
5054
                                    'defaults' => [
7295 eleazar 5055
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateReportController',
7218 eleazar 5056
                                        'action' => 'all',
5057
                                    ]
5058
                                ]
5059
                            ],
5060
                            'overview' => [
5061
                                'type' => Segment::class,
5062
                                'options' => [
5063
                                    'route' => '/overview',
5064
                                    'defaults' => [
7295 eleazar 5065
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateReportController',
7218 eleazar 5066
                                        'action' => 'overview',
5067
                                    ]
5068
                                ]
5069
                            ],
15149 efrain 5070
                            'excel' => [
7218 eleazar 5071
                                'type' => Segment::class,
5072
                                'options' => [
15149 efrain 5073
                                    'route' => '/excel',
7218 eleazar 5074
                                    'defaults' => [
7295 eleazar 5075
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateReportController',
15149 efrain 5076
                                        'action' => 'excel',
7218 eleazar 5077
                                    ]
5078
                                ]
5079
                            ],
5080
                        ],
5081
                    ],
5082
                ],
1333 efrain 5083
            ],
5084
 
5085
            'culture' => [
5086
                'type' => Literal::class,
5087
                'options' => [
5088
                    'route' => '/culture',
5089
                    'defaults' => [
5090
                        'controller' => '\LeadersLinked\Controller\UnknownController',
5091
                        'action' => 'index'
5092
                    ]
5093
                ],
5094
                'may_terminate' => true,
5095
                'child_routes' => [
5096
                ]
5097
            ],
13524 nelberth 5098
            'inmail' => [
13553 nelberth 5099
                'type' => Literal::class,
1333 efrain 5100
                'options' => [
13553 nelberth 5101
                    'route' => '/inmail',
5102
 
1333 efrain 5103
                    'defaults' => [
13528 nelberth 5104
                        'controller' => '\LeadersLinked\Controller\InMailController',
13170 nelberth 5105
                        'action' => 'index'
1333 efrain 5106
                    ]
5107
                ],
5108
                'may_terminate' => true,
5109
                'child_routes' => [
13760 nelberth 5110
                    'sendall' => [
5111
                        'type' => Literal::class,
5112
                        'options' => [
5113
                            'route' => '/sendall',
5114
                            'defaults' => [
13761 nelberth 5115
                                'controller' => '\LeadersLinked\Controller\InMailController',
13760 nelberth 5116
                                'action' => 'sendAll'
5117
                            ]
5118
                        ]
5119
                    ],
13524 nelberth 5120
                    'search-people' => [
5121
                        'type' => Literal::class,
13013 nelberth 5122
                        'options' => [
13524 nelberth 5123
                            'route' => '/search-people',
13013 nelberth 5124
                            'defaults' => [
13528 nelberth 5125
                                'controller' => '\LeadersLinked\Controller\InMailController',
13524 nelberth 5126
                                'action' => 'searchPeople'
13028 nelberth 5127
                            ]
13524 nelberth 5128
                        ]
5129
                    ],
13553 nelberth 5130
                    'view' => [
5131
                        'type' => Segment::class,
13524 nelberth 5132
                        'options' => [
13553 nelberth 5133
                            'route' => '/view[/:id]',
5134
                            'constraints' => [
5135
                                'id' => '[A-Za-z0-9\-]+\=*',
5136
                            ],
13524 nelberth 5137
                            'defaults' => [
13528 nelberth 5138
                                'controller' => '\LeadersLinked\Controller\InMailController',
13553 nelberth 5139
                                'action' => 'view'
13524 nelberth 5140
                            ]
13028 nelberth 5141
                        ],
5142
                        'may_terminate' => true,
5143
                        'child_routes' => [
13553 nelberth 5144
                            'message' => [
5145
                                'type' => Literal::class,
13028 nelberth 5146
                                'options' => [
13553 nelberth 5147
                                    'route' => '/message',
13028 nelberth 5148
                                    'defaults' => [
13528 nelberth 5149
                                        'controller' => '\LeadersLinked\Controller\InMailController',
13553 nelberth 5150
                                        'action' => 'message'
13028 nelberth 5151
                                    ]
13553 nelberth 5152
                                ],
5153
                                'may_terminate' => true,
5154
                                'child_routes' => [
5155
                                    'send' => [
5156
                                        'type' => Segment::class,
5157
                                        'options' => [
5158
                                            'route' => '/send[/encoding/:encoding]',
5159
                                            'constraints' => [
5160
                                                'encoding' => 'base64'
5161
                                            ],
5162
                                            'defaults' => [
5163
                                                'controller' => '\LeadersLinked\Controller\InMailController',
5164
                                                'action' => 'sendMessage'
5165
                                            ]
5166
                                        ]
5167
                                    ],
5168
                                ],
13013 nelberth 5169
                            ],
13553 nelberth 5170
                        ]
13013 nelberth 5171
                    ],
13778 nelberth 5172
                    'company' => [
5173
                        'type' => Segment::class,
5174
                        'options' => [
13798 nelberth 5175
                            'route' => '/company[/id/:id][/type/:type]',
13778 nelberth 5176
                            'constraints' => [
5177
                                'id' => '[A-Za-z0-9\-]+\=*',
13798 nelberth 5178
                                'type'=>'company',
13778 nelberth 5179
                            ],
5180
                            'defaults' => [
5181
                                'controller' => '\LeadersLinked\Controller\InMailController',
5182
                                'action' => 'view'
5183
                            ]
5184
                        ],
5185
                        'may_terminate' => true,
5186
                        'child_routes' => [
5187
                            'message' => [
5188
                                'type' => Literal::class,
5189
                                'options' => [
5190
                                    'route' => '/message',
5191
                                    'defaults' => [
5192
                                        'controller' => '\LeadersLinked\Controller\InMailController',
5193
                                        'action' => 'message'
5194
                                    ]
5195
                                ],
5196
                                'may_terminate' => true,
5197
                                'child_routes' => [
5198
                                    'send' => [
5199
                                        'type' => Segment::class,
5200
                                        'options' => [
5201
                                            'route' => '/send[/encoding/:encoding]',
5202
                                            'constraints' => [
5203
                                                'encoding' => 'base64'
5204
                                            ],
5205
                                            'defaults' => [
5206
                                                'controller' => '\LeadersLinked\Controller\InMailController',
5207
                                                'action' => 'sendMessage'
5208
                                            ]
5209
                                        ]
5210
                                    ],
5211
                                ],
5212
                            ],
5213
                        ]
5214
                    ],
13553 nelberth 5215
 
13524 nelberth 5216
                ],
5217
            ],
5218
 
5219
 
5220
            'communication' => [
5221
                'type' => Literal::class,
5222
                'options' => [
5223
                    'route' => '/communication',
5224
                    'defaults' => [
5225
                        'controller' => '\LeadersLinked\Controller\CommunicationController',
5226
                        'action' => 'index'
5227
                    ]
5228
                ],
5229
                'may_terminate' => true,
5230
                'child_routes' => [
13672 nelberth 5231
                    'inbox' => [
13652 nelberth 5232
                        'type' => Literal::class,
5233
                        'options' => [
13672 nelberth 5234
                            'route' => '/inbox',
13652 nelberth 5235
 
5236
                            'defaults' => [
13672 nelberth 5237
                                'controller' => '\LeadersLinked\Controller\CommunicationInboxController',
13652 nelberth 5238
                                'action' => 'index'
5239
                            ]
5240
                        ],
5241
                        'may_terminate' => true,
5242
                        'child_routes' => [
13732 nelberth 5243
                            'sendall' => [
5244
                                'type' => Literal::class,
5245
                                'options' => [
5246
                                    'route' => '/sendall',
5247
                                    'defaults' => [
5248
                                        'controller' => '\LeadersLinked\Controller\CommunicationInboxController',
5249
                                        'action' => 'sendAll'
5250
                                    ]
5251
                                ]
5252
                            ],
13652 nelberth 5253
                            'search-people' => [
5254
                                'type' => Literal::class,
5255
                                'options' => [
5256
                                    'route' => '/search-people',
5257
                                    'defaults' => [
13672 nelberth 5258
                                        'controller' => '\LeadersLinked\Controller\CommunicationInboxController',
13652 nelberth 5259
                                        'action' => 'searchPeople'
5260
                                    ]
5261
                                ]
5262
                            ],
5263
                            'view' => [
5264
                                'type' => Segment::class,
5265
                                'options' => [
5266
                                    'route' => '/view[/:id]',
5267
                                    'constraints' => [
5268
                                        'id' => '[A-Za-z0-9\-]+\=*',
5269
                                    ],
5270
                                    'defaults' => [
13672 nelberth 5271
                                        'controller' => '\LeadersLinked\Controller\CommunicationInboxController',
13652 nelberth 5272
                                        'action' => 'view'
5273
                                    ]
5274
                                ],
5275
                                'may_terminate' => true,
5276
                                'child_routes' => [
5277
                                    'message' => [
5278
                                        'type' => Literal::class,
5279
                                        'options' => [
5280
                                            'route' => '/message',
5281
                                            'defaults' => [
13672 nelberth 5282
                                                'controller' => '\LeadersLinked\Controller\CommunicationInboxController',
13652 nelberth 5283
                                                'action' => 'message'
5284
                                            ]
5285
                                        ],
5286
                                        'may_terminate' => true,
5287
                                        'child_routes' => [
5288
                                            'send' => [
5289
                                                'type' => Segment::class,
5290
                                                'options' => [
5291
                                                    'route' => '/send[/encoding/:encoding]',
5292
                                                    'constraints' => [
5293
                                                        'encoding' => 'base64'
5294
                                                    ],
5295
                                                    'defaults' => [
13672 nelberth 5296
                                                        'controller' => '\LeadersLinked\Controller\CommunicationInboxController',
13652 nelberth 5297
                                                        'action' => 'sendMessage'
5298
                                                    ]
5299
                                                ]
5300
                                            ],
5301
                                        ],
5302
                                    ],
5303
                                ]
5304
                            ],
5305
 
5306
                        ],
5307
                    ],
13028 nelberth 5308
 
1333 efrain 5309
                ]
5310
            ],
5311
 
5312
            'career-development' => [
5313
                'type' => Literal::class,
5314
                'options' => [
5315
                    'route' => '/career-development',
5316
                    'defaults' => [
5317
                        'controller' => '\LeadersLinked\Controller\UnknownController',
5318
                        'action' => 'index'
5319
                    ]
5320
                ],
5321
                'may_terminate' => true,
5322
                'child_routes' => [
5323
                ]
5324
            ],
5325
 
4386 eleazar 5326
            'survey' => [
1333 efrain 5327
                'type' => Literal::class,
5328
                'options' => [
4397 eleazar 5329
                    'route' => '/survey',
1333 efrain 5330
                    'defaults' => [
4375 eleazar 5331
                        'controller' => '\LeadersLinked\Controller\SurveyController',
1333 efrain 5332
                        'action' => 'index'
5333
                    ]
5334
                ],
5335
                'may_terminate' => true,
5336
                'child_routes' => [
4579 eleazar 5337
                    'add' => [
5338
                        'type' => Segment::class,
5339
                        'options' => [
5340
                            'route' => '/add',
5341
                            'defaults' => [
5342
                                'controller' => '\LeadersLinked\Controller\SurveyController',
5343
                                'action' => 'add'
5344
                            ],
5345
                        ],
5346
                    ],
5347
                    'edit' => [
5348
                        'type' => Segment::class,
5349
                        'options' => [
5350
                            'route' => '/edit/:id',
5351
                            'defaults' => [
5352
                                'controller' => '\LeadersLinked\Controller\SurveyController',
5353
                                'action' => 'edit'
5354
                            ],
5355
                        ],
5356
                    ],
5357
                    'delete' => [
5358
                        'type' => Segment::class,
5359
                        'options' => [
5360
                            'route' => '/delete/:id',
5361
                            'defaults' => [
5362
                                'controller' => '\LeadersLinked\Controller\SurveyController',
5363
                                'action' => 'delete'
5364
                            ],
5365
                        ],
5366
                    ],
5367
                    'segment' => [
5368
                        'type' => Segment::class,
5369
                        'options' => [
5370
                            'route' => '/segment/:id',
5371
                            'defaults' => [
5372
                                'controller' => '\LeadersLinked\Controller\SurveyController',
5373
                                'action' => 'segment'
5374
                            ],
5375
                        ],
5376
                    ],
4374 eleazar 5377
                    'form' => [
5378
                        'type' => Segment::class,
5379
                        'options' => [
5380
                            'route' => '/form',
5381
                            'defaults' => [
4375 eleazar 5382
                                'controller' => '\LeadersLinked\Controller\SurveyFormController',
4374 eleazar 5383
                                'action' => 'index',
5384
                            ],
5385
                        ],
5386
                        'may_terminate' => true,
5387
                        'child_routes' => [
5388
                            'add' => [
5389
                                'type' => Segment::class,
5390
                                'options' => [
5391
                                    'route' => '/add',
5392
                                    'defaults' => [
4375 eleazar 5393
                                        'controller' => '\LeadersLinked\Controller\SurveyFormController',
4374 eleazar 5394
                                        'action' => 'add'
5395
                                    ],
5396
                                ],
5397
                            ],
5398
                            'edit' => [
5399
                                'type' => Segment::class,
5400
                                'options' => [
5401
                                    'route' => '/edit/:id',
5402
                                    'constraints' => [
5403
                                        'id' => '[A-Za-z0-9\-]+\=*'
5404
                                    ],
5405
                                    'defaults' => [
4375 eleazar 5406
                                        'controller' => '\LeadersLinked\Controller\SurveyFormController',
4374 eleazar 5407
                                        'action' => 'edit'
5408
                                    ]
5409
                                ]
5410
                            ],
5411
                            'delete' => [
5412
                                'type' => Segment::class,
5413
                                'options' => [
5414
                                    'route' => '/delete/:id',
5415
                                    'constraints' => [
5416
                                        'id' => '[A-Za-z0-9\-]+\=*'
5417
                                    ],
5418
                                    'defaults' => [
4375 eleazar 5419
                                        'controller' => '\LeadersLinked\Controller\SurveyFormController',
4374 eleazar 5420
                                        'action' => 'delete'
5421
                                    ]
5422
                                ]
5423
                            ]
5424
                        ],
5425
                    ],
5287 eleazar 5426
                    'test' => [
5427
                        'type' => Segment::class,
5428
                        'options' => [
5884 eleazar 5429
                            'route' => '/test[/:survey_id]',
5430
                            'constraints' => [
5431
                                'survey_id' => '[A-Za-z0-9\-]+\=*'
5432
                            ],
5287 eleazar 5433
                            'defaults' => [
5434
                                'controller' => '\LeadersLinked\Controller\SurveyTestController',
5435
                                'action' => 'index',
5884 eleazar 5436
                                'survey_id' => '',
5287 eleazar 5437
                            ],
5438
                        ],
5439
                        'may_terminate' => true,
5440
                        'child_routes' => [
5441
                            'add' => [
5442
                                'type' => Segment::class,
5443
                                'options' => [
6036 eleazar 5444
                                    'route' => '/add',
5287 eleazar 5445
                                    'defaults' => [
5446
                                        'controller' => '\LeadersLinked\Controller\SurveyTestController',
5732 eleazar 5447
                                        'action' => 'add',
5287 eleazar 5448
                                    ],
5449
                                ],
5450
                            ],
6662 eleazar 5451
                            'report' => [
5452
                                'type' => Segment::class,
5453
                                'options' => [
6882 eleazar 5454
                                    'route' => '/report/:uuid',
6662 eleazar 5455
                                    'defaults' => [
5456
                                        'controller' => '\LeadersLinked\Controller\SurveyTestController',
5457
                                        'action' => 'report',
5458
                                    ],
5459
                                ],
5460
                            ],
5287 eleazar 5461
                            'delete' => [
5462
                                'type' => Segment::class,
5463
                                'options' => [
6882 eleazar 5464
                                    'route' => '/delete/:id',
5287 eleazar 5465
                                    'defaults' => [
5466
                                        'controller' => '\LeadersLinked\Controller\SurveyTestController',
5467
                                        'action' => 'delete'
5468
                                    ]
5469
                                ]
5470
                            ]
5471
                        ],
5472
                    ],
5823 eleazar 5473
                    'report' => [
5474
                        'type' => Segment::class,
5475
                        'options' => [
5911 eleazar 5476
                            'route' => '/report[/:survey_id]',
5477
                            'constraints' => [
5478
                                'survey_id' => '[A-Za-z0-9\-]+\=*'
5479
                            ],
5823 eleazar 5480
                            'defaults' => [
5481
                                'controller' => '\LeadersLinked\Controller\SurveyReportController',
5482
                                'action' => 'index',
5911 eleazar 5483
                                'survey_id' => '',
5823 eleazar 5484
                            ],
5485
                        ],
5486
                        'may_terminate' => true,
5487
                        'child_routes' => [
5488
                            'all' => [
5489
                                'type' => Segment::class,
5490
                                'options' => [
5868 eleazar 5491
                                    'route' => '/all',
5823 eleazar 5492
                                    'defaults' => [
5493
                                        'controller' => '\LeadersLinked\Controller\SurveyReportController',
5868 eleazar 5494
                                        'action' => 'all',
5823 eleazar 5495
                                    ]
5496
                                ]
5497
                            ],
6496 eleazar 5498
                            'overview' => [
5499
                                'type' => Segment::class,
5500
                                'options' => [
5501
                                    'route' => '/overview',
5502
                                    'defaults' => [
5503
                                        'controller' => '\LeadersLinked\Controller\SurveyReportController',
5504
                                        'action' => 'overview',
5505
                                    ]
5506
                                ]
5507
                            ],
15149 efrain 5508
                            'excel' => [
7024 eleazar 5509
                                'type' => Segment::class,
5510
                                'options' => [
15149 efrain 5511
                                    'route' => '/excel',
7024 eleazar 5512
                                    'defaults' => [
5513
                                        'controller' => '\LeadersLinked\Controller\SurveyReportController',
15149 efrain 5514
                                        'action' => 'excel',
7024 eleazar 5515
                                    ]
5516
                                ]
5517
                            ],
5823 eleazar 5518
                        ],
5519
                    ],
1333 efrain 5520
                ]
5521
            ],
5522
 
5523
            'building-my-future' => [
5524
                'type' => Literal::class,
5525
                'options' => [
5526
                    'route' => '/building-my-future',
5527
                    'defaults' => [
5528
                        'controller' => '\LeadersLinked\Controller\UnknownController',
5529
                        'action' => 'index'
5530
                    ]
5531
                ],
5532
                'may_terminate' => true,
5533
                'child_routes' => [
5534
                ]
5535
            ],
11431 nelberth 5536
 
5537
            'csrf' => [
5538
                'type' => Literal::class,
5539
                'options' => [
5540
                    'route' => '/csrf',
5541
                    'defaults' => [
14692 efrain 5542
                        'controller' => '\LeadersLinked\Controller\DashboardController',
11431 nelberth 5543
                        'action' => 'csrf'
5544
                    ]
5545
                ]
5546
            ],
11340 nelberth 5547
            'chat' => [
5548
                'type' => Literal::class,
5549
                'options' => [
5550
                    'route' => '/chat',
5551
                    'defaults' => [
5552
                        'controller' => '\LeadersLinked\Controller\ChatController',
5553
                        'action' => 'index'
5554
                    ]
5555
                ],
5556
                'may_terminate' => true,
5557
                'child_routes' => [
5558
                    // Inicio de los Routes del Chat //
7184 nelberth 5559
 
11340 nelberth 5560
                    'heart-beat' => [
5561
                        'type' => Literal::class,
5562
                        'options' => [
5563
                            'route' => '/heart-beat',
5564
                            'defaults' => [
5565
                                'controller' => '\LeadersLinked\Controller\ChatController',
5566
                                'action' => 'heartBeat',
5567
                            ],
5568
                        ],
5569
                    ],
5570
                    'create-group' => [
5571
                        'type' => Literal::class,
5572
                        'options' => [
5573
                            'route' => '/create-group',
5574
                            'defaults' => [
5575
                                'controller' => '\LeadersLinked\Controller\ChatController',
5576
                                'action' => 'createGroup',
5577
                            ],
5578
                        ],
5579
                    ],
5580
                    'add-user-to-group' => [
5581
                        'type' => Segment::class,
5582
                        'options' => [
5583
                            'route' => '/add-user-to-group/:group_id',
5584
                            'constraints' => [
5585
                                'group_id' => '[A-Za-z0-9\-]+\=*',
5586
                            ],
5587
                            'defaults' => [
5588
                                'controller' => '\LeadersLinked\Controller\ChatController',
5589
                                'action' => 'addUserToGroup',
5590
                            ],
5591
                        ],
5592
                    ],
5593
                    'mark-seen' => [
5594
                        'type' => Segment::class,
5595
                        'options' => [
5596
                            'route' => '/mark-seen/:id',
5597
                            'constraints' => [
5598
                                'id' => '[A-Za-z0-9\-]+\=*',
5599
                            ],
5600
                            'defaults' => [
5601
                                'controller' => '\LeadersLinked\Controller\ChatController',
5602
                                'action' => 'markSeen',
5603
                            ],
5604
                        ],
5605
                    ],
5606
                    'mark-received' => [
5607
                        'type' => Segment::class,
5608
                        'options' => [
5609
                            'route' => '/mark-received/:id',
5610
                            'constraints' => [
5611
                                'id' => '[A-Za-z0-9\-]+\=*',
5612
                            ],
5613
                            'defaults' => [
5614
                                'controller' => '\LeadersLinked\Controller\ChatController',
5615
                                'action' => 'markReceived',
5616
                            ],
5617
                        ],
5618
                    ],
5619
                    'remove-user-from-group' => [
5620
                        'type' => Segment::class,
5621
                        'options' => [
5622
                            'route' => '/remove-user-from-group/:group_id/:user_id',
5623
                            'constraints' => [
5624
                                'group_id' => '[A-Za-z0-9\-]+\=*',
5625
                                'user_id' => '[A-Za-z0-9\-]+\=*',
5626
                            ],
5627
                            'defaults' => [
5628
                                'controller' => '\LeadersLinked\Controller\ChatController',
5629
                                'action' => 'removeUserFromGroup',
5630
                            ],
5631
                        ],
5632
                    ],
5633
                    'get-all-messages' => [
5634
                        'type' => Segment::class,
5635
                        'options' => [
5636
                            'route' => '/get-all-messages/:id',
5637
                            'constraints' => [
5638
                                'id' => '[A-Za-z0-9\-]+\=*',
5639
                            ],
5640
                            'defaults' => [
5641
                                'controller' => '\LeadersLinked\Controller\ChatController',
5642
                                'action' => 'getAllMessages',
5643
                            ],
5644
                        ],
5645
                    ],
5646
                    'send' => [
5647
                        'type' => Segment::class,
5648
                        'options' => [
5649
                            'route' => '/send/:id',
5650
                            'constraints' => [
5651
                                'id' => '[A-Za-z0-9\-]+\=*',
5652
                            ],
5653
                            'defaults' => [
5654
                                'controller' => '\LeadersLinked\Controller\ChatController',
5655
                                'action' => 'send',
5656
                            ],
5657
                        ],
5658
                    ],
5659
                    'get-contacts-availables-for-group' => [
5660
                        'type' => Segment::class,
5661
                        'options' => [
5662
                            'route' => '/get-contacts-availables-for-group/:group_id',
5663
                            'constraints' => [
5664
                                'group_id' => '[A-Za-z0-9\-]+\=*',
5665
                            ],
5666
                            'defaults' => [
5667
                                'controller' => '\LeadersLinked\Controller\ChatController',
5668
                                'action' => 'contactAvailableGroupList',
5669
                            ],
5670
                        ],
5671
                    ],
5672
                    'get-contact-group-list' => [
5673
                        'type' => Segment::class,
5674
                        'options' => [
5675
                            'route' => '/get-contact-group-list/:group_id',
5676
                            'constraints' => [
5677
                                'group_id' => '[A-Za-z0-9\-]+\=*',
5678
                            ],
5679
                            'defaults' => [
5680
                                'controller' => '\LeadersLinked\Controller\ChatController',
5681
                                'action' => 'contactGroupList',
5682
                            ],
5683
                        ],
5684
                    ],
5685
                    'leave-group' => [
5686
                        'type' => Segment::class,
5687
                        'options' => [
5688
                            'route' => '/leave-group/:group_id',
5689
                            'constraints' => [
5690
                                'group_id' => '[A-Za-z0-9\-]+\=*',
5691
                            ],
5692
                            'defaults' => [
5693
                                'controller' => '\LeadersLinked\Controller\ChatController',
5694
                                'action' => 'leaveGroup',
5695
                            ],
5696
                        ],
5697
                    ],
5698
                    'delete-group' => [
5699
                        'type' => Segment::class,
5700
                        'options' => [
5701
                            'route' => '/delete-group/:group_id',
5702
                            'constraints' => [
5703
                                'group_id' => '[A-Za-z0-9\-]+\=*',
5704
                            ],
5705
                            'defaults' => [
5706
                                'controller' => '\LeadersLinked\Controller\ChatController',
5707
                                'action' => 'deleteGroup',
5708
                            ],
5709
                        ],
5710
                    ],
14692 efrain 5711
                    'open' => [
5712
                        'type' => Segment::class,
5713
                        'options' => [
5714
                            'route' => '/open/:id',
5715
                            'constraints' => [
5716
                                'id' => '[A-Za-z0-9\-]+\=*',
5717
                            ],
5718
                            'defaults' => [
5719
                                'controller' => '\LeadersLinked\Controller\ChatController',
5720
                                'action' => 'open',
5721
                            ],
5722
                        ],
5723
                    ],
11340 nelberth 5724
                    'close' => [
5725
                        'type' => Segment::class,
5726
                        'options' => [
5727
                            'route' => '/close/:id',
5728
                            'constraints' => [
5729
                                'id' => '[A-Za-z0-9\-]+\=*',
5730
                            ],
5731
                            'defaults' => [
5732
                                'controller' => '\LeadersLinked\Controller\ChatController',
5733
                                'action' => 'close',
5734
                            ],
5735
                        ],
5736
                    ],
5737
                    'clear' => [
5738
                        'type' => Segment::class,
5739
                        'options' => [
5740
                            'route' => '/clear/:id',
5741
                            'constraints' => [
5742
                                'id' => '[A-Za-z0-9\-]+\=*',
5743
                            ],
5744
                            'defaults' => [
5745
                                'controller' => '\LeadersLinked\Controller\ChatController',
5746
                                'action' => 'clear',
5747
                            ],
5748
                        ],
5749
                    ],
5750
                    'upload' => [
5751
                        'type' => Segment::class,
5752
                        'options' => [
5753
                            'route' => '/upload/:id',
5754
                            'constraints' => [
5755
                                'id' => '[A-Za-z0-9\-]+\=*',
5756
                            ],
5757
                            'defaults' => [
5758
                                'controller' => '\LeadersLinked\Controller\ChatController',
5759
                                'action' => 'upload',
5760
                            ],
5761
                        ],
5762
                    ],
5763
                ],
5764
            ],
7224 nelberth 5765
 
1333 efrain 5766
            'high-performance-teams' => [
5767
                'type' => Literal::class,
5768
                'options' => [
4591 nelberth 5769
                    'route' => '/high-performance-teams',
4588 nelberth 5770
                    'defaults' => [
4376 nelberth 5771
                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsController',
1333 efrain 5772
                        'action' => 'index'
5773
                    ]
5774
                ],
5775
                'may_terminate' => true,
5776
                'child_routes' => [
7240 nelberth 5777
                    'groups' => [
4388 nelberth 5778
                        'type' => Literal::class,
5779
                        'options' => [
7224 nelberth 5780
                            'route' => '/groups',
4388 nelberth 5781
                            'defaults' => [
7224 nelberth 5782
                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsController',
4388 nelberth 5783
                                'action' => 'index'
5784
                            ]
4411 nelberth 5785
                        ],'may_terminate' => true,
5786
                        'child_routes' => [
5787
 
5788
                            'add' => [
5789
                                'type' => Literal::class,
5790
                                'options' => [
5791
                                    'route' => '/add',
5792
                                    'defaults' => [
7224 nelberth 5793
                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsController',
4411 nelberth 5794
                                        'action' => 'add'
5795
                                    ]
5796
                                ]
5797
                            ],
5798
                            'edit' => [
5799
                                'type' => Segment::class,
5800
                                'options' => [
11082 nelberth 5801
                                    'route' => '/edit/:group_id',
4411 nelberth 5802
                                    'constraints' => [
11082 nelberth 5803
                                        'group_id' => '[A-Za-z0-9\-]+\=*'
4411 nelberth 5804
                                    ],
5805
                                    'defaults' => [
7224 nelberth 5806
                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsController',
4411 nelberth 5807
                                        'action' => 'edit'
5808
                                    ]
5809
                                ]
5810
                            ],
5811
                            'delete' => [
5812
                                'type' => Segment::class,
5813
                                'options' => [
11082 nelberth 5814
                                    'route' => '/delete/:group_id',
4411 nelberth 5815
                                    'constraints' => [
11082 nelberth 5816
                                        'group_id' => '[A-Za-z0-9\-]+\=*'
4411 nelberth 5817
                                    ],
5818
                                    'defaults' => [
7224 nelberth 5819
                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsController',
4411 nelberth 5820
                                        'action' => 'delete'
5821
                                    ]
5822
                                ]
7261 nelberth 5823
                            ],'view' => [
4509 nelberth 5824
                                'type' => Segment::class,
5825
                                'options' => [
11082 nelberth 5826
                                    'route' => '/view/:group_id',
4509 nelberth 5827
                                    'constraints' => [
11082 nelberth 5828
                                        'group_id' => '[A-Za-z0-9\-]+\=*',
4509 nelberth 5829
                                    ],
5830
                                    'defaults' => [
7308 nelberth 5831
                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewController',
4571 nelberth 5832
                                        'action' => 'index'
4509 nelberth 5833
                                    ]
7483 nelberth 5834
                                ],
5835
                                    'may_terminate' => true,
5836
                                    'child_routes' => [
12408 nelberth 5837
                                        'objectives' => [
11902 nelberth 5838
                                            'type' => Literal::class,
5839
                                            'options' => [
12408 nelberth 5840
                                                'route' => '/objectives',
5841
                                                'defaults' => [
12433 nelberth 5842
                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController',
12408 nelberth 5843
                                                    'action' => 'index'
5844
                                                ]
5845
                                            ],
5846
 
5847
                                            'may_terminate' => true,
5848
                                            'child_routes' => [
5849
 
5850
                                                'add' => [
5851
                                                    'type' => Literal::class,
5852
                                                    'options' => [
5853
                                                        'route' => '/add',
5854
                                                        'defaults' => [
12675 nelberth 5855
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController',
12408 nelberth 5856
                                                            'action' => 'add'
5857
                                                        ]
5858
                                                    ]
5859
                                                ],
5860
                                                'edit' => [
5861
                                                    'type' => Segment::class,
5862
                                                    'options' => [
5863
                                                        'route' => '/edit/:id',
5864
                                                        'constraints' => [
5865
                                                            'id' => '[A-Za-z0-9\-]+\=*'
5866
                                                        ],
5867
                                                        'defaults' => [
12675 nelberth 5868
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController',
12408 nelberth 5869
                                                            'action' => 'edit'
5870
                                                        ]
5871
                                                    ]
5872
                                                ],
5873
                                                'delete' => [
5874
                                                    'type' => Segment::class,
5875
                                                    'options' => [
5876
                                                        'route' => '/delete/:id',
5877
                                                        'constraints' => [
5878
                                                            'id' => '[A-Za-z0-9\-]+\=*'
5879
                                                        ],
5880
                                                        'defaults' => [
12675 nelberth 5881
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController',
12408 nelberth 5882
                                                            'action' => 'delete'
5883
                                                        ]
5884
                                                    ]
5885
                                                ],
5886
                                                'report' => [
5887
                                                    'type' => Segment::class,
5888
                                                    'options' => [
5889
                                                        'route' => '/report/:id',
5890
                                                        'constraints' => [
5891
                                                            'id' => '[A-Za-z0-9\-]+\=*'
5892
                                                        ],
5893
                                                        'defaults' => [
12675 nelberth 5894
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController',
12408 nelberth 5895
                                                            'action' => 'report'
5896
                                                        ]
5897
                                                    ]
5898
                                                ],
5899
                                                'reportall' => [
5900
                                                    'type' => Literal::class,
5901
                                                    'options' => [
5902
                                                        'route' => '/reportall',
5903
                                                        'defaults' => [
12675 nelberth 5904
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController',
12408 nelberth 5905
                                                            'action' => 'reportall'
5906
                                                        ]
5907
                                                    ]
5908
                                                ],
5909
 
5910
                                                'matriz' => [
5911
                                                    'type' => Literal::class,
5912
                                                    'options' => [
5913
                                                        'route' => '/matriz',
5914
                                                        'defaults' => [
12675 nelberth 5915
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController',
12408 nelberth 5916
                                                            'action' => 'matriz'
5917
                                                        ]
5918
                                                    ]
5919
                                                ],
5920
                                                'goals' => [
5921
                                                    'type' => Segment::class,
5922
                                                    'options' => [
5923
                                                        'route' => '/:objective_id/goals',
5924
                                                        'constraints' => [
5925
                                                            'objective_id' => '[A-Za-z0-9\-]+\=*'
5926
                                                        ],
5927
                                                        'defaults' => [
12736 nelberth 5928
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewGoalsController',
12408 nelberth 5929
                                                            'action' => 'index'
5930
                                                        ]
5931
                                                    ],
5932
 
5933
                                                    'may_terminate' => true,
5934
                                                    'child_routes' => [
5935
                                                        'add' => [
5936
                                                            'type' => Literal::class,
5937
                                                            'options' => [
5938
                                                                'route' => '/add',
5939
                                                                'defaults' => [
12736 nelberth 5940
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewGoalsController',
12408 nelberth 5941
                                                                    'action' => 'add'
5942
                                                                ]
5943
                                                            ]
5944
                                                        ],
5945
                                                        'edit' => [
5946
                                                            'type' => Segment::class,
5947
                                                            'options' => [
5948
                                                                'route' => '/edit/:id',
5949
                                                                'constraints' => [
5950
                                                                    'id' => '[A-Za-z0-9\-]+\=*'
5951
                                                                ],
5952
                                                                'defaults' => [
12736 nelberth 5953
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewGoalsController',
12408 nelberth 5954
                                                                    'action' => 'edit'
5955
                                                                ]
5956
                                                            ]
5957
                                                        ],
5958
                                                        'delete' => [
5959
                                                            'type' => Segment::class,
5960
                                                            'options' => [
5961
                                                                'route' => '/delete/:id',
5962
                                                                'constraints' => [
5963
                                                                    'id' => '[A-Za-z0-9\-]+\=*'
5964
                                                                ],
5965
                                                                'defaults' => [
12736 nelberth 5966
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewGoalsController',
12408 nelberth 5967
                                                                    'action' => 'delete'
5968
                                                                ]
5969
                                                            ]
5970
                                                        ],
5971
                                                        'task' => [
5972
                                                            'type' => Segment::class,
5973
                                                            'options' => [
5974
                                                                'route' => '/:goal_id/task',
5975
                                                                'constraints' => [
5976
                                                                    'goal_id' => '[A-Za-z0-9\-]+\=*'
5977
                                                                ],
5978
                                                                'defaults' => [
12829 nelberth 5979
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController',
12408 nelberth 5980
                                                                    'action' => 'index'
5981
                                                                ]
5982
                                                            ],
5983
 
5984
                                                            'may_terminate' => true,
5985
                                                            'child_routes' => [
5986
                                                                'add' => [
5987
                                                                    'type' => Literal::class,
5988
                                                                    'options' => [
5989
                                                                        'route' => '/add',
5990
                                                                        'defaults' => [
12829 nelberth 5991
                                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController',
12408 nelberth 5992
                                                                            'action' => 'add'
5993
                                                                        ]
5994
                                                                    ]
5995
                                                                ],
5996
                                                                'edit' => [
5997
                                                                    'type' => Segment::class,
5998
                                                                    'options' => [
5999
                                                                        'route' => '/edit/:id',
6000
                                                                        'constraints' => [
6001
                                                                            'id' => '[A-Za-z0-9\-]+\=*'
6002
                                                                        ],
6003
                                                                        'defaults' => [
12829 nelberth 6004
                                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController',
12408 nelberth 6005
                                                                            'action' => 'edit'
6006
                                                                        ]
6007
                                                                    ]
6008
                                                                ],
6009
                                                                'delete' => [
6010
                                                                    'type' => Segment::class,
6011
                                                                    'options' => [
6012
                                                                        'route' => '/delete/:id',
6013
                                                                        'constraints' => [
6014
                                                                            'id' => '[A-Za-z0-9\-]+\=*'
6015
                                                                        ],
6016
                                                                        'defaults' => [
12829 nelberth 6017
                                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController',
12408 nelberth 6018
                                                                            'action' => 'delete'
6019
                                                                        ]
6020
                                                                    ]
6021
                                                                ],
6022
                                                                'view' => [
6023
                                                                    'type' => Segment::class,
6024
                                                                    'options' => [
6025
                                                                        'route' => '/view/:id',
6026
                                                                        'constraints' => [
6027
                                                                            'id' => '[A-Za-z0-9\-]+\=*'
6028
                                                                        ],
6029
                                                                        'defaults' => [
12829 nelberth 6030
                                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController',
12408 nelberth 6031
                                                                            'action' => 'view'
6032
                                                                        ]
6033
                                                                    ]
6034
                                                                ],
6035
                                                        ]
6036
                                                    ],
6037
                                                ]
6038
                                            ],
6039
                                            ]
6040
                                        ]
6041
                                        ,'feeds' => [
6042
                                            'type' => Literal::class,
6043
                                            'options' => [
11902 nelberth 6044
                                                'route' => '/feeds',
11908 nelberth 6045
 
11902 nelberth 6046
                                            ],
6047
                                            'may_terminate' => true,
6048
                                            'child_routes' => [
6049
                                                'timeline' => [
6050
                                                    'type' => Segment::class,
6051
                                                    'options' => [
11914 nelberth 6052
                                                        'route' => '/timeline[/urgent/:urgent][/topic_id/:topic_id]',
11902 nelberth 6053
                                                        'constraints' => [
6054
                                                            'hptg_id'=>'[A-Za-z0-9\-]+\=*',
6055
                                                            'topic_id' => '[A-Za-z0-9\-]+\=*',
6056
                                                            'urgent' => 'u',
6057
                                                        ],
6058
                                                        'defaults' => [
6059
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController',
6060
                                                            'action' => 'timeline'
6061
                                                        ]
6062
                                                    ]
6063
                                                ],
6064
                                                'onefeed' => [
6065
                                                    'type' => Segment::class,
6066
                                                    'options' => [
11997 nelberth 6067
                                                        'route' => '/onefeed[/:feed_id][/:topic_id]',
11902 nelberth 6068
                                                        'constraints' => [
6069
                                                            'group_id' => '[A-Za-z0-9\-]+\=*',
6070
                                                            'feed_id' => '[A-Za-z0-9\-]+\=*',
6071
                                                            'topic_id' => '[A-Za-z0-9\-]+\=*',
6072
                                                        ],
6073
                                                        'defaults' => [
6074
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController',
6075
                                                            'action' => 'oneFeed'
6076
                                                        ]
6077
                                                    ]
6078
                                                ],
6079
                                                'delete' => [
6080
                                                    'type' => Segment::class,
6081
                                                    'options' => [
6082
                                                        'route' => '/delete/:id',
6083
                                                        'constraints' => [
6084
                                                            'id' => '[A-Za-z0-9\-]+\=*',
6085
                                                        ],
6086
                                                        'defaults' => [
6087
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController',
6088
                                                            'action' => 'delete'
6089
                                                        ],
6090
                                                    ]
6091
                                                ],
6092
                                                'comments' => [
6093
                                                    'type' => Segment::class,
6094
                                                    'options' => [
6095
                                                        'route' => '/comments/:id',
6096
                                                        'constraints' => [
6097
                                                            'id' => '[A-Za-z0-9\-]+\=*',
6098
                                                        ],
6099
                                                        'defaults' => [
6100
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController',
6101
                                                            'action' => 'comment'
6102
                                                        ],
6103
                                                    ],
6104
                                                    'may_terminate' => true,
6105
                                                    'child_routes' => [
6106
                                                        'delete' => [
6107
                                                            'type' => Segment::class,
6108
                                                            'options' => [
6109
                                                                'route' => '/delete/:comment',
6110
                                                                'constraints' => [
6111
                                                                    'comment' => '[A-Za-z0-9\-]+\=*',
6112
                                                                ],
6113
                                                                'defaults' => [
6114
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController',
6115
                                                                    'action' => 'commentDelete'
6116
                                                                ]
6117
                                                            ]
6118
                                                        ],
6119
 
6120
                                                        'answer' => [
6121
                                                            'type' => Segment::class,
6122
                                                            'options' => [
6123
                                                                'route' => '/answer/:comment',
6124
                                                                'constraints' => [
6125
                                                                    'comment' => '[A-Za-z0-9\-]+\=*',
6126
                                                                ],
6127
                                                                'defaults' => [
6128
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController',
6129
                                                                    'action' => 'answer'
6130
                                                                ]
6131
                                                            ]
6132
                                                        ],
6133
                                                    ]
6134
                                                ],
6135
                                                'add' => [
6136
                                                    'type' => Segment::class,
6137
                                                    'options' => [
13857 nelberth 6138
                                                        'route' => '/add[/group/:group_id][/encoding/:encoding][/topic_id/:topic_id]',
11902 nelberth 6139
                                                        'constraints' => [
6140
                                                            'group_id' => '[A-Za-z0-9\-]+\=*',
6141
                                                            'topic_id' => '[A-Za-z0-9\-]+\=*',
6142
                                                            'encoding' => 'base64'
6143
                                                        ],
6144
                                                        'defaults' => [
6145
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController',
6146
                                                            'action' => 'add'
6147
                                                        ]
6148
                                                    ]
6149
                                                ],
6150
                                            ],
6151
                                        ],
7811 nelberth 6152
                                        'members' => [
7823 nelberth 6153
                                            'type' => Literal::class,
7811 nelberth 6154
                                            'options' => [
6155
                                                'route' => '/members',
6156
                                                'defaults' => [
6157
                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController',
6158
                                                    'action' => 'index'
6159
                                                ]
8012 nelberth 6160
                                            ],'may_terminate' => true,
6161
                                            'child_routes' => [
6162
                                                'invite' => [
6163
                                                    'type' => Segment::class,
6164
                                                    'options' => [
11083 nelberth 6165
                                                        'route' => '/invite/:user_id',
8054 nelberth 6166
                                                        'constraints' => [
11083 nelberth 6167
                                                            'user_id' => '[A-Za-z0-9\-]+\=*'
8054 nelberth 6168
                                                        ],
8012 nelberth 6169
                                                        'defaults' => [
6170
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController',
6171
                                                            'action' => 'invite'
6172
                                                        ]
6173
                                                    ]
6174
                                                ],
6175
                                                'edit' => [
6176
                                                    'type' => Segment::class,
6177
                                                    'options' => [
11083 nelberth 6178
                                                        'route' => '/edit/:user_id',
8012 nelberth 6179
                                                        'constraints' => [
11083 nelberth 6180
                                                            'user_id' => '[A-Za-z0-9\-]+\=*'
8012 nelberth 6181
                                                        ],
6182
                                                        'defaults' => [
6183
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController',
6184
                                                            'action' => 'edit'
6185
                                                        ]
6186
                                                    ]
6187
                                                ],
8054 nelberth 6188
                                                'delete' => [
8012 nelberth 6189
                                                    'type' => Segment::class,
6190
                                                    'options' => [
11083 nelberth 6191
                                                        'route' => '/delete[/:user_id]',
8012 nelberth 6192
                                                        'constraints' => [
11083 nelberth 6193
                                                            'user_id' => '[A-Za-z0-9\-]+\=*'
8012 nelberth 6194
                                                        ],
6195
                                                        'defaults' => [
6196
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController',
8054 nelberth 6197
                                                            'action' => 'delete'
8012 nelberth 6198
                                                        ]
6199
                                                    ]
6200
                                                ],
6201
                                            ]
7811 nelberth 6202
                                        ],
8686 nelberth 6203
                                        'urgent' => [
8702 nelberth 6204
                                            'type' => Segment::class,
6205
                                            'options' => [
6206
                                                'route' => '/urgent[/:urgent]',
6207
                                                'constraints' => [
6208
                                                    'urgent' => 'u'
8686 nelberth 6209
                                                ],
8702 nelberth 6210
                                                'defaults' => [
6211
                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewController',
6212
                                                    'action' => 'index'
6213
                                                ]
6214
                                            ]
6215
                                        ],
9095 nelberth 6216
                                        'calendar' => [
9924 nelberth 6217
                                            'type' => Literal::class,
9095 nelberth 6218
                                            'options' => [
9924 nelberth 6219
                                                'route' => '/calendar',
6220
 
9095 nelberth 6221
                                                'defaults' => [
6222
                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewCalendarController',
6223
                                                    'action' => 'index'
6224
                                                ]
9923 nelberth 6225
                                            ],'may_terminate' => true,
6226
                                            'child_routes' => [
6227
                                                'view' => [
9924 nelberth 6228
                                                    'type' => Segment::class,
9923 nelberth 6229
                                                    'options' => [
11083 nelberth 6230
                                                        'route' => '/view[/:feed_id]',
9924 nelberth 6231
                                                        'constraints' => [
11083 nelberth 6232
                                                            'feed_id' => '[A-Za-z0-9\-]+\=*'
9924 nelberth 6233
                                                        ],
9923 nelberth 6234
                                                        'defaults' => [
6235
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewCalendarController',
6236
                                                            'action' => 'view'
6237
                                                        ]
6238
                                                    ]
6239
                                                ],
9095 nelberth 6240
                                            ]
6241
                                        ],
9631 nelberth 6242
                                        'foro' => [
9621 nelberth 6243
                                            'type' => Literal::class,
9424 nelberth 6244
                                            'options' => [
9631 nelberth 6245
                                                'route' => '/foro',
10143 nelberth 6246
                                                'defaults' => [
6247
                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoController',
6248
                                                    'action' => 'index'
6249
                                                ]
9644 nelberth 6250
                                            ],
6251
                                            'may_terminate' => true,
9631 nelberth 6252
                                            'child_routes' => [
10150 nelberth 6253
                                                'view' => [
6254
                                                    'type' => Literal::class,
6255
                                                    'options' => [
6256
                                                        'route' => '/view',
6257
                                                        'defaults' => [
6258
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoController',
6259
                                                            'action' => 'view'
6260
                                                        ]
6261
                                                    ]
6262
                                                ],
9631 nelberth 6263
                                                'categories' => [
6264
                                                    'type' => Literal::class,
6265
                                                    'options' => [
6266
                                                        'route' => '/categories',
6267
                                                        'defaults' => [
6268
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController',
6269
                                                            'action' => 'index'
6270
                                                        ]
9638 nelberth 6271
                                                    ],
9644 nelberth 6272
                                                    'may_terminate' => true,
9640 nelberth 6273
                                                    'child_routes' => [
9720 nelberth 6274
                                                        'view' => [
6275
                                                            'type' => Literal::class,
6276
                                                            'options' => [
6277
                                                                'route' => '/view',
6278
                                                                'defaults' => [
6279
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController',
6280
                                                                    'action' => 'view'
6281
                                                                ]
6282
                                                            ]
6283
                                                        ],
9644 nelberth 6284
                                                        'add' => [
6285
                                                            'type' => Literal::class,
6286
                                                            'options' => [
6287
                                                                'route' => '/add',
6288
                                                                'defaults' => [
6289
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController',
6290
                                                                    'action' => 'add'
6291
                                                                ]
6292
                                                            ]
6293
                                                        ],
9643 nelberth 6294
                                                        'edit' => [
6295
                                                            'type' => Segment::class,
9640 nelberth 6296
                                                            'options' => [
11083 nelberth 6297
                                                                'route' => '/edit/:category_id',
9643 nelberth 6298
                                                                'constraints' => [
11083 nelberth 6299
                                                                    'category_id' => '[A-Za-z0-9\-]+\=*'
9643 nelberth 6300
                                                                ],
9640 nelberth 6301
                                                                'defaults' => [
6302
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController',
9643 nelberth 6303
                                                                    'action' => 'edit'
9640 nelberth 6304
                                                                ]
6305
                                                            ]
6306
                                                        ],
9643 nelberth 6307
                                                        'delete' => [
6308
                                                            'type' => Segment::class,
6309
                                                            'options' => [
11083 nelberth 6310
                                                                'route' => '/delete/:category_id',
9643 nelberth 6311
                                                                'constraints' => [
11083 nelberth 6312
                                                                    'category_id' => '[A-Za-z0-9\-]+\=*'
9643 nelberth 6313
                                                                ],
6314
                                                                'defaults' => [
6315
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController',
6316
                                                                    'action' => 'delete'
6317
                                                                ]
6318
                                                            ]
6319
                                                        ],
9760 nelberth 6320
                                                        'articles' => [
6321
                                                            'type' => Segment::class,
6322
                                                            'options' => [
11083 nelberth 6323
                                                                'route' => '/:category_id/articles',
9760 nelberth 6324
                                                                'constraints' => [
11083 nelberth 6325
                                                                    'category_id' => '[A-Za-z0-9\-]+\=*'
9760 nelberth 6326
                                                                ],
6327
                                                                'defaults' => [
6328
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesController',
6329
                                                                    'action' => 'index'
6330
                                                                ]
9845 nelberth 6331
                                                            ],
6332
                                                            'may_terminate' => true,
6333
                                                            'child_routes' => [
6334
                                                                'add' => [
6335
                                                                    'type' => Literal::class,
6336
                                                                    'options' => [
6337
                                                                        'route' => '/add',
6338
                                                                        'defaults' => [
6339
                                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesController',
6340
                                                                            'action' => 'add'
6341
                                                                        ]
6342
                                                                    ]
6343
                                                                ],
6344
                                                                'edit' => [
6345
                                                                    'type' => Segment::class,
6346
                                                                    'options' => [
11083 nelberth 6347
                                                                        'route' => '/edit/:article_id',
9845 nelberth 6348
                                                                        'constraints' => [
11083 nelberth 6349
                                                                            'articles_id' => '[A-Za-z0-9\-]+\=*'
9845 nelberth 6350
                                                                        ],
6351
                                                                        'defaults' => [
6352
                                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesController',
6353
                                                                            'action' => 'edit'
6354
                                                                        ]
6355
                                                                    ]
6356
                                                                ],
6357
 
6358
                                                                'delete' => [
6359
                                                                    'type' => Segment::class,
6360
                                                                    'options' => [
11083 nelberth 6361
                                                                        'route' => '/delete/:article_id',
9845 nelberth 6362
                                                                        'constraints' => [
11083 nelberth 6363
                                                                            'articles_id' => '[A-Za-z0-9\-]+\=*'
9845 nelberth 6364
                                                                        ],
6365
                                                                        'defaults' => [
6366
                                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesController',
6367
                                                                            'action' => 'delete'
6368
                                                                        ]
6369
                                                                    ]
6370
                                                                ],
6371
                                                                'view' => [
6372
                                                                    'type' => Segment::class,
6373
                                                                    'options' => [
11083 nelberth 6374
                                                                        'route' => '/view/:article_id',
9845 nelberth 6375
                                                                        'constraints' => [
11083 nelberth 6376
                                                                            'articles_id' => '[A-Za-z0-9\-]+\=*'
9845 nelberth 6377
                                                                        ],
6378
                                                                        'defaults' => [
9921 nelberth 6379
                                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesViewController',
6380
                                                                            'action' => 'index'
9845 nelberth 6381
                                                                        ]
6382
                                                                    ]
6383
                                                                ],
9760 nelberth 6384
                                                            ]
6385
                                                        ],
9640 nelberth 6386
                                                    ],
9424 nelberth 6387
                                                ],
6388
                                            ]
6389
                                        ],
7483 nelberth 6390
                                        'topic' => [
8649 nelberth 6391
                                            'type' => Literal::class,
7483 nelberth 6392
                                            'options' => [
8649 nelberth 6393
                                                'route' => '/topic',
7483 nelberth 6394
                                                'defaults' => [
7491 nelberth 6395
                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController',
7483 nelberth 6396
                                                    'action' => 'index'
6397
                                                ]
6398
                                            ],'may_terminate' => true,
6399
                                            'child_routes' => [
6400
                                                'add' => [
6401
                                                    'type' => Literal::class,
6402
                                                    'options' => [
6403
                                                        'route' => '/add',
6404
                                                        'defaults' => [
7506 nelberth 6405
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController',
7483 nelberth 6406
                                                            'action' => 'add'
6407
                                                        ]
6408
                                                    ]
6409
                                                ],
6410
                                                'edit' => [
6411
                                                    'type' => Segment::class,
6412
                                                    'options' => [
11083 nelberth 6413
                                                        'route' => '/edit/:topic_id',
7483 nelberth 6414
                                                        'constraints' => [
11083 nelberth 6415
                                                            'topic_id' => '[A-Za-z0-9\-]+\=*'
7483 nelberth 6416
                                                        ],
6417
                                                        'defaults' => [
7491 nelberth 6418
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController',
7483 nelberth 6419
                                                            'action' => 'edit'
6420
                                                        ]
6421
                                                    ]
6422
                                                ],
7636 nelberth 6423
                                                'view' => [
7629 nelberth 6424
                                                    'type' => Segment::class,
6425
                                                    'options' => [
11083 nelberth 6426
                                                        'route' => '/view[/:topic_id]',
7629 nelberth 6427
                                                        'constraints' => [
11083 nelberth 6428
                                                            'topic_id' => '[A-Za-z0-9\-]+\=*'
7629 nelberth 6429
                                                        ],
6430
                                                        'defaults' => [
7635 nelberth 6431
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewController',
7629 nelberth 6432
                                                            'action' => 'index'
6433
                                                        ]
6434
                                                    ]
6435
                                                ],
8686 nelberth 6436
 
7483 nelberth 6437
                                                'delete' => [
6438
                                                    'type' => Segment::class,
6439
                                                    'options' => [
11083 nelberth 6440
                                                        'route' => '/delete/:topic_id',
7483 nelberth 6441
                                                        'constraints' => [
11083 nelberth 6442
                                                            'topic_id' => '[A-Za-z0-9\-]+\=*'
7483 nelberth 6443
                                                        ],
6444
                                                        'defaults' => [
7491 nelberth 6445
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController',
7483 nelberth 6446
                                                            'action' => 'delete'
6447
                                                        ]
6448
                                                    ]
6449
                                                ]
6450
                                            ],
6451
                                        ],
6452
 
6453
                                    ],
6454
 
4411 nelberth 6455
                            ],
6456
                        ]
4388 nelberth 6457
                    ],
1333 efrain 6458
                ]
6459
            ],
7224 nelberth 6460
 
4588 nelberth 6461
 
1333 efrain 6462
            'my-trainer' => [
6463
                'type' => Literal::class,
6464
                'options' => [
6465
                    'route' => '/my-trainer',
6466
                    'defaults' => [
6467
                        'controller' => '\LeadersLinked\Controller\UnknownController',
6468
                        'action' => 'index'
6469
                    ]
6470
                ],
6471
                'may_terminate' => true,
6472
                'child_routes' => [
8462 eleazar 6473
                    'category' => [
6474
                        'type' => Literal::class,
6475
                        'options' => [
6476
                            'route' => '/category',
6477
                            'defaults' => [
8529 eleazar 6478
                                'controller' => '\LeadersLinked\Controller\MyTrainerCategoriesController',
8462 eleazar 6479
                                'action' => 'index'
6480
                            ]
6481
                        ],
6482
                        'may_terminate' => true,
6483
                        'child_routes' => [
6484
                            'add' => [
6485
                                'type' => Literal::class,
6486
                                'options' => [
6487
                                    'route' => '/add',
6488
                                    'defaults' => [
8529 eleazar 6489
                                        'controller' => '\LeadersLinked\Controller\MyTrainerCategoriesController',
8462 eleazar 6490
                                        'action' => 'add'
6491
                                    ]
6492
                                ]
6493
                            ],
6494
                            'edit' => [
6495
                                'type' => Segment::class,
6496
                                'options' => [
6497
                                    'route' => '/edit/:id',
6498
                                    'constraints' => [
6499
                                        'id' => '[A-Za-z0-9\-]+\=*'
6500
                                    ],
6501
                                    'defaults' => [
8529 eleazar 6502
                                        'controller' => '\LeadersLinked\Controller\MyTrainerCategoriesController',
8462 eleazar 6503
                                        'action' => 'edit'
6504
                                    ]
6505
                                ]
6506
                            ],
6507
                            'delete' => [
6508
                                'type' => Segment::class,
6509
                                'options' => [
6510
                                    'route' => '/delete/:id',
6511
                                    'constraints' => [
6512
                                        'id' => '[A-Za-z0-9\-]+\=*'
6513
                                    ],
6514
                                    'defaults' => [
8529 eleazar 6515
                                        'controller' => '\LeadersLinked\Controller\MyTrainerCategoriesController',
8462 eleazar 6516
                                        'action' => 'delete'
6517
                                    ]
6518
                                ]
6519
                            ]
6520
                        ]
6521
                    ],
6522
                    'question' => [
12250 eleazar 6523
                        'type' => segment::class,
8462 eleazar 6524
                        'options' => [
12260 eleazar 6525
                            'route' => '/question',
8462 eleazar 6526
                            'defaults' => [
9350 eleazar 6527
                                'controller' => '\LeadersLinked\Controller\MyTrainerQuestionController',
8462 eleazar 6528
                                'action' => 'index'
6529
                            ]
6530
                        ],
6531
                        'may_terminate' => true,
6532
                        'child_routes' => [
6533
                            'add' => [
6534
                                'type' => Literal::class,
6535
                                'options' => [
6536
                                    'route' => '/add',
6537
                                    'defaults' => [
9350 eleazar 6538
                                        'controller' => '\LeadersLinked\Controller\MyTrainerQuestionController',
8462 eleazar 6539
                                        'action' => 'add'
6540
                                    ]
6541
                                ]
6542
                            ],
6543
                            'edit' => [
6544
                                'type' => Segment::class,
6545
                                'options' => [
6546
                                    'route' => '/edit/:id',
6547
                                    'constraints' => [
6548
                                        'id' => '[A-Za-z0-9\-]+\=*'
6549
                                    ],
6550
                                    'defaults' => [
9350 eleazar 6551
                                        'controller' => '\LeadersLinked\Controller\MyTrainerQuestionController',
8462 eleazar 6552
                                        'action' => 'edit'
6553
                                    ]
6554
                                ]
6555
                            ],
6556
                            'delete' => [
6557
                                'type' => Segment::class,
6558
                                'options' => [
12193 eleazar 6559
                                    'route' => '/delete/:id',
6560
                                    'constraints' => [
6561
                                        'id' => '[A-Za-z0-9\-]+\=*'
6562
                                    ],
8462 eleazar 6563
                                    'defaults' => [
9350 eleazar 6564
                                        'controller' => '\LeadersLinked\Controller\MyTrainerQuestionController',
8462 eleazar 6565
                                        'action' => 'delete'
6566
                                    ]
6567
                                ]
11195 eleazar 6568
                            ],
6569
                            'view' => [
6570
                                'type' => Segment::class,
6571
                                'options' => [
12280 eleazar 6572
                                    'route' => '/:id/view',
11195 eleazar 6573
                                    'constraints' => [
6574
                                        'id' => '[A-Za-z0-9\-]+\=*'
6575
                                    ],
6576
                                    'defaults' => [
12260 eleazar 6577
                                        'controller' => '\LeadersLinked\Controller\MyTrainerQuestionViewController',
6578
                                        'action' => 'index'
11195 eleazar 6579
                                    ]
6580
                                ]
11303 eleazar 6581
                            ],
11840 eleazar 6582
                            'answer' => [
11322 eleazar 6583
                                'type' => Segment::class,
8462 eleazar 6584
                                'options' => [
11852 eleazar 6585
                                    'route' => '/:id/answer',
11337 eleazar 6586
                                    'constraints' => [
6587
                                        'id' => '[A-Za-z0-9\-]+\=*'
6588
                                    ],
8462 eleazar 6589
                                    'defaults' => [
10602 eleazar 6590
                                        'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
11840 eleazar 6591
                                        'action' => 'index'
8462 eleazar 6592
                                    ]
11810 eleazar 6593
                                ],
6594
                                'may_terminate' => true,
6595
                                'child_routes' => [
11840 eleazar 6596
                                    'add' => [
6597
                                        'type' => Segment::class,
6598
                                        'options' => [
6599
                                            'route' => '/add[/:id]',
6600
                                            'constraints' => [
6601
                                                'id' => '[A-Za-z0-9\-]+\=*'
6602
                                            ],
6603
                                            'defaults' => [
6604
                                                'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
6605
                                                'action' => 'add'
6606
                                            ]
6607
                                        ]
6608
                                    ],
6609
                                    'edit' => [
6610
                                        'type' => Segment::class,
6611
                                        'options' => [
11860 eleazar 6612
                                            'route' => '/edit',
6613
 
11840 eleazar 6614
                                            'defaults' => [
6615
                                                'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
6616
                                                'action' => 'edit'
6617
                                            ]
6618
                                        ]
6619
                                    ],
11810 eleazar 6620
                                    'delete' => [
6621
                                        'type' => Segment::class,
6622
                                        'options' => [
11859 eleazar 6623
                                            'route' => '/delete',
11810 eleazar 6624
                                            'defaults' => [
11812 eleazar 6625
                                                'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
11840 eleazar 6626
                                                'action' => 'delete'
11810 eleazar 6627
                                            ]
6628
                                        ]
6629
                                    ],
11884 eleazar 6630
                                    'feed' => [
6631
                                        'type' => Segment::class,
6632
                                        'options' => [
6633
                                            'route' => '/feed',
6634
                                            'defaults' => [
6635
                                                'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
6636
                                                'action' => 'feed'
6637
                                            ],
6638
                                        ],
6639
                                    ],
11913 eleazar 6640
                                    'timeline' => [
6641
                                        'type' => Segment::class,
6642
                                        'options' => [
6643
                                            'route' => '/timeline',
6644
                                            'defaults' => [
11921 eleazar 6645
                                                'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
11913 eleazar 6646
                                                'action' => 'timeline'
11921 eleazar 6647
                                            ],
6648
                                        ],
11913 eleazar 6649
                                    ],
11840 eleazar 6650
                                    'comments' => [
6651
                                        'type' => Segment::class,
6652
                                        'options' => [
11860 eleazar 6653
                                            'route' => '/comments',
6654
 
11840 eleazar 6655
                                            'defaults' => [
6656
                                                'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
6657
                                                'action' => 'comment'
6658
                                            ],
6659
                                        ],
6660
                                        'may_terminate' => true,
6661
                                        'child_routes' => [
6662
                                            'delete' => [
6663
                                                'type' => Segment::class,
6664
                                                'options' => [
6665
                                                    'route' => '/delete/:comment',
6666
                                                    'constraints' => [
6667
                                                        'comment' => '[A-Za-z0-9\-]+\=*',
6668
                                                    ],
6669
                                                    'defaults' => [
6670
                                                        'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
6671
                                                        'action' => 'commentDelete'
6672
                                                    ]
6673
                                                ]
6674
                                            ],
11948 eleazar 6675
                                            'answer' => [
6676
                                                'type' => Segment::class,
6677
                                                'options' => [
6678
                                                    'route' => '/answer/:comment',
6679
                                                    'constraints' => [
6680
                                                        'comment' => '[A-Za-z0-9\-]+\=*',
6681
                                                    ],
6682
                                                    'defaults' => [
6683
                                                        'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
6684
                                                        'action' => 'answer'
6685
                                                    ]
6686
                                                ]
6687
                                            ],
11840 eleazar 6688
                                        ]
6689
                                    ],
6690
                                ],
11810 eleazar 6691
                            ],
11840 eleazar 6692
                        ],
8462 eleazar 6693
                    ],
1333 efrain 6694
                ]
6695
            ],
13354 eleazar 6696
 
6697
            'development-and-content' => [
15028 efrain 6698
                'type' => Literal::class,
13354 eleazar 6699
                'options' => [
15028 efrain 6700
                    'route' => '/development-and-content',
13354 eleazar 6701
                    'defaults' => [
6702
                        'controller' => '\LeadersLinked\Controller\DevelopmentContentController',
14992 kerby 6703
                        'action' => 'index',
13354 eleazar 6704
                    ]
6705
                ],
15028 efrain 6706
 
6707
 
13354 eleazar 6708
                'may_terminate' => true,
6709
                'child_routes' => [
15028 efrain 6710
                    'listing' => [
15014 efrain 6711
                        'type' => Segment::class,
14743 kerby 6712
                        'options' => [
15028 efrain 6713
                            'route' => '/listing[/:category_id]',
6714
                            'constraints' => [
6715
                                'category_id' => '[A-Za-z0-9\-]+\=*'
6716
                            ],
14743 kerby 6717
                            'defaults' => [
6718
                                'controller' => '\LeadersLinked\Controller\DevelopmentContentController',
15028 efrain 6719
                                'action' => 'listing'
14743 kerby 6720
                            ]
6721
                        ]
6722
                    ],
15028 efrain 6723
                    'add' => [
13354 eleazar 6724
                        'type' => Segment::class,
6725
                        'options' => [
15028 efrain 6726
                            'route' => '/add',
13354 eleazar 6727
                            'defaults' => [
6728
                                'controller' => '\LeadersLinked\Controller\DevelopmentContentController',
15028 efrain 6729
                                'action' => 'add'
13354 eleazar 6730
                            ]
6731
                        ]
6732
                    ],
6733
                    'edit' => [
6734
                        'type' => Segment::class,
6735
                        'options' => [
14972 kerby 6736
                            'route' => '/edit/:id',
14743 kerby 6737
                            'constraints' => [
6738
                                'id' => '[A-Za-z0-9\-]+\=*'
6739
                            ],
13354 eleazar 6740
                            'defaults' => [
6741
                                'controller' => '\LeadersLinked\Controller\DevelopmentContentController',
6742
                                'action' => 'edit'
6743
                            ]
6744
                        ]
6745
                    ],
14743 kerby 6746
                    'aproved' => [
6747
                        'type' => Segment::class,
6748
                        'options' => [
14972 kerby 6749
                            'route' => '/aproved/:id',
14743 kerby 6750
                            'constraints' => [
6751
                                'id' => '[A-Za-z0-9\-]+\=*'
6752
                            ],
6753
                            'defaults' => [
6754
                                'controller' => '\LeadersLinked\Controller\DevelopmentContentController',
6755
                                'action' => 'aproved'
6756
                            ]
6757
                        ]
6758
                    ],
13354 eleazar 6759
                    'delete' => [
6760
                        'type' => Segment::class,
6761
                        'options' => [
14972 kerby 6762
                            'route' => '/delete/:id',
14743 kerby 6763
                            'constraints' => [
6764
                                'id' => '[A-Za-z0-9\-]+\=*'
6765
                            ],
13354 eleazar 6766
                            'defaults' => [
6767
                                'controller' => '\LeadersLinked\Controller\DevelopmentContentController',
6768
                                'action' => 'delete'
6769
                            ]
6770
                        ]
6771
                    ],
15029 kerby 6772
                    'category' => [
6773
                        'type' => Literal::class,
14972 kerby 6774
                        'options' => [
15029 kerby 6775
                            'route' => '/category',
14972 kerby 6776
                            'defaults' => [
15029 kerby 6777
                                'controller' => '\LeadersLinked\Controller\DevelopmentContentCategoryController',
6778
                                'action' => 'index'
6779
                            ]
14972 kerby 6780
                        ],
6781
                        'may_terminate' => true,
6782
                        'child_routes' => [
15029 kerby 6783
                            'add' => [
6784
                                'type' => Literal::class,
6785
                                'options' => [
6786
                                    'route' => '/add',
6787
                                    'defaults' => [
6788
                                        'controller' => '\LeadersLinked\Controller\DevelopmentContentCategoryController',
6789
                                        'action' => 'add'
6790
                                    ]
6791
                                ]
6792
                            ],
6793
                            'edit' => [
14972 kerby 6794
                                'type' => Segment::class,
6795
                                'options' => [
15029 kerby 6796
                                    'route' => '/edit/:id',
14972 kerby 6797
                                    'constraints' => [
15029 kerby 6798
                                        'id' => '[A-Za-z0-9\-]+\=*'
14972 kerby 6799
                                    ],
6800
                                    'defaults' => [
15029 kerby 6801
                                        'controller' => '\LeadersLinked\Controller\DevelopmentContentCategoryController',
6802
                                        'action' => 'edit'
14972 kerby 6803
                                    ]
6804
                                ]
6805
                            ],
15029 kerby 6806
                            'delete' => [
14972 kerby 6807
                                'type' => Segment::class,
6808
                                'options' => [
15029 kerby 6809
                                    'route' => '/delete/:id',
14972 kerby 6810
                                    'constraints' => [
15029 kerby 6811
                                        'id' => '[A-Za-z0-9\-]+\=*'
14972 kerby 6812
                                    ],
6813
                                    'defaults' => [
15029 kerby 6814
                                        'controller' => '\LeadersLinked\Controller\DevelopmentContentCategoryController',
6815
                                        'action' => 'delete'
14972 kerby 6816
                                    ]
6817
                                ]
15029 kerby 6818
                            ]
14972 kerby 6819
                        ]
15029 kerby 6820
                    ]
13354 eleazar 6821
                ]
6822
            ],
1333 efrain 6823
 
1 www 6824
        ]
6825
    ],
6826
    'controllers' => [
6827
        'factories' => [
6828
            \LeadersLinked\Controller\AuthController::class => \LeadersLinked\Factory\Controller\AuthControllerFactory::class,
6829
            \LeadersLinked\Controller\FeedController::class => \LeadersLinked\Factory\Controller\FeedControllerFactory::class,
6830
            \LeadersLinked\Controller\FollowerController::class => \LeadersLinked\Factory\Controller\FollowerControllerFactory::class,
6831
            \LeadersLinked\Controller\JobController::class => \LeadersLinked\Factory\Controller\JobControllerFactory::class,
1469 eleazar 6832
            \LeadersLinked\Controller\RecruitmentSelectionController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionFactory::class,
15461 efrain 6833
            \LeadersLinked\Controller\RecruitmentSelectionVacancyController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionVacancyFactory::class,
6834
            \LeadersLinked\Controller\RecruitmentSelectionApplicationController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionApplicationFactory::class,
6835
            \LeadersLinked\Controller\RecruitmentSelectionFileController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionFileControllerFactory::class,
1709 eleazar 6836
            \LeadersLinked\Controller\RecruitmentSelectionInterviewController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionInterviewFactory::class,
15461 efrain 6837
          /*
6838
            \LeadersLinked\Controller\RecruitmentSelectionInterviewController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionInterviewFactory::class,
1712 eleazar 6839
            \LeadersLinked\Controller\RecruitmentSelectionInterviewFormController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionInterviewFormFactory::class,
8797 eleazar 6840
            \LeadersLinked\Controller\RecruitmentSelectionInterviewFileController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionInterviewFileControllerFactory::class,
1385 eleazar 6841
            \LeadersLinked\Controller\RecruitmentSelectionVacancyController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionVacancyFactory::class,
1459 eleazar 6842
            \LeadersLinked\Controller\RecruitmentSelectionCandidateController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionCandidateFactory::class,
15461 efrain 6843
            */
1 www 6844
            \LeadersLinked\Controller\ProfileController::class => \LeadersLinked\Factory\Controller\ProfileControllerFactory::class,
6845
            \LeadersLinked\Controller\CompanyController::class => \LeadersLinked\Factory\Controller\CompanyControllerFactory::class,
6846
            \LeadersLinked\Controller\CompanySizeController::class => \LeadersLinked\Factory\Controller\CompanySizeControllerFactory::class,
15460 efrain 6847
            \LeadersLinked\Controller\CountriesController::class => \LeadersLinked\Factory\Controller\CountriesControllerFactory::class,
6848
 
1115 geraldo 6849
            \LeadersLinked\Controller\BehaviorsController::class => \LeadersLinked\Factory\Controller\BehaviorsControllerFactory::class,
1 www 6850
            \LeadersLinked\Controller\CompetencyTypeController::class => \LeadersLinked\Factory\Controller\CompetencyTypeControllerFactory::class,
6851
            \LeadersLinked\Controller\CompetencyController::class => \LeadersLinked\Factory\Controller\CompetencyControllerFactory::class,
6852
            \LeadersLinked\Controller\DegreeController::class => \LeadersLinked\Factory\Controller\DegreeControllerFactory::class,
13355 eleazar 6853
            \LeadersLinked\Controller\DevelopmentContentCategoryController::class => \LeadersLinked\Factory\Controller\DevelopmentContentCategoryControllerFactory::class,
6854
            \LeadersLinked\Controller\DevelopmentContentController::class => \LeadersLinked\Factory\Controller\DevelopmentContentControllerFactory::class,
1 www 6855
            \LeadersLinked\Controller\EmailTemplateController::class => \LeadersLinked\Factory\Controller\EmailTemplateControllerFactory::class,
6856
            \LeadersLinked\Controller\PushTemplateController::class => \LeadersLinked\Factory\Controller\PushTemplateControllerFactory::class,
6857
            \LeadersLinked\Controller\GroupTypeController::class => \LeadersLinked\Factory\Controller\GroupTypeControllerFactory::class,
6858
            \LeadersLinked\Controller\IndustryController::class => \LeadersLinked\Factory\Controller\IndustryControllerFactory::class,
6859
            \LeadersLinked\Controller\JobCategoryController::class => \LeadersLinked\Factory\Controller\JobCategoryControllerFactory::class,
28 efrain 6860
            \LeadersLinked\Controller\JobDescriptionController::class => \LeadersLinked\Factory\Controller\JobDescriptionControllerFactory::class,
1 www 6861
            \LeadersLinked\Controller\PageController::class => \LeadersLinked\Factory\Controller\PageControllerFactory::class,
67 efrain 6862
            \LeadersLinked\Controller\PositionController::class => \LeadersLinked\Factory\Controller\PositionControllerFactory::class,
1 www 6863
            \LeadersLinked\Controller\PostController::class => \LeadersLinked\Factory\Controller\PostControllerFactory::class,
6864
            \LeadersLinked\Controller\SkillController::class => \LeadersLinked\Factory\Controller\SkillControllerFactory::class,
6865
            \LeadersLinked\Controller\UserController::class => \LeadersLinked\Factory\Controller\UserControllerFactory::class,
6866
            \LeadersLinked\Controller\DashboardController::class => \LeadersLinked\Factory\Controller\DashboardControllerFactory::class,
115 efrain 6867
            \LeadersLinked\Controller\SelfEvaluationController::class => \LeadersLinked\Factory\Controller\SelfEvaluationControllerFactory::class,
6868
            \LeadersLinked\Controller\SelfEvaluationFormController::class => \LeadersLinked\Factory\Controller\SelfEvaluationFormControllerFactory::class,
1089 geraldo 6869
            \LeadersLinked\Controller\SelfEvaluationFormUserController::class => \LeadersLinked\Factory\Controller\SelfEvaluationFormUserControllerFactory::class,
247 geraldo 6870
            \LeadersLinked\Controller\SelfEvaluationReviewController::class => \LeadersLinked\Factory\Controller\SelfEvaluationReviewControllerFactory::class,
4375 eleazar 6871
            \LeadersLinked\Controller\SurveyController::class => \LeadersLinked\Factory\Controller\SurveyControllerFactory::class,
6872
            \LeadersLinked\Controller\SurveyFormController::class => \LeadersLinked\Factory\Controller\SurveyFormControllerFactory::class,
5868 eleazar 6873
            \LeadersLinked\Controller\SurveyReportController::class => \LeadersLinked\Factory\Controller\SurveyReportControllerFactory::class,
5287 eleazar 6874
            \LeadersLinked\Controller\SurveyTestController::class => \LeadersLinked\Factory\Controller\SurveyTestControllerFactory::class,
7218 eleazar 6875
            \LeadersLinked\Controller\OrganizationalClimateController::class => \LeadersLinked\Factory\Controller\OrganizationalClimateControllerFactory::class,
6876
            \LeadersLinked\Controller\OrganizationalClimateFormController::class => \LeadersLinked\Factory\Controller\OrganizationalClimateFormControllerFactory::class,
6877
            \LeadersLinked\Controller\OrganizationalClimateReportController::class => \LeadersLinked\Factory\Controller\OrganizationalClimateReportControllerFactory::class,
6878
            \LeadersLinked\Controller\OrganizationalClimateTestController::class => \LeadersLinked\Factory\Controller\OrganizationalClimateTestControllerFactory::class,
15394 efrain 6879
            \LeadersLinked\Controller\PerformanceEvaluationController::class => \LeadersLinked\Factory\Controller\PerformanceEvaluationControllerFactory::class,
987 geraldo 6880
            \LeadersLinked\Controller\PerformanceEvaluationFormController::class => \LeadersLinked\Factory\Controller\PerformanceEvaluationFormControllerFactory::class,
15394 efrain 6881
            \LeadersLinked\Controller\PerformanceEvaluationTestController::class => \LeadersLinked\Factory\Controller\PerformanceEvaluationTestControllerFactory::class,
9335 eleazar 6882
            \LeadersLinked\Controller\MyTrainerCategoriesController::class => \LeadersLinked\Factory\Controller\MyTrainerCategoriesControllerFactory::class,
12286 eleazar 6883
            \LeadersLinked\Controller\MyTrainerQuestionViewController::class => \LeadersLinked\Factory\Controller\MyTrainerQuestionViewControllerFactory::class,
9350 eleazar 6884
            \LeadersLinked\Controller\MyTrainerQuestionController::class => \LeadersLinked\Factory\Controller\MyTrainerQuestionControllerFactory::class,
10423 eleazar 6885
            \LeadersLinked\Controller\MyTrainerAnswerController::class => \LeadersLinked\Factory\Controller\MyTrainerAnswerControllerFactory::class,
15394 efrain 6886
 
1 www 6887
            \LeadersLinked\Controller\MicrolearningController::class => \LeadersLinked\Factory\Controller\MicrolearningControllerFactory::class,
66 efrain 6888
            \LeadersLinked\Controller\MicrolearningQuizController::class => \LeadersLinked\Factory\Controller\MicrolearningQuizControllerFactory::class,
6889
            \LeadersLinked\Controller\MicrolearningQuestionController::class => \LeadersLinked\Factory\Controller\MicrolearningQuestionControllerFactory::class,
6890
            \LeadersLinked\Controller\MicrolearningAnswerController::class => \LeadersLinked\Factory\Controller\MicrolearningAnswerControllerFactory::class,
1 www 6891
            \LeadersLinked\Controller\MicrolearningTopicController::class => \LeadersLinked\Factory\Controller\MicrolearningTopicControllerFactory::class,
6892
            \LeadersLinked\Controller\MicrolearningCapsuleController::class => \LeadersLinked\Factory\Controller\MicrolearningCapsuleControllerFactory::class,
6893
            \LeadersLinked\Controller\MicrolearningSlideController::class => \LeadersLinked\Factory\Controller\MicrolearningSlideControllerFactory::class,
6894
            \LeadersLinked\Controller\MicrolearningAccessForStudentsController::class => \LeadersLinked\Factory\Controller\MicrolearningAccessForStudentsControllerFactory::class,
6895
            \LeadersLinked\Controller\MicrolearningStudentsController::class => \LeadersLinked\Factory\Controller\MicrolearningStudentsControllerFactory::class,
6896
            \LeadersLinked\Controller\MicrolearningReportsController::class => \LeadersLinked\Factory\Controller\MicrolearningReportsControllerFactory::class,
6897
            \LeadersLinked\Controller\MicrolearningExtendUserCompanyController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserCompanyControllerFactory::class,
6898
            \LeadersLinked\Controller\MicrolearningExtendUserFunctionController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserFunctionControllerFactory::class,
6899
            \LeadersLinked\Controller\MicrolearningExtendUserGroupController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserGroupControllerFactory::class,
6900
            \LeadersLinked\Controller\MicrolearningExtendUserInstitutionController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserInstitutionControllerFactory::class,
6901
            \LeadersLinked\Controller\MicrolearningExtendUserPartnerController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserPartnerControllerFactory::class,
6902
            \LeadersLinked\Controller\MicrolearningExtendUserProgramController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserProgramControllerFactory::class,
6903
            \LeadersLinked\Controller\MicrolearningExtendUserSectorController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserSectorControllerFactory::class,
6904
            \LeadersLinked\Controller\MicrolearningExtendUserStudentTypeController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserStudentTypeControllerFactory::class,
15394 efrain 6905
            \LeadersLinked\Controller\MicrolearningExtendUserCountryController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserCountryControllerFactory::class,
1 www 6906
            \LeadersLinked\Controller\StorageController::class => \LeadersLinked\Factory\Controller\StorageControllerFactory::class,
15336 efrain 6907
            \LeadersLinked\Controller\StorageNetworkController::class => \LeadersLinked\Factory\Controller\StorageNetworkControllerFactory::class,
2232 nelberth 6908
            \LeadersLinked\Controller\PlanningObjectivesAndGoalsController::class => \LeadersLinked\Factory\Controller\PlanningObjectivesAndGoalsControllerFactory::class,
2228 nelberth 6909
            \LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController::class => \LeadersLinked\Factory\Controller\PlanningObjectivesAndGoalsObjectivesControllerFactory::class,
2327 nelberth 6910
            \LeadersLinked\Controller\PlanningObjectivesAndGoalsGoalsController::class => \LeadersLinked\Factory\Controller\PlanningObjectivesAndGoalsGoalsControllerFactory::class,
2517 nelberth 6911
            \LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController::class => \LeadersLinked\Factory\Controller\PlanningObjectivesAndGoalsTaskControllerFactory::class,
15336 efrain 6912
            \LeadersLinked\Controller\PrivateNetworksController::class => \LeadersLinked\Factory\Controller\PrivateNetworksControllerFactory::class,
6913
            \LeadersLinked\Controller\MyPrivateNetworkController::class => \LeadersLinked\Factory\Controller\MyPrivateNetworkControllerFactory::class,
4377 nelberth 6914
            \LeadersLinked\Controller\HighPerformanceTeamsController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsControllerFactory::class,
7224 nelberth 6915
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsControllerFactory::class,
9095 nelberth 6916
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewCalendarController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewCalendarControllerFactory::class,
9619 nelberth 6917
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewForoCategoriesControllerFactory::class,
9764 nelberth 6918
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewForoArticlesControllerFactory::class,
10143 nelberth 6919
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewForoControllerFactory::class,
9921 nelberth 6920
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesViewController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewForoArticlesViewControllerFactory::class,
7308 nelberth 6921
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewControllerFactory::class,
12433 nelberth 6922
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewObjectivesControllerFactory::class,
12736 nelberth 6923
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewGoalsController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewGoalsControllerFactory::class,
12835 nelberth 6924
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewTaskControllerFactory::class,
11898 nelberth 6925
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewFeedControllerFactory::class,
7494 nelberth 6926
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewTopicControllerFactory::class,
7811 nelberth 6927
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsMembersControllerFactory::class,
13014 nelberth 6928
            \LeadersLinked\Controller\ChatController::class => \LeadersLinked\Factory\Controller\ChatControllerFactory::class,
13010 nelberth 6929
            \LeadersLinked\Controller\CommunicationController::class => \LeadersLinked\Factory\Controller\CommunicationControllerFactory::class,
13675 nelberth 6930
            \LeadersLinked\Controller\CommunicationInboxController::class => \LeadersLinked\Factory\Controller\CommunicationInboxControllerFactory::class,
13528 nelberth 6931
            \LeadersLinked\Controller\InMailController::class => \LeadersLinked\Factory\Controller\InMailControllerFactory::class,
1333 efrain 6932
 
6933
 
15387 efrain 6934
            \LeadersLinked\Controller\ReportController::class => \LeadersLinked\Factory\Controller\ReportControllerFactory::class,
1333 efrain 6935
            \LeadersLinked\Controller\UnknownController::class => \LeadersLinked\Factory\Controller\UnknownControllerFactory::class,
66 efrain 6936
            \LeadersLinked\Controller\TestController::class => \LeadersLinked\Factory\Controller\TestControllerFactory::class,
15392 efrain 6937
 
6938
            \LeadersLinked\Controller\AptitudeController::class => \LeadersLinked\Factory\Controller\AptitudeControllerFactory::class,
6939
            \LeadersLinked\Controller\HobbyAndInterestController::class => \LeadersLinked\Factory\Controller\HobbyAndInterestControllerFactory::class,
15401 efrain 6940
 
6941
            \LeadersLinked\Controller\DiscoveryContactController::class => \LeadersLinked\Factory\Controller\DiscoveryContactControllerFactory::class,
6942
            \LeadersLinked\Controller\DiscoveryContactLogController::class  => \LeadersLinked\Factory\Controller\DiscoveryContactLogControllerFactory::class,
6943
            \LeadersLinked\Controller\DiscoveryContactInteractionTypeController::class  => \LeadersLinked\Factory\Controller\DiscoveryContactInteractionTypeControllerFactory::class,
6944
            \LeadersLinked\Controller\DiscoveryContactInteractionController::class  => \LeadersLinked\Factory\Controller\DiscoveryContactInteractionControllerFactory::class,
15442 efrain 6945
 
6946
            \LeadersLinked\Controller\ActivityCenterController::Class  => \LeadersLinked\Factory\Controller\ActivityCenterControllerFactory::class,
6947
            \LeadersLinked\Controller\ActivityCenterPerformanceEvaluationController::class  => \LeadersLinked\Factory\Controller\ActivityCenterPerformanceEvaluationControllerFactory::class,
15461 efrain 6948
            \LeadersLinked\Controller\ActivityCenterRecruitmentSelectionController::class  => \LeadersLinked\Factory\Controller\ActivityCenterRecruitmentSelectionControllerFactory::class,
15451 efrain 6949
 
15540 efrain 6950
            \LeadersLinked\Controller\EngagementController::class => \LeadersLinked\Factory\Controller\EngagementControllerFactory::class,
15543 efrain 6951
            \LeadersLinked\Controller\EngagementRewardController::class => \LeadersLinked\Factory\Controller\EngagementRewardControllerFactory::class,
15540 efrain 6952
            \LeadersLinked\Controller\EngagementReportsController::class => \LeadersLinked\Factory\Controller\EngagementReportsControllerFactory::class,
6953
 
6954
            \LeadersLinked\Controller\DailyPulseController::Class  => \LeadersLinked\Factory\Controller\DailyPulseControllerFactory::class,
6955
            \LeadersLinked\Controller\DailyPulseEmojiController::Class  => \LeadersLinked\Factory\Controller\DailyPulseEmojiControllerFactory::class,
6956
            \LeadersLinked\Controller\DailyPulseReportsController::Class  => \LeadersLinked\Factory\Controller\DailyPulseReportsControllerFactory::class,
6957
 
6958
 
15451 efrain 6959
            \LeadersLinked\Controller\MyCoachController::Class  => \LeadersLinked\Factory\Controller\MyCoachControllerFactory::class,
6960
            \LeadersLinked\Controller\MyCoachCategoryController::class  => \LeadersLinked\Factory\Controller\MyCoachCategoryControllerFactory::class,
15457 efrain 6961
 
6962
            \LeadersLinked\Controller\UserRequestAccessController::class  => \LeadersLinked\Factory\Controller\UserRequestAccessControllerFactory::class,
15540 efrain 6963
 
15457 efrain 6964
 
1 www 6965
        ],
6966
        'aliases' => [
6967
            '\LeadersLinked\Controller\AuthController' => \LeadersLinked\Controller\AuthController::class,
6968
            '\LeadersLinked\Controller\FollowerController' => \LeadersLinked\Controller\FollowerController::class,
6969
            '\LeadersLinked\Controller\FeedController' => \LeadersLinked\Controller\FeedController::class,
6970
            '\LeadersLinked\Controller\JobController' => \LeadersLinked\Controller\JobController::class,
1343 eleazar 6971
            '\LeadersLinked\Controller\RecruitmentSelectionController' => \LeadersLinked\Controller\RecruitmentSelectionController::class,
15461 efrain 6972
            '\LeadersLinked\Controller\RecruitmentSelectionApplicationController' => \LeadersLinked\Controller\RecruitmentSelectionApplicationController::class,
1385 eleazar 6973
            '\LeadersLinked\Controller\RecruitmentSelectionVacancyController' => \LeadersLinked\Controller\RecruitmentSelectionVacancyController::class,
15461 efrain 6974
            '\LeadersLinked\Controller\RecruitmentSelectionFileController' => \LeadersLinked\Controller\RecruitmentSelectionFileController::class,
6975
            '\LeadersLinked\Controller\RecruitmentSelectionInterviewController' => \LeadersLinked\Controller\RecruitmentSelectionInterviewController::class,
1 www 6976
            '\LeadersLinked\Controller\ProfileController' => \LeadersLinked\Controller\ProfileController::class,
6977
            '\LeadersLinked\Controller\CompanyController' => \LeadersLinked\Controller\CompanyController::class,
6978
            '\LeadersLinked\Controller\CompanySizeController' => \LeadersLinked\Controller\CompanySizeController::class,
6979
            '\LeadersLinked\Controller\CompetencyTypeController' => \LeadersLinked\Controller\CompetencyTypeController::class,
1102 geraldo 6980
            '\LeadersLinked\Controller\BehaviorsController' => \LeadersLinked\Controller\BehaviorsController::class,
1 www 6981
            '\LeadersLinked\Controller\CompetencyController' => \LeadersLinked\Controller\CompetencyController::class,
6982
            '\LeadersLinked\Controller\DegreeController' => \LeadersLinked\Controller\DegreeController::class,
13355 eleazar 6983
            '\LeadersLinked\Controller\DevelopmentContentCategoryController' => \LeadersLinked\Controller\DevelopmentContentCategoryController::class,
6984
            '\LeadersLinked\Controller\DevelopmentContentController' => \LeadersLinked\Controller\DevelopmentContentController::class,
1 www 6985
            '\LeadersLinked\Controller\EmailTemplateController' => \LeadersLinked\Controller\EmailTemplateController::class,
1089 geraldo 6986
            '\LeadersLinked\Controller\PushTemplateController' => \LeadersLinked\Controller\PushTemplateController::class,
1 www 6987
            '\LeadersLinked\Controller\GroupTypeController' => \LeadersLinked\Controller\GroupTypeController::class,
6988
            '\LeadersLinked\Controller\IndustryController' => \LeadersLinked\Controller\IndustryController::class,
6989
            '\LeadersLinked\Controller\JobCategoryController' => \LeadersLinked\Controller\JobCategoryController::class,
66 efrain 6990
            '\LeadersLinked\Controller\JobDescriptionController' => \LeadersLinked\Controller\JobDescriptionController::class,
1 www 6991
            '\LeadersLinked\Controller\PageController' => \LeadersLinked\Controller\PageController::class,
67 efrain 6992
            '\LeadersLinked\Controller\PositionController' => \LeadersLinked\Controller\PositionController::class,
1 www 6993
            '\LeadersLinked\Controller\PostController' => \LeadersLinked\Controller\PostController::class,
6994
            '\LeadersLinked\Controller\SkillController' => \LeadersLinked\Controller\SkillController::class,
6995
            '\LeadersLinked\Controller\UserController' => \LeadersLinked\Controller\UserController::class,
6996
            '\LeadersLinked\Controller\DashboardController' => \LeadersLinked\Controller\DashboardController::class,
115 efrain 6997
            '\LeadersLinked\Controller\SelfEvaluationController' => \LeadersLinked\Controller\SelfEvaluationController::class,
6998
            '\LeadersLinked\Controller\SelfEvaluationFormController' => \LeadersLinked\Controller\SelfEvaluationFormController::class,
6999
            '\LeadersLinked\Controller\SelfEvaluationFormUserController' => \LeadersLinked\Controller\SelfEvaluationFormUserController::class,
247 geraldo 7000
            '\LeadersLinked\Controller\SelfEvaluationReviewController' => \LeadersLinked\Controller\SelfEvaluationReviewController::class,
4375 eleazar 7001
            '\LeadersLinked\Controller\SurveyController' => \LeadersLinked\Controller\SurveyController::class,
7002
            '\LeadersLinked\Controller\SurveyFormController' => \LeadersLinked\Controller\SurveyFormController::class,
5868 eleazar 7003
            '\LeadersLinked\Controller\SurveyReportController' => \LeadersLinked\Controller\SurveyReportController::class,
5287 eleazar 7004
            '\LeadersLinked\Controller\SurveyTestController' => \LeadersLinked\Controller\SurveyTestController::class,
7218 eleazar 7005
            '\LeadersLinked\Controller\OrganizationalClimateController' => \LeadersLinked\Controller\OrganizationalClimateController::class,
7006
            '\LeadersLinked\Controller\OrganizationalClimateFormController' => \LeadersLinked\Controller\OrganizationalClimateFormController::class,
7007
            '\LeadersLinked\Controller\OrganizationalClimateReportController' => \LeadersLinked\Controller\OrganizationalClimateReportController::class,
7008
            '\LeadersLinked\Controller\OrganizationalClimateTestController' => \LeadersLinked\Controller\OrganizationalClimateTestController::class,
15394 efrain 7009
            '\LeadersLinked\Controller\PerformanceEvaluationController' => \LeadersLinked\Controller\PerformanceEvaluationController::class,
982 geraldo 7010
            '\LeadersLinked\Controller\PerformanceEvaluationFormController' => \LeadersLinked\Controller\PerformanceEvaluationFormController::class,
15394 efrain 7011
            '\LeadersLinked\Controller\PerformanceEvaluationTestController' => \LeadersLinked\Controller\PerformanceEvaluationTestController::class,
1 www 7012
            '\LeadersLinked\Controller\MicrolearningController' => \LeadersLinked\Controller\MicrolearningController::class,
66 efrain 7013
            '\LeadersLinked\Controller\MicrolearningQuizController' => \LeadersLinked\Controller\MicrolearningQuizController::class,
7014
            '\LeadersLinked\Controller\MicrolearningQuestionController' => \LeadersLinked\Controller\MicrolearningQuestionController::class,
7015
            '\LeadersLinked\Controller\MicrolearningAnswerController' => \LeadersLinked\Controller\MicrolearningAnswerController::class,
1 www 7016
            '\LeadersLinked\Controller\MicrolearningTopicController' => \LeadersLinked\Controller\MicrolearningTopicController::class,
7017
            '\LeadersLinked\Controller\MicrolearningCapsuleController' => \LeadersLinked\Controller\MicrolearningCapsuleController::class,
7018
            '\LeadersLinked\Controller\MicrolearningSlideController' => \LeadersLinked\Controller\MicrolearningSlideController::class,
7019
            '\LeadersLinked\Controller\MicrolearningStudentsController' => \LeadersLinked\Controller\MicrolearningStudentsController::class,
7020
            '\LeadersLinked\Controller\MicrolearningAccessForStudentsController' => \LeadersLinked\Controller\MicrolearningAccessForStudentsController::class,
7021
            '\LeadersLinked\Controller\MicrolearningReportsController' => \LeadersLinked\Controller\MicrolearningReportsController::class,
7022
            '\LeadersLinked\Controller\MicrolearningExtendUserCompanyController' => \LeadersLinked\Controller\MicrolearningExtendUserCompanyController::class,
7023
            '\LeadersLinked\Controller\MicrolearningExtendUserFunctionController' => \LeadersLinked\Controller\MicrolearningExtendUserFunctionController::class,
7024
            '\LeadersLinked\Controller\MicrolearningExtendUserGroupController' => \LeadersLinked\Controller\MicrolearningExtendUserGroupController::class,
7025
            '\LeadersLinked\Controller\MicrolearningExtendUserInstitutionController' => \LeadersLinked\Controller\MicrolearningExtendUserInstitutionController::class,
7026
            '\LeadersLinked\Controller\MicrolearningExtendUserPartnerController' => \LeadersLinked\Controller\MicrolearningExtendUserPartnerController::class,
12792 eleazar 7027
            '\LeadersLinked\Controller\MicrolearningExtendUserStudentTypeController' => \LeadersLinked\Controller\MicrolearningExtendUserStudentTypeController::class,
1 www 7028
            '\LeadersLinked\Controller\MicrolearningExtendUserProgramController' => \LeadersLinked\Controller\MicrolearningExtendUserProgramController::class,
7029
            '\LeadersLinked\Controller\MicrolearningExtendUserSectorController' => \LeadersLinked\Controller\MicrolearningExtendUserSectorController::class,
15394 efrain 7030
            '\LeadersLinked\Controller\MicrolearningExtendUserCountryController' => \LeadersLinked\Controller\MicrolearningExtendUserCountryController::class,
9335 eleazar 7031
            '\LeadersLinked\Controller\MyTrainerCategoriesController' => \LeadersLinked\Controller\MyTrainerCategoriesController::class,
12286 eleazar 7032
            '\LeadersLinked\Controller\MyTrainerQuestionViewController' => \LeadersLinked\Controller\MyTrainerQuestionViewController::class,
9350 eleazar 7033
            '\LeadersLinked\Controller\MyTrainerQuestionController' => \LeadersLinked\Controller\MyTrainerQuestionController::class,
10423 eleazar 7034
            '\LeadersLinked\Controller\MyTrainerAnswerController' => \LeadersLinked\Controller\MyTrainerAnswerController::class,
1 www 7035
            '\LeadersLinked\Controller\StorageController' => \LeadersLinked\Controller\StorageController::class,
15336 efrain 7036
            '\LeadersLinked\Controller\StorageNetworkController' => \LeadersLinked\Controller\StorageNetworkController::class,
2232 nelberth 7037
            '\LeadersLinked\Controller\PlanningObjectivesAndGoalsController' => \LeadersLinked\Controller\PlanningObjectivesAndGoalsController::class,
2228 nelberth 7038
            '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController' => \LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController::class,
2517 nelberth 7039
            '\LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController' => \LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController::class,
4377 nelberth 7040
            '\LeadersLinked\Controller\PlanningObjectivesAndGoalsGoalsController' => \LeadersLinked\Controller\PlanningObjectivesAndGoalsGoalsController::class,
15336 efrain 7041
            '\LeadersLinked\Controller\MyPrivateNetworkController' => \LeadersLinked\Controller\MyPrivateNetworkController::class,
7042
            '\LeadersLinked\Controller\PrivateNetworksController' => \LeadersLinked\Controller\PrivateNetworksController::class,
4377 nelberth 7043
            '\LeadersLinked\Controller\HighPerformanceTeamsController' => \LeadersLinked\Controller\HighPerformanceTeamsController::class,
7224 nelberth 7044
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsController::class,
7308 nelberth 7045
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewController::class,
12435 nelberth 7046
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController::class,
12736 nelberth 7047
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewGoalsController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewGoalsController::class,
12835 nelberth 7048
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController::class,
11898 nelberth 7049
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController::class,
7494 nelberth 7050
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController::class,
9095 nelberth 7051
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewCalendarController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewCalendarController::class,
9619 nelberth 7052
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController::class,
9764 nelberth 7053
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesController::class,
10143 nelberth 7054
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoController::class,
9921 nelberth 7055
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesViewController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesViewController::class,
7811 nelberth 7056
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController::class,
11340 nelberth 7057
            '\LeadersLinked\Controller\ChatController' => \LeadersLinked\Controller\ChatController::class,
13010 nelberth 7058
            '\LeadersLinked\Controller\CommunicationController' => \LeadersLinked\Controller\CommunicationController::class,
13675 nelberth 7059
            '\LeadersLinked\Controller\CommunicationInboxController' => \LeadersLinked\Controller\CommunicationInboxController::class,
13528 nelberth 7060
            '\LeadersLinked\Controller\InMailController' => \LeadersLinked\Controller\InMailController::class,
15387 efrain 7061
            '\LeadersLinked\Controller\ReportController' => \LeadersLinked\Controller\ReportController::class,
1333 efrain 7062
            '\LeadersLinked\Controller\UnknownController' => \LeadersLinked\Controller\UnknownController::class,
13014 nelberth 7063
            '\LeadersLinked\Controller\TestController' => \LeadersLinked\Controller\TestController::class,
15392 efrain 7064
            '\LeadersLinked\Controller\AptitudeController' => \LeadersLinked\Controller\AptitudeController::class,
7065
            '\LeadersLinked\Controller\HobbyAndInterestController' => \LeadersLinked\Controller\HobbyAndInterestController::class,
15460 efrain 7066
            '\LeadersLinked\Controller\CountriesController' => \LeadersLinked\Controller\CountriesController::class,
15401 efrain 7067
 
15460 efrain 7068
 
15401 efrain 7069
            '\LeadersLinked\Controller\DiscoveryContactController' => \LeadersLinked\Controller\DiscoveryContactController::class,
7070
            '\LeadersLinked\Controller\DiscoveryContactLogController' => \LeadersLinked\Controller\DiscoveryContactLogController::class,
7071
            '\LeadersLinked\Controller\DiscoveryContactInteractionTypeController' => \LeadersLinked\Controller\DiscoveryContactInteractionTypeController::class,
7072
            '\LeadersLinked\Controller\DiscoveryContactInteractionController' => \LeadersLinked\Controller\DiscoveryContactInteractionController::class,
15442 efrain 7073
 
7074
            '\LeadersLinked\Controller\ActivityCenterController' => \LeadersLinked\Controller\ActivityCenterController::class,
7075
            '\LeadersLinked\Controller\ActivityCenterPerformanceEvaluationController' => \LeadersLinked\Controller\ActivityCenterPerformanceEvaluationController::class,
15461 efrain 7076
            '\LeadersLinked\Controller\ActivityCenterRecruitmentSelectionController' => \LeadersLinked\Controller\ActivityCenterRecruitmentSelectionController::class,
7077
 
15540 efrain 7078
            '\LeadersLinked\Controller\EngagementController' => \LeadersLinked\Controller\EngagementController::class,
15543 efrain 7079
            '\LeadersLinked\Controller\EngagementRewardController' => \LeadersLinked\Controller\EngagementRewardController::class,
15540 efrain 7080
            '\LeadersLinked\Controller\EngagementReportsController' => \LeadersLinked\Controller\EngagementReportsController::class,
7081
 
7082
            '\LeadersLinked\Controller\DailyPulseController' => \LeadersLinked\Controller\DailyPulseController::class,
7083
            '\LeadersLinked\Controller\DailyPulseEmojiController' => \LeadersLinked\Controller\DailyPulseEmojiController::class,
7084
            '\LeadersLinked\Controller\DailyPulseReportsController' => \LeadersLinked\Controller\DailyPulseReportsController::class,
7085
 
15451 efrain 7086
            '\LeadersLinked\Controller\MyCoachController' => \LeadersLinked\Controller\MyCoachController::class,
7087
            '\LeadersLinked\Controller\MyCoachCategoryController' => \LeadersLinked\Controller\MyCoachCategoryController::class,
15457 efrain 7088
 
7089
 
7090
            '\LeadersLinked\Controller\UserRequestAccessController' => \LeadersLinked\Controller\UserRequestAccessController::Class,
15451 efrain 7091
 
1 www 7092
        ]
7093
    ],
7094
    'laminas-cli' => [
7095
        'commands' => [
1089 geraldo 7096
        ]
1 www 7097
    ],
7098
    'service_manager' => [
7099
        'abstract_factories' => [
7100
            \Laminas\Db\Adapter\AdapterAbstractServiceFactory::class
7101
        ],
7102
        'factories' => [
7103
            'RenderingStrategy' => function ($container) {
7104
                $translator = $container->get('MvcTranslator');
7105
                return new \LeadersLinked\View\RenderingStrategy($translator);
7106
            },
7107
            'menuNavigation' => \LeadersLinked\Navigation\MenuNavigation::class,
7108
            'footerNavigation' => \LeadersLinked\Navigation\FooterNavigation::class,
1089 geraldo 7109
        ],
7110
        'aliases' => [// 'leaders-linked-storage' => \LeadersLinked\Service\StorageService::class
1 www 7111
        ]
7112
    ],
7113
    'view_helpers' => [
7114
        'factories' => [
11351 nelberth 7115
            \LeadersLinked\Helper\ChatHelper::class => \LeadersLinked\Factory\Helper\ChatHelperFactory::class,
1 www 7116
            \LeadersLinked\Helper\CurrentUserHelper::class => \LeadersLinked\Factory\Helper\CurrentUserHelperFactory::class,
15336 efrain 7117
            \LeadersLinked\Helper\CurrentNetworkHelper::class => \LeadersLinked\Factory\Helper\CurrentNetworkHelperFactory::class,
7118
            \LeadersLinked\Helper\NetworkFavicoHelper::class => \LeadersLinked\Factory\Helper\NetworkFavicoHelperFactory::class,
7119
            \LeadersLinked\Helper\NetworkIntroHelper::class => \LeadersLinked\Factory\Helper\NetworkIntroHelperFactory::class,
7120
            \LeadersLinked\Helper\NetworkLogoHelper::class => \LeadersLinked\Factory\Helper\NetworkLogoHelperFactory::class,
7121
            \LeadersLinked\Helper\NetworkNavbarHelper::class => \LeadersLinked\Factory\Helper\NetworkNavbarHelperFactory::class,
7122
            \LeadersLinked\Helper\NetworkStylesAndColorsHelper::class => \LeadersLinked\Factory\Helper\NetworkStylesAndColorsHelperFactory::class,
7123
 
1 www 7124
        ],
7125
        'invokables' => [
11527 nelberth 7126
            'chatHelper' => \LeadersLinked\Helper\ChatHelper::class,
1 www 7127
            'menuHelper' => \LeadersLinked\Helper\MenuHelper::class,
7128
        ],
7129
        'aliases' => [
11527 nelberth 7130
 
1 www 7131
            'currentUserHelper' => \LeadersLinked\Helper\CurrentUserHelper::class,
15336 efrain 7132
            'currentNetworkHelper' =>  \LeadersLinked\Helper\CurrentNetworkHelper::class,
7133
            'networkFavicoHelper'  => \LeadersLinked\Helper\NetworkFavicoHelper::class,
7134
            'networkIntroHelper' => \LeadersLinked\Helper\NetworkIntroHelper::class,
7135
            'networkLogoHelper'  => \LeadersLinked\Helper\NetworkLogoHelper::class,
7136
            'networkNavbarHelper'  => \LeadersLinked\Helper\NetworkNavbarHelper::class,
7137
            'networkStylesAndColorsHelper'  => \LeadersLinked\Helper\NetworkStylesAndColorsHelper::class,
4600 nelberth 7138
 
15336 efrain 7139
 
1 www 7140
        ]
7141
    ],
7142
    'controller_plugins' => [
7143
        'invokables' => [],
7144
        'factories' => [
15336 efrain 7145
            \LeadersLinked\Plugin\CurrentUserPlugin::class => \LeadersLinked\Factory\Plugin\CurrentUserPluginFactory::class,
7146
            \LeadersLinked\Plugin\CurrentNetworkPlugin::class => \LeadersLinked\Factory\Plugin\CurrentNetworkPluginFactory::class,
1 www 7147
        ],
7148
        'aliases' => [
15336 efrain 7149
            'currentUserPlugin' => \LeadersLinked\Plugin\CurrentUserPlugin::class,
7150
            'currentNetworkPlugin' => \LeadersLinked\Plugin\CurrentNetworkPlugin::class,
1 www 7151
        ]
7152
    ],
7153
    'view_manager' => [
7154
        'display_not_found_reason' => true,
7155
        'display_exceptions' => true,
7156
        'doctype' => 'HTML5',
7157
        'not_found_template' => 'error/404',
7158
        'exception_template' => 'error/index',
7159
        'template_map' => [
7160
            'layout/layout' => __DIR__ . '/../view/layout/layout.phtml',
7161
            'error/404' => __DIR__ . '/../view/error/404.phtml',
7162
            'error/index' => __DIR__ . '/../view/error/index.phtml'
7163
        ],
7164
        'template_path_stack' => [
7165
            __DIR__ . '/../view'
7166
        ],
7167
        'strategies' => [
7168
            'ViewJsonStrategy',
7169
            'RenderingStrategy'
7170
        ]
7171
    ]
7172
];
7173