Proyectos de Subversion LeadersLinked - Backend

Rev

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