Proyectos de Subversion LeadersLinked - Backend

Rev

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

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