Proyectos de Subversion LeadersLinked - Backend

Rev

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