Proyectos de Subversion LeadersLinked - Backend

Rev

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