Proyectos de Subversion LeadersLinked - Backend

Rev

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