Proyectos de Subversion LeadersLinked - Backend

Rev

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

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