Proyectos de Subversion LeadersLinked - Backend

Rev

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

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