Proyectos de Subversion LeadersLinked - Backend

Rev

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

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