Proyectos de Subversion LeadersLinked - Backend

Rev

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

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