Proyectos de Subversion LeadersLinked - Backend

Rev

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