Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 11111 | Rev 11126 | 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' => [
8552 efrain 78
                        'type' => 'user|user-profile|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' => [
11122 nelberth 438
                            'route' => '/add[/company/:company_id][/group/:group_id][/encoding/:encoding][/type/:type][/feed/:feed][/myt_id/:myt_id][/hptg_id/:hptg_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\-]+\=*',
10976 eleazar 443
                                'myt_id' => '[A-Za-z0-9\-]+\=*',
11003 eleazar 444
                                'type' => 'group|company|hptg|mytq|myta',
1 www 445
                                'encoding' => 'base64'
446
                            ],
447
                            'defaults' => [
448
                                'controller' => '\LeadersLinked\Controller\FeedController',
449
                                'action' => 'add'
450
                            ]
451
                        ]
452
                    ],
453
                ],
1089 geraldo 454
            ],
455
            /** START JOBS * */
1 www 456
            'jobs' => [
457
                'type' => Literal::class,
458
                'options' => [
459
                    'route' => '/jobs',
460
                    'defaults' => [
461
                        'controller' => '\LeadersLinked\Controller\JobController',
462
                        'action' => 'index'
463
                    ]
464
                ],
465
                'may_terminate' => true,
466
                'child_routes' => [
467
                    'add' => [
468
                        'type' => Literal::class,
469
                        'options' => [
470
                            'route' => '/add',
471
                            'defaults' => [
472
                                'controller' => '\LeadersLinked\Controller\JobController',
473
                                'action' => 'add'
474
                            ]
475
                        ],
476
                    ],
477
                    'delete' => [
478
                        'type' => Segment::class,
479
                        'options' => [
480
                            'route' => '/delete/:id',
481
                            'constraints' => [
482
                                'id' => '[A-Za-z0-9\-]+\=*'
483
                            ],
484
                            'defaults' => [
485
                                'controller' => '\LeadersLinked\Controller\JobController',
486
                                'action' => 'delete'
487
                            ]
488
                        ],
489
                    ],
490
                    'users-who-applied' => [
491
                        'type' => Segment::class,
492
                        'options' => [
493
                            'route' => '/users-who-applied/:id',
494
                            'constraints' => [
495
                                'id' => '[A-Za-z0-9\-]+\=*'
496
                            ],
497
                            'defaults' => [
498
                                'controller' => '\LeadersLinked\Controller\JobController',
499
                                'action' => 'usersWhoApplied'
500
                            ]
501
                        ],
502
                    ],
503
                    'edit' => [
504
                        'type' => Segment::class,
505
                        'options' => [
506
                            'route' => '/edit/:id',
507
                            'constraints' => [
508
                                'id' => '[A-Za-z0-9\-]+\=*'
509
                            ],
510
                            'defaults' => [
511
                                'controller' => '\LeadersLinked\Controller\JobController',
512
                                'action' => 'edit'
513
                            ]
514
                        ],
515
                        'may_terminate' => true,
516
                        'child_routes' => [
517
                            'status' => [
518
                                'type' => Literal::class,
519
                                'options' => [
520
                                    'route' => '/status',
521
                                    'defaults' => [
522
                                        'controller' => '\LeadersLinked\Controller\JobController',
523
                                        'action' => 'status'
524
                                    ]
525
                                ],
526
                            ],
527
                            'title' => [
528
                                'type' => Literal::class,
529
                                'options' => [
530
                                    'route' => '/title',
531
                                    'defaults' => [
532
                                        'controller' => '\LeadersLinked\Controller\JobController',
533
                                        'action' => 'title'
534
                                    ]
535
                                ],
536
                            ],
537
                            'last-date-of-application' => [
538
                                'type' => Literal::class,
539
                                'options' => [
540
                                    'route' => '/last-date-of-application',
541
                                    'defaults' => [
542
                                        'controller' => '\LeadersLinked\Controller\JobController',
543
                                        'action' => 'lastDateOfApplication'
544
                                    ]
545
                                ],
546
                            ],
547
                            'experience' => [
548
                                'type' => Literal::class,
549
                                'options' => [
550
                                    'route' => '/experience',
551
                                    'defaults' => [
552
                                        'controller' => '\LeadersLinked\Controller\JobController',
553
                                        'action' => 'experience'
554
                                    ]
555
                                ],
556
                            ],
557
                            'employment-type' => [
558
                                'type' => Literal::class,
559
                                'options' => [
560
                                    'route' => '/employment-type',
561
                                    'defaults' => [
562
                                        'controller' => '\LeadersLinked\Controller\JobController',
563
                                        'action' => 'employmentType'
564
                                    ]
565
                                ],
566
                            ],
567
                            'job-category' => [
568
                                'type' => Literal::class,
569
                                'options' => [
570
                                    'route' => '/job-category',
571
                                    'defaults' => [
572
                                        'controller' => '\LeadersLinked\Controller\JobController',
573
                                        'action' => 'jobCategory'
574
                                    ]
575
                                ],
576
                            ],
577
                            'extended' => [
578
                                'type' => Literal::class,
579
                                'options' => [
580
                                    'route' => '/extended',
581
                                    'defaults' => [
582
                                        'controller' => '\LeadersLinked\Controller\JobController',
583
                                        'action' => 'extended'
584
                                    ]
585
                                ],
586
                            ],
587
                            'location' => [
588
                                'type' => Literal::class,
589
                                'options' => [
590
                                    'route' => '/location',
591
                                    'defaults' => [
592
                                        'controller' => '\LeadersLinked\Controller\JobController',
593
                                        'action' => 'location'
594
                                    ]
595
                                ],
596
                            ],
597
                            'salary' => [
598
                                'type' => Literal::class,
599
                                'options' => [
600
                                    'route' => '/salary',
601
                                    'defaults' => [
602
                                        'controller' => '\LeadersLinked\Controller\JobController',
603
                                        'action' => 'salary'
604
                                    ]
605
                                ],
606
                            ],
607
                            'degrees' => [
608
                                'type' => Literal::class,
609
                                'options' => [
610
                                    'route' => '/degrees',
611
                                    'defaults' => [
612
                                        'controller' => '\LeadersLinked\Controller\JobController',
613
                                        'action' => 'degree'
614
                                    ]
615
                                ],
616
                            ],
617
                            'languages' => [
618
                                'type' => Literal::class,
619
                                'options' => [
620
                                    'route' => '/languages',
621
                                    'defaults' => [
622
                                        'controller' => '\LeadersLinked\Controller\JobController',
623
                                        'action' => 'language'
624
                                    ]
625
                                ],
626
                            ],
627
                            'skills' => [
628
                                'type' => Literal::class,
629
                                'options' => [
630
                                    'route' => '/skills',
631
                                    'defaults' => [
632
                                        'controller' => '\LeadersLinked\Controller\JobController',
633
                                        'action' => 'skill'
634
                                    ]
635
                                ],
636
                            ],
637
                            'how-apply' => [
638
                                'type' => Literal::class,
639
                                'options' => [
640
                                    'route' => '/how-apply',
641
                                    'defaults' => [
642
                                        'controller' => '\LeadersLinked\Controller\JobController',
643
                                        'action' => 'howApply'
644
                                    ]
645
                                ],
646
                            ],
647
                        ],
648
                    ]
649
                ],
650
            ],
1089 geraldo 651
            /*             * * END JOB * */
652
 
653
            /*             * *** START PROFILE *** */
1 www 654
            'profile' => [
655
                'type' => Literal::class,
656
                'options' => [
657
                    'route' => '/profile',
658
                    'defaults' => [
659
                        'controller' => '\LeadersLinked\Controller\ProfileController',
660
                        'action' => 'index'
661
                    ]
662
                ],
663
                'may_terminate' => true,
664
                'child_routes' => [
665
                    'extended' => [
666
                        'type' => Segment::class,
667
                        'options' => [
668
                            'route' => '/extended',
669
                            'defaults' => [
670
                                'controller' => '\LeadersLinked\Controller\ProfileController',
671
                                'action' => 'extended'
672
                            ]
673
                        ]
674
                    ],
675
                    'image' => [
676
                        'type' => Segment::class,
677
                        'options' => [
678
                            'route' => '/image/:operation',
679
                            'constraints' => [
680
                                'operation' => 'upload|delete'
681
                            ],
682
                            'defaults' => [
683
                                'controller' => '\LeadersLinked\Controller\ProfileController',
684
                                'action' => 'image'
685
                            ]
686
                        ]
687
                    ],
688
                    'cover' => [
689
                        'type' => Segment::class,
690
                        'options' => [
691
                            'route' => '/cover/:operation',
692
                            'constraints' => [
693
                                'operation' => 'upload|delete'
694
                            ],
695
                            'defaults' => [
696
                                'controller' => '\LeadersLinked\Controller\ProfileController',
697
                                'action' => 'cover'
698
                            ]
699
                        ]
700
                    ],
768 geraldo 701
                    'header' => [
702
                        'type' => Segment::class,
703
                        'options' => [
704
                            'route' => '/header/:operation',
705
                            'constraints' => [
706
                                'operation' => 'upload|delete'
707
                            ],
708
                            'defaults' => [
709
                                'controller' => '\LeadersLinked\Controller\ProfileController',
710
                                'action' => 'header'
711
                            ]
712
                        ]
713
                    ],
714
                    'footer' => [
715
                        'type' => Segment::class,
716
                        'options' => [
717
                            'route' => '/footer/:operation',
718
                            'constraints' => [
719
                                'operation' => 'upload|delete'
720
                            ],
721
                            'defaults' => [
722
                                'controller' => '\LeadersLinked\Controller\ProfileController',
723
                                'action' => 'footer'
724
                            ]
725
                        ]
726
                    ],
1 www 727
                    'website' => [
728
                        'type' => Segment::class,
729
                        'options' => [
730
                            'route' => '/website',
731
                            'defaults' => [
732
                                'controller' => '\LeadersLinked\Controller\ProfileController',
733
                                'action' => 'website'
734
                            ]
735
                        ]
736
                    ],
737
                    'foundation_year' => [
738
                        'type' => Segment::class,
739
                        'options' => [
740
                            'route' => '/foundation_year',
741
                            'defaults' => [
742
                                'controller' => '\LeadersLinked\Controller\ProfileController',
743
                                'action' => 'foundationYear'
744
                            ]
745
                        ]
746
                    ],
747
                    'location' => [
748
                        'type' => Segment::class,
749
                        'options' => [
750
                            'route' => '/location/:operation[/:id]',
751
                            'constraints' => [
752
                                'operation' => 'add|edit|delete',
753
                                'id' => '[A-Za-z0-9\-]+\=*'
754
                            ],
755
                            'defaults' => [
756
                                'controller' => '\LeadersLinked\Controller\ProfileController',
757
                                'action' => 'location'
758
                            ]
759
                        ]
760
                    ],
761
                    'social-network' => [
762
                        'type' => Segment::class,
763
                        'options' => [
764
                            'route' => '/social-network',
765
                            'defaults' => [
766
                                'controller' => '\LeadersLinked\Controller\ProfileController',
767
                                'action' => 'socialNetwork'
768
                            ]
769
                        ]
770
                    ],
771
                    'industry' => [
772
                        'type' => Segment::class,
773
                        'options' => [
774
                            'route' => '/industry',
775
                            'defaults' => [
776
                                'controller' => '\LeadersLinked\Controller\ProfileController',
777
                                'action' => 'industry'
778
                            ]
779
                        ]
780
                    ],
781
                    'company-size' => [
782
                        'type' => Segment::class,
783
                        'options' => [
784
                            'route' => '/company-size',
785
                            'defaults' => [
786
                                'controller' => '\LeadersLinked\Controller\ProfileController',
787
                                'action' => 'companySize'
788
                            ]
789
                        ]
790
                    ]
791
                ],
792
            ],
1089 geraldo 793
            /*             * * END PROFILE * */
794
 
795
            /*             * *** START FOLLOWERS *** */
1 www 796
            'followers' => [
797
                'type' => Literal::class,
798
                'options' => [
799
                    'route' => '/followers',
800
                    'defaults' => [
801
                        'controller' => '\LeadersLinked\Controller\FollowerController',
802
                        'action' => 'index'
803
                    ]
804
                ],
805
                'may_terminate' => true,
806
                'child_routes' => [
807
                    'delete' => [
808
                        'type' => Segment::class,
809
                        'options' => [
810
                            'route' => '/delete/:id',
811
                            'constraints' => [
812
                                'id' => '[A-Za-z0-9\-]+\=*'
813
                            ],
814
                            'defaults' => [
815
                                'controller' => '\LeadersLinked\Controller\FollowerController',
816
                                'action' => 'delete'
817
                            ]
818
                        ]
819
                    ],
1089 geraldo 820
                ],
821
            ],
822
            /*             * *** END FOLLOWERS *** */
823
 
824
            /*             * * START MICRO_LEARNING ** */
1 www 825
            'microlearning' => [
826
                'type' => Literal::class,
827
                'options' => [
828
                    'route' => '/microlearning',
829
                    'defaults' => [
830
                        'controller' => '\LeadersLinked\Controller\MicrolearningController',
831
                        'action' => 'index'
832
                    ]
833
                ],
834
                'may_terminate' => true,
835
                'child_routes' => [
836
                    'overview' => [
837
                        'type' => Literal::class,
838
                        'options' => [
839
                            'route' => '/overview',
840
                            'defaults' => [
841
                                'controller' => '\LeadersLinked\Controller\MicrolearningReportsController',
842
                                'action' => 'overview'
843
                            ]
844
                        ],
1089 geraldo 845
                    ],
1 www 846
                    'reports' => [
847
                        'type' => Literal::class,
848
                        'options' => [
849
                            'route' => '/reports',
850
                            'defaults' => [
851
                                'controller' => '\LeadersLinked\Controller\MicrolearningReportsController',
2 efrain 852
                                'action' => 'index'
1 www 853
                            ]
854
                        ],
2 efrain 855
                        'may_terminate' => true,
856
                        'child_routes' => [
857
                            'progress' => [
858
                                'type' => Literal::class,
859
                                'options' => [
860
                                    'route' => '/progress',
861
                                    'defaults' => [
862
                                        'controller' => '\LeadersLinked\Controller\MicrolearningReportsController',
863
                                        'action' => 'progress'
864
                                    ]
865
                                ]
866
                            ],
187 efrain 867
                            'comments-for-capsule' => [
868
                                'type' => Literal::class,
869
                                'options' => [
870
                                    'route' => '/comments-for-capsule',
871
                                    'defaults' => [
872
                                        'controller' => '\LeadersLinked\Controller\MicrolearningReportsController',
873
                                        'action' => 'commentsForCapsule'
874
                                    ]
875
                                ]
876
                            ],
2 efrain 877
                            'devices' => [
878
                                'type' => Literal::class,
879
                                'options' => [
880
                                    'route' => '/devices',
881
                                    'defaults' => [
882
                                        'controller' => '\LeadersLinked\Controller\MicrolearningReportsController',
883
                                        'action' => 'devices'
884
                                    ]
885
                                ]
886
                            ],
1089 geraldo 887
                        ]
888
                    ],
1 www 889
                    'content' => [
890
                        'type' => Literal::class,
891
                        'options' => [
892
                            'route' => '/content',
893
                            'defaults' => [
894
                                'controller' => '\LeadersLinked\Controller\MicrolearningContentController',
895
                                'action' => 'index'
896
                            ]
897
                        ],
898
                        'may_terminate' => true,
899
                        'child_routes' => [
66 efrain 900
                            'quizzes' => [
901
                                'type' => Segment::class,
902
                                'options' => [
903
                                    'route' => '/quizzes',
904
                                    'defaults' => [
905
                                        'controller' => '\LeadersLinked\Controller\MicrolearningQuizController',
906
                                        'action' => 'index'
907
                                    ]
908
                                ],
909
                                'may_terminate' => true,
910
                                'child_routes' => [
911
                                    'add' => [
912
                                        'type' => Literal::class,
913
                                        'options' => [
914
                                            'route' => '/add',
915
                                            'defaults' => [
916
                                                'controller' => '\LeadersLinked\Controller\MicrolearningQuizController',
917
                                                'action' => 'add'
918
                                            ]
919
                                        ]
920
                                    ],
921
                                    'edit' => [
922
                                        'type' => Segment::class,
923
                                        'options' => [
924
                                            'route' => '/:quiz_id/edit',
925
                                            'constraints' => [
926
                                                'quiz_id' => '[A-Za-z0-9\-]+\=*'
927
                                            ],
928
                                            'defaults' => [
929
                                                'controller' => '\LeadersLinked\Controller\MicrolearningQuizController',
930
                                                'action' => 'edit'
931
                                            ]
932
                                        ]
933
                                    ],
934
                                    'delete' => [
935
                                        'type' => Segment::class,
936
                                        'options' => [
937
                                            'route' => '/:quiz_id/delete',
938
                                            'constraints' => [
939
                                                'quiz_id' => '[A-Za-z0-9\-]+\=*'
940
                                            ],
941
                                            'defaults' => [
942
                                                'controller' => '\LeadersLinked\Controller\MicrolearningQuizController',
943
                                                'action' => 'delete'
944
                                            ]
945
                                        ]
946
                                    ],
947
                                    'check' => [
948
                                        'type' => Segment::class,
949
                                        'options' => [
950
                                            'route' => '/:quiz_id/check',
951
                                            'constraints' => [
952
                                                'quiz_id' => '[A-Za-z0-9\-]+\=*'
953
                                            ],
954
                                            'defaults' => [
955
                                                'controller' => '\LeadersLinked\Controller\MicrolearningQuizController',
956
                                                'action' => 'check'
957
                                            ]
958
                                        ]
959
                                    ],
960
                                    'publish' => [
961
                                        'type' => Segment::class,
962
                                        'options' => [
963
                                            'route' => '/:quiz_id/publish',
964
                                            'constraints' => [
965
                                                'quiz_id' => '[A-Za-z0-9\-]+\=*'
966
                                            ],
967
                                            'defaults' => [
968
                                                'controller' => '\LeadersLinked\Controller\MicrolearningQuizController',
969
                                                'action' => 'publish'
970
                                            ]
971
                                        ]
972
                                    ],
973
                                    'copy' => [
974
                                        'type' => Segment::class,
975
                                        'options' => [
976
                                            'route' => '/:quiz_id/copy',
977
                                            'constraints' => [
978
                                                'quiz_id' => '[A-Za-z0-9\-]+\=*'
979
                                            ],
980
                                            'defaults' => [
981
                                                'controller' => '\LeadersLinked\Controller\MicrolearningQuizController',
982
                                                'action' => 'copy'
983
                                            ]
984
                                        ]
985
                                    ],
986
                                    'questions' => [
987
                                        'type' => Segment::class,
988
                                        'options' => [
989
                                            'route' => '/:quiz_id/questions',
990
                                            'constraints' => [
991
                                                'quiz_id' => '[A-Za-z0-9\-]+\=*'
992
                                            ],
993
                                            'defaults' => [
994
                                                'controller' => '\LeadersLinked\Controller\MicrolearningQuestionController',
995
                                                'action' => 'index'
996
                                            ]
997
                                        ],
998
                                        'may_terminate' => true,
999
                                        'child_routes' => [
1000
                                            'add' => [
1001
                                                'type' => Literal::class,
1002
                                                'options' => [
1003
                                                    'route' => '/add',
1004
                                                    'defaults' => [
1005
                                                        'controller' => '\LeadersLinked\Controller\MicrolearningQuestionController',
1006
                                                        'action' => 'add'
1007
                                                    ]
1008
                                                ]
1009
                                            ],
1010
                                            'edit' => [
1011
                                                'type' => Segment::class,
1012
                                                'options' => [
1013
                                                    'route' => '/:question_id/edit',
1014
                                                    'constraints' => [
1015
                                                        'question_id' => '[A-Za-z0-9\-]+\=*'
1016
                                                    ],
1017
                                                    'defaults' => [
1018
                                                        'controller' => '\LeadersLinked\Controller\MicrolearningQuestionController',
1019
                                                        'action' => 'edit'
1020
                                                    ]
1021
                                                ]
1022
                                            ],
1023
                                            'delete' => [
1024
                                                'type' => Segment::class,
1025
                                                'options' => [
1026
                                                    'route' => '/:question_id/delete',
1027
                                                    'constraints' => [
1028
                                                        'question_id' => '[A-Za-z0-9\-]+\=*'
1029
                                                    ],
1030
                                                    'defaults' => [
1031
                                                        'controller' => '\LeadersLinked\Controller\MicrolearningQuestionController',
1032
                                                        'action' => 'delete'
1033
                                                    ]
1034
                                                ]
1035
                                            ],
1036
                                            'answers' => [
1037
                                                'type' => Segment::class,
1038
                                                'options' => [
1039
                                                    'route' => '/:question_id/answers',
1040
                                                    'constraints' => [
1041
                                                        'question_id' => '[A-Za-z0-9\-]+\=*'
1042
                                                    ],
1043
                                                    'defaults' => [
1044
                                                        'controller' => '\LeadersLinked\Controller\MicrolearningAnswerController',
1045
                                                        'action' => 'index'
1046
                                                    ]
1047
                                                ],
1048
                                                'may_terminate' => true,
1049
                                                'child_routes' => [
1050
                                                    'add' => [
1051
                                                        'type' => Literal::class,
1052
                                                        'options' => [
1053
                                                            'route' => '/add',
1054
                                                            'defaults' => [
1055
                                                                'controller' => '\LeadersLinked\Controller\MicrolearningAnswerController',
1056
                                                                'action' => 'add'
1057
                                                            ]
1058
                                                        ]
1059
                                                    ],
1060
                                                    'edit' => [
1061
                                                        'type' => Segment::class,
1062
                                                        'options' => [
1063
                                                            'route' => '/:answer_id/edit',
1064
                                                            'constraints' => [
1065
                                                                'answer_id' => '[A-Za-z0-9\-]+\=*'
1066
                                                            ],
1067
                                                            'defaults' => [
1068
                                                                'controller' => '\LeadersLinked\Controller\MicrolearningAnswerController',
1069
                                                                'action' => 'edit'
1070
                                                            ]
1071
                                                        ]
1072
                                                    ],
1073
                                                    'delete' => [
1074
                                                        'type' => Segment::class,
1075
                                                        'options' => [
1076
                                                            'route' => '/:answer_id/delete',
1077
                                                            'constraints' => [
1078
                                                                'answer_id' => '[A-Za-z0-9\-]+\=*'
1079
                                                            ],
1080
                                                            'defaults' => [
1081
                                                                'controller' => '\LeadersLinked\Controller\MicrolearningAnswerController',
1082
                                                                'action' => 'delete'
1083
                                                            ]
1084
                                                        ]
1085
                                                    ],
1086
                                                ]
1087
                                            ],
1088
                                        ]
1089
                                    ],
1090
                                ]
1089 geraldo 1091
                            ],
1 www 1092
                            'topics' => [
1093
                                'type' => Literal::class,
1094
                                'options' => [
1095
                                    'route' => '/topics',
1096
                                    'defaults' => [
1097
                                        'controller' => '\LeadersLinked\Controller\MicrolearningTopicController',
1098
                                        'action' => 'index'
1099
                                    ]
1100
                                ],
1101
                                'may_terminate' => true,
1102
                                'child_routes' => [
1103
                                    'add' => [
1104
                                        'type' => Literal::class,
1105
                                        'options' => [
1106
                                            'route' => '/add',
1107
                                            'defaults' => [
1108
                                                'controller' => '\LeadersLinked\Controller\MicrolearningTopicController',
1109
                                                'action' => 'add'
1110
                                            ]
1111
                                        ]
1112
                                    ],
1113
                                    'edit' => [
1114
                                        'type' => Segment::class,
1115
                                        'options' => [
1116
                                            'route' => '/edit/:id',
1117
                                            'constraints' => [
1118
                                                'id' => '[A-Za-z0-9\-]+\=*'
1119
                                            ],
1120
                                            'defaults' => [
1121
                                                'controller' => '\LeadersLinked\Controller\MicrolearningTopicController',
1122
                                                'action' => 'edit'
1123
                                            ]
1124
                                        ]
1125
                                    ],
1126
                                    'delete' => [
1127
                                        'type' => Segment::class,
1128
                                        'options' => [
1129
                                            'route' => '/delete/:id',
1130
                                            'constraints' => [
1131
                                                'id' => '[A-Za-z0-9\-]+\=*'
1132
                                            ],
1133
                                            'defaults' => [
1134
                                                'controller' => '\LeadersLinked\Controller\MicrolearningTopicController',
1135
                                                'action' => 'delete'
1136
                                            ]
1137
                                        ]
1138
                                    ]
1139
                                ]
1140
                            ],
1141
                            'capsules' => [
1142
                                'type' => Literal::class,
1143
                                'options' => [
1144
                                    'route' => '/capsules',
1145
                                    'defaults' => [
1146
                                        'controller' => '\LeadersLinked\Controller\MicrolearningCapsuleController',
1147
                                        'action' => 'index'
1148
                                    ]
1149
                                ],
1150
                                'may_terminate' => true,
1151
                                'child_routes' => [
1152
                                    'add' => [
1153
                                        'type' => Segment::class,
1154
                                        'options' => [
1155
                                            'route' => '/add/topic/:topic_uuid',
1156
                                            'constraints' => [
1157
                                                'topic_uuid' => '[A-Za-z0-9\-]+\=*',
1158
                                            ],
1159
                                            'defaults' => [
1160
                                                'controller' => '\LeadersLinked\Controller\MicrolearningCapsuleController',
1161
                                                'action' => 'add'
1162
                                            ]
1163
                                        ]
1164
                                    ],
1165
                                    'edit' => [
1166
                                        'type' => Segment::class,
1167
                                        'options' => [
1168
                                            'route' => '/edit/topic/:topic_uuid/id/:capsule_uuid',
1169
                                            'constraints' => [
1170
                                                'topic_uuid' => '[A-Za-z0-9\-]+\=*',
1171
                                                'capsule_uuid' => '[A-Za-z0-9\-]+\=*',
1172
                                            ],
1173
                                            'defaults' => [
1174
                                                'controller' => '\LeadersLinked\Controller\MicrolearningCapsuleController',
1175
                                                'action' => 'edit'
1176
                                            ]
1177
                                        ]
1178
                                    ],
1179
                                    'delete' => [
1180
                                        'type' => Segment::class,
1181
                                        'options' => [
1182
                                            'route' => '/delete/topic/:topic_uuid/id/:capsule_uuid',
1183
                                            'constraints' => [
1184
                                                'topic_uuid' => '[A-Za-z0-9\-]+\=*',
1185
                                                'capsule_uuid' => '[A-Za-z0-9\-]+\=*',
1186
                                            ],
1187
                                            'defaults' => [
1188
                                                'controller' => '\LeadersLinked\Controller\MicrolearningCapsuleController',
1189
                                                'action' => 'delete'
1190
                                            ]
1191
                                        ]
1192
                                    ],
1193
                                    'users' => [
1194
                                        'type' => Segment::class,
1195
                                        'options' => [
1196
                                            'route' => '/users/topic/:topic_uuid/id/:capsule_uuid/type/:type',
1197
                                            'constraints' => [
1198
                                                'topic_uuid' => '[A-Za-z0-9\-]+\=*',
1199
                                                'capsule_uuid' => '[A-Za-z0-9\-]+\=*',
1200
                                                'type' => 'all|active',
1201
                                            ],
1202
                                            'defaults' => [
1203
                                                'controller' => '\LeadersLinked\Controller\MicrolearningCapsuleController',
1204
                                                'action' => 'users'
1205
                                            ]
1206
                                        ]
1207
                                    ],
1208
                                ]
1209
                            ],
1210
                            'slides' => [
1211
                                'type' => Literal::class,
1212
                                'options' => [
1213
                                    'route' => '/slides',
1214
                                    'defaults' => [
1215
                                        'controller' => '\LeadersLinked\Controller\MicrolearningSlideController',
1216
                                        'action' => 'index'
1217
                                    ]
1218
                                ],
1219
                                'may_terminate' => true,
1220
                                'child_routes' => [
1221
                                    'add' => [
1222
                                        'type' => Segment::class,
1223
                                        'options' => [
1224
                                            'route' => '/add/topic/:topic_uuid/capsule/:capsule_uuid',
1225
                                            'constraints' => [
1226
                                                'topic_uuid' => '[A-Za-z0-9\-]+\=*',
1227
                                            ],
1228
                                            'defaults' => [
1229
                                                'controller' => '\LeadersLinked\Controller\MicrolearningSlideController',
1230
                                                'action' => 'add'
1231
                                            ]
1232
                                        ]
1233
                                    ],
1234
                                    'edit' => [
1235
                                        'type' => Segment::class,
1236
                                        'options' => [
1237
                                            'route' => '/edit/topic/:topic_uuid/capsule/:capsule_uuid/slide/:slide_uuid',
1238
                                            'constraints' => [
1239
                                                'topic_uuid' => '[A-Za-z0-9\-]+\=*',
1240
                                                'capsule_uuid' => '[A-Za-z0-9\-]+\=*',
1241
                                                'slide_uuid' => '[A-Za-z0-9\-]+\=*',
1242
                                            ],
1243
                                            'defaults' => [
1244
                                                'controller' => '\LeadersLinked\Controller\MicrolearningSlideController',
1245
                                                'action' => 'edit'
1246
                                            ]
1247
                                        ]
1248
                                    ],
1249
                                    'delete' => [
1250
                                        'type' => Segment::class,
1251
                                        'options' => [
1252
                                            'route' => '/delete/topic/:topic_uuid/capsule/:capsule_uuid/slide/:slide_uuid',
1253
                                            'constraints' => [
1254
                                                'topic_uuid' => '[A-Za-z0-9\-]+\=*',
1255
                                                'capsule_uuid' => '[A-Za-z0-9\-]+\=*',
1256
                                                'slide_uuid' => '[A-Za-z0-9\-]+\=*',
1257
                                            ],
1258
                                            'defaults' => [
1259
                                                'controller' => '\LeadersLinked\Controller\MicrolearningSlideController',
1260
                                                'action' => 'delete'
1261
                                            ]
1262
                                        ]
1263
                                    ],
1264
                                    'text' => [
1265
                                        'type' => Segment::class,
1266
                                        'options' => [
1267
                                            'route' => '/text/topic/:topic_uuid/capsule/:capsule_uuid/slide/:slide_uuid',
1268
                                            'constraints' => [
1269
                                                'topic_uuid' => '[A-Za-z0-9\-]+\=*',
1270
                                                'capsule_uuid' => '[A-Za-z0-9\-]+\=*',
1271
                                                'slide_uuid' => '[A-Za-z0-9\-]+\=*',
1272
                                            ],
1273
                                            'defaults' => [
1274
                                                'controller' => '\LeadersLinked\Controller\MicrolearningSlideController',
1275
                                                'action' => 'text'
1276
                                            ]
1277
                                        ]
1278
                                    ],
1279
                                ]
1280
                            ],
1089 geraldo 1281
                        ],
1282
                    ],
1 www 1283
                    'students' => [
1284
                        'type' => Literal::class,
1285
                        'options' => [
1286
                            'route' => '/students',
1287
                            'defaults' => [
1288
                                'controller' => '\LeadersLinked\Controller\MicrolearningStudentsController',
1289
                                'action' => 'index'
1290
                            ]
1291
                        ],
1292
                        'may_terminate' => true,
1293
                        'child_routes' => [
1294
                            'edit' => [
1295
                                'type' => Segment::class,
1296
                                'options' => [
1297
                                    'route' => '/edit/:id',
1298
                                    'constraints' => [
1299
                                        'id' => '[A-Za-z0-9\-]+\=*',
1300
                                    ],
1301
                                    'defaults' => [
1302
                                        'controller' => '\LeadersLinked\Controller\MicrolearningStudentsController',
1303
                                        'action' => 'edit'
1304
                                    ]
1305
                                ]
1306
                            ],
1307
                            'timeline' => [
1308
                                'type' => Segment::class,
1309
                                'options' => [
1310
                                    'route' => '/timeline/:id',
1311
                                    'constraints' => [
1312
                                        'id' => '[A-Za-z0-9\-]+\=*',
1313
                                    ],
1314
                                    'defaults' => [
1315
                                        'controller' => '\LeadersLinked\Controller\MicrolearningStudentsController',
1316
                                        'action' => 'timeline'
1317
                                    ]
1318
                                ]
1319
                            ],
1320
                            'change-password' => [
1321
                                'type' => Segment::class,
1322
                                'options' => [
1323
                                    'route' => '/change-password/:id',
1324
                                    'constraints' => [
1325
                                        'id' => '[A-Za-z0-9\-]+\=*'
1326
                                    ],
1327
                                    'defaults' => [
1328
                                        'controller' => '\LeadersLinked\Controller\MicrolearningStudentsController',
1329
                                        'action' => 'change-password'
1330
                                    ]
1331
                                ]
1332
                            ],
1333
                            'unblock' => [
1334
                                'type' => Segment::class,
1335
                                'options' => [
1336
                                    'route' => '/unblock/:id',
1337
                                    'constraints' => [
1338
                                        'id' => '[A-Za-z0-9\-]+\=*'
1339
                                    ],
1340
                                    'defaults' => [
1341
                                        'controller' => '\LeadersLinked\Controller\MicrolearningStudentsController',
1342
                                        'action' => 'unblock'
1343
                                    ]
1344
                                ]
1345
                            ],
1089 geraldo 1346
                        ]
1347
                    ],
1 www 1348
                    'access-for-students' => [
1349
                        'type' => Literal::class,
1350
                        'options' => [
1351
                            'route' => '/access-for-students',
1352
                            'defaults' => [
1353
                                'controller' => '\LeadersLinked\Controller\MicrolearningAccessForStudentsController',
1354
                                'action' => 'index'
1355
                            ]
1356
                        ],
1357
                        'may_terminate' => true,
1358
                        'child_routes' => [
1359
                            'revoke' => [
1360
                                'type' => Segment::class,
1361
                                'options' => [
1362
                                    'route' => '/revoke/topic/:topic_uuid/capsule/:capsule_uuid/user_uuid/:user_uuid',
1363
                                    'constraints' => [
1364
                                        'topic_uuid' => '[A-Za-z0-9\-]+\=*',
1365
                                        'capsule_uuid' => '[A-Za-z0-9\-]+\=*',
1366
                                        'user_uuid' => '[A-Za-z0-9\-]+\=*',
1367
                                    ],
1368
                                    'defaults' => [
1369
                                        'controller' => '\LeadersLinked\Controller\MicrolearningAccessForStudentsController',
1370
                                        'action' => 'revoke'
1371
                                    ]
1372
                                ]
1373
                            ],
1374
                            'unlimit' => [
1375
                                'type' => Segment::class,
1376
                                'options' => [
1377
                                    'route' => '/unlimit/topic/:topic_uuid/capsule/:capsule_uuid/user_uuid/:user_uuid',
1378
                                    'constraints' => [
1379
                                        'topic_uuid' => '[A-Za-z0-9\-]+\=*',
1380
                                        'capsule_uuid' => '[A-Za-z0-9\-]+\=*',
1381
                                        'user_uuid' => '[A-Za-z0-9\-]+\=*',
1382
                                    ],
1383
                                    'defaults' => [
1384
                                        'controller' => '\LeadersLinked\Controller\MicrolearningAccessForStudentsController',
1385
                                        'action' => 'unlimit'
1386
                                    ]
1387
                                ]
1388
                            ],
1389
                            'upload' => [
1390
                                'type' => Segment::class,
1391
                                'options' => [
1392
                                    'route' => '/upload/topic/:topic_uuid/capsule/:capsule_uuid',
1393
                                    'constraints' => [
1394
                                        'topic_uuid' => '[A-Za-z0-9\-]+\=*',
1395
                                        'capsule_uuid' => '[A-Za-z0-9\-]+\=*',
1396
                                    ],
1397
                                    'defaults' => [
1398
                                        'controller' => '\LeadersLinked\Controller\MicrolearningAccessForStudentsController',
1399
                                        'action' => 'upload'
1400
                                    ]
1401
                                ]
1402
                            ],
1403
                            'notification' => [
1404
                                'type' => Segment::class,
1405
                                'options' => [
1406
                                    'route' => '/notification/topic/:topic_uuid/capsule/:capsule_uuid',
1407
                                    'constraints' => [
1408
                                        'topic_uuid' => '[A-Za-z0-9\-]+\=*',
1409
                                        'capsule_uuid' => '[A-Za-z0-9\-]+\=*',
1410
                                    ],
1411
                                    'defaults' => [
1412
                                        'controller' => '\LeadersLinked\Controller\MicrolearningAccessForStudentsController',
1413
                                        'action' => 'notification'
1414
                                    ]
1415
                                ]
1416
                            ],
1417
                        ],
1089 geraldo 1418
                    ],
1 www 1419
                    'settings' => [
1420
                        'type' => Literal::class,
1421
                        'options' => [
1422
                            'route' => '/settings',
1423
                            'defaults' => [
1424
                                'controller' => '\LeadersLinked\Controller\MicrolearningController',
1425
                                'action' => 'index'
1426
                            ]
1427
                        ],
1428
                        'may_terminate' => true,
1429
                        'child_routes' => [
1430
                            'student-types' => [
1431
                                'type' => Literal::class,
1432
                                'options' => [
1433
                                    'route' => '/student-types',
1434
                                    'defaults' => [
1435
                                        'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserStudentTypeController',
1436
                                        'action' => 'index'
1437
                                    ]
1438
                                ],
1439
                                'may_terminate' => true,
1440
                                'child_routes' => [
1441
                                    'add' => [
1442
                                        'type' => Literal::class,
1443
                                        'options' => [
1444
                                            'route' => '/add',
1445
                                            'defaults' => [
1446
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserStudentTypeController',
1447
                                                'action' => 'add'
1448
                                            ]
1449
                                        ]
1450
                                    ],
1451
                                    'edit' => [
1452
                                        'type' => Segment::class,
1453
                                        'options' => [
1454
                                            'route' => '/edit/:id',
1455
                                            'constraints' => [
1456
                                                'id' => '[A-Za-z0-9\-]+\=*'
1457
                                            ],
1458
                                            'defaults' => [
1459
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserStudentTypeController',
1460
                                                'action' => 'edit'
1461
                                            ]
1462
                                        ]
1463
                                    ],
1464
                                    'delete' => [
1465
                                        'type' => Segment::class,
1466
                                        'options' => [
1467
                                            'route' => '/delete/:id',
1468
                                            'constraints' => [
1469
                                                'id' => '[A-Za-z0-9\-]+\=*'
1470
                                            ],
1471
                                            'defaults' => [
1472
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserStudentTypeController',
1473
                                                'action' => 'delete'
1474
                                            ]
1475
                                        ]
1476
                                    ]
1477
                                ]
1478
                            ],
1479
                            'functions' => [
1480
                                'type' => Literal::class,
1481
                                'options' => [
1482
                                    'route' => '/functions',
1483
                                    'defaults' => [
1484
                                        'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserFunctionController',
1485
                                        'action' => 'index'
1486
                                    ]
1487
                                ],
1488
                                'may_terminate' => true,
1489
                                'child_routes' => [
1490
                                    'add' => [
1491
                                        'type' => Literal::class,
1492
                                        'options' => [
1493
                                            'route' => '/add',
1494
                                            'defaults' => [
1495
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserFunctionController',
1496
                                                'action' => 'add'
1497
                                            ]
1498
                                        ]
1499
                                    ],
1500
                                    'edit' => [
1501
                                        'type' => Segment::class,
1502
                                        'options' => [
1503
                                            'route' => '/edit/:id',
1504
                                            'constraints' => [
1505
                                                'id' => '[A-Za-z0-9\-]+\=*'
1506
                                            ],
1507
                                            'defaults' => [
1508
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserFunctionController',
1509
                                                'action' => 'edit'
1510
                                            ]
1511
                                        ]
1512
                                    ],
1513
                                    'delete' => [
1514
                                        'type' => Segment::class,
1515
                                        'options' => [
1516
                                            'route' => '/delete/:id',
1517
                                            'constraints' => [
1518
                                                'id' => '[A-Za-z0-9\-]+\=*'
1519
                                            ],
1520
                                            'defaults' => [
1521
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserFunctionController',
1522
                                                'action' => 'delete'
1523
                                            ]
1524
                                        ]
1525
                                    ]
1526
                                ]
1527
                            ],
1528
                            'sectors' => [
1529
                                'type' => Literal::class,
1530
                                'options' => [
1531
                                    'route' => '/sectors',
1532
                                    'defaults' => [
1533
                                        'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserSectorController',
1534
                                        'action' => 'index'
1535
                                    ]
1536
                                ],
1537
                                'may_terminate' => true,
1538
                                'child_routes' => [
1539
                                    'add' => [
1540
                                        'type' => Literal::class,
1541
                                        'options' => [
1542
                                            'route' => '/add',
1543
                                            'defaults' => [
1544
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserSectorController',
1545
                                                'action' => 'add'
1546
                                            ]
1547
                                        ]
1548
                                    ],
1549
                                    'edit' => [
1550
                                        'type' => Segment::class,
1551
                                        'options' => [
1552
                                            'route' => '/edit/:id',
1553
                                            'constraints' => [
1554
                                                'id' => '[A-Za-z0-9\-]+\=*'
1555
                                            ],
1556
                                            'defaults' => [
1557
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserSectorController',
1558
                                                'action' => 'edit'
1559
                                            ]
1560
                                        ]
1561
                                    ],
1562
                                    'delete' => [
1563
                                        'type' => Segment::class,
1564
                                        'options' => [
1565
                                            'route' => '/delete/:id',
1566
                                            'constraints' => [
1567
                                                'id' => '[A-Za-z0-9\-]+\=*'
1568
                                            ],
1569
                                            'defaults' => [
1570
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserSectorController',
1571
                                                'action' => 'delete'
1572
                                            ]
1573
                                        ]
1574
                                    ]
1575
                                ]
1576
                            ],
1577
                            'programs' => [
1578
                                'type' => Literal::class,
1579
                                'options' => [
1580
                                    'route' => '/programs',
1581
                                    'defaults' => [
1582
                                        'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserProgramController',
1583
                                        'action' => 'index'
1584
                                    ]
1585
                                ],
1586
                                'may_terminate' => true,
1587
                                'child_routes' => [
1588
                                    'add' => [
1589
                                        'type' => Literal::class,
1590
                                        'options' => [
1591
                                            'route' => '/add',
1592
                                            'defaults' => [
1593
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserProgramController',
1594
                                                'action' => 'add'
1595
                                            ]
1596
                                        ]
1597
                                    ],
1598
                                    'edit' => [
1599
                                        'type' => Segment::class,
1600
                                        'options' => [
1601
                                            'route' => '/edit/:id',
1602
                                            'constraints' => [
1603
                                                'id' => '[A-Za-z0-9\-]+\=*'
1604
                                            ],
1605
                                            'defaults' => [
1606
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserProgramController',
1607
                                                'action' => 'edit'
1608
                                            ]
1609
                                        ]
1610
                                    ],
1611
                                    'delete' => [
1612
                                        'type' => Segment::class,
1613
                                        'options' => [
1614
                                            'route' => '/delete/:id',
1615
                                            'constraints' => [
1616
                                                'id' => '[A-Za-z0-9\-]+\=*'
1617
                                            ],
1618
                                            'defaults' => [
1619
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserProgramController',
1620
                                                'action' => 'delete'
1621
                                            ]
1622
                                        ]
1623
                                    ]
1624
                                ]
1625
                            ],
1626
                            'groups' => [
1627
                                'type' => Literal::class,
1628
                                'options' => [
1629
                                    'route' => '/groups',
1630
                                    'defaults' => [
1631
                                        'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserGroupController',
1632
                                        'action' => 'index'
1633
                                    ]
1634
                                ],
1635
                                'may_terminate' => true,
1636
                                'child_routes' => [
1637
                                    'add' => [
1638
                                        'type' => Literal::class,
1639
                                        'options' => [
1640
                                            'route' => '/add',
1641
                                            'defaults' => [
1642
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserGroupController',
1643
                                                'action' => 'add'
1644
                                            ]
1645
                                        ]
1646
                                    ],
1647
                                    'edit' => [
1648
                                        'type' => Segment::class,
1649
                                        'options' => [
1650
                                            'route' => '/edit/:id',
1651
                                            'constraints' => [
1652
                                                'id' => '[A-Za-z0-9\-]+\=*'
1653
                                            ],
1654
                                            'defaults' => [
1655
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserGroupController',
1656
                                                'action' => 'edit'
1657
                                            ]
1658
                                        ]
1659
                                    ],
1660
                                    'delete' => [
1661
                                        'type' => Segment::class,
1662
                                        'options' => [
1663
                                            'route' => '/delete/:id',
1664
                                            'constraints' => [
1665
                                                'id' => '[A-Za-z0-9\-]+\=*'
1666
                                            ],
1667
                                            'defaults' => [
1668
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserGroupController',
1669
                                                'action' => 'delete'
1670
                                            ]
1671
                                        ]
1672
                                    ]
1673
                                ]
1674
                            ],
1675
                            'companies' => [
1676
                                'type' => Literal::class,
1677
                                'options' => [
1678
                                    'route' => '/companies',
1679
                                    'defaults' => [
1680
                                        'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserCompanyController',
1681
                                        'action' => 'index'
1682
                                    ]
1683
                                ],
1684
                                'may_terminate' => true,
1685
                                'child_routes' => [
1686
                                    'add' => [
1687
                                        'type' => Literal::class,
1688
                                        'options' => [
1689
                                            'route' => '/add',
1690
                                            'defaults' => [
1691
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserCompanyController',
1692
                                                'action' => 'add'
1693
                                            ]
1694
                                        ]
1695
                                    ],
1696
                                    'edit' => [
1697
                                        'type' => Segment::class,
1698
                                        'options' => [
1699
                                            'route' => '/edit/:id',
1700
                                            'constraints' => [
1701
                                                'id' => '[A-Za-z0-9\-]+\=*'
1702
                                            ],
1703
                                            'defaults' => [
1704
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserCompanyController',
1705
                                                'action' => 'edit'
1706
                                            ]
1707
                                        ]
1708
                                    ],
1709
                                    'delete' => [
1710
                                        'type' => Segment::class,
1711
                                        'options' => [
1712
                                            'route' => '/delete/:id',
1713
                                            'constraints' => [
1714
                                                'id' => '[A-Za-z0-9\-]+\=*'
1715
                                            ],
1716
                                            'defaults' => [
1717
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserCompanyController',
1718
                                                'action' => 'delete'
1719
                                            ]
1720
                                        ]
1721
                                    ]
1722
                                ]
1723
                            ],
1724
                            'partners' => [
1725
                                'type' => Literal::class,
1726
                                'options' => [
1727
                                    'route' => '/partners',
1728
                                    'defaults' => [
1729
                                        'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserPartnerController',
1730
                                        'action' => 'index'
1731
                                    ]
1732
                                ],
1733
                                'may_terminate' => true,
1734
                                'child_routes' => [
1735
                                    'add' => [
1736
                                        'type' => Literal::class,
1737
                                        'options' => [
1738
                                            'route' => '/add',
1739
                                            'defaults' => [
1740
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserPartnerController',
1741
                                                'action' => 'add'
1742
                                            ]
1743
                                        ]
1744
                                    ],
1745
                                    'edit' => [
1746
                                        'type' => Segment::class,
1747
                                        'options' => [
1748
                                            'route' => '/edit/:id',
1749
                                            'constraints' => [
1750
                                                'id' => '[A-Za-z0-9\-]+\=*'
1751
                                            ],
1752
                                            'defaults' => [
1753
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserPartnerController',
1754
                                                'action' => 'edit'
1755
                                            ]
1756
                                        ]
1757
                                    ],
1758
                                    'delete' => [
1759
                                        'type' => Segment::class,
1760
                                        'options' => [
1761
                                            'route' => '/delete/:id',
1762
                                            'constraints' => [
1763
                                                'id' => '[A-Za-z0-9\-]+\=*'
1764
                                            ],
1765
                                            'defaults' => [
1766
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserPartnerController',
1767
                                                'action' => 'delete'
1768
                                            ]
1769
                                        ]
1770
                                    ]
1771
                                ]
1772
                            ],
1773
                            'institutions' => [
1774
                                'type' => Literal::class,
1775
                                'options' => [
1776
                                    'route' => '/institutions',
1777
                                    'defaults' => [
1778
                                        'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserInstitutionController',
1779
                                        'action' => 'index'
1780
                                    ]
1781
                                ],
1782
                                'may_terminate' => true,
1783
                                'child_routes' => [
1784
                                    'add' => [
1785
                                        'type' => Literal::class,
1786
                                        'options' => [
1787
                                            'route' => '/add',
1788
                                            'defaults' => [
1789
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserInstitutionController',
1790
                                                'action' => 'add'
1791
                                            ]
1792
                                        ]
1793
                                    ],
1794
                                    'edit' => [
1795
                                        'type' => Segment::class,
1796
                                        'options' => [
1797
                                            'route' => '/edit/:id',
1798
                                            'constraints' => [
1799
                                                'id' => '[A-Za-z0-9\-]+\=*'
1800
                                            ],
1801
                                            'defaults' => [
1802
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserInstitutionController',
1803
                                                'action' => 'edit'
1804
                                            ]
1805
                                        ]
1806
                                    ],
1807
                                    'delete' => [
1808
                                        'type' => Segment::class,
1809
                                        'options' => [
1810
                                            'route' => '/delete/:id',
1811
                                            'constraints' => [
1812
                                                'id' => '[A-Za-z0-9\-]+\=*'
1813
                                            ],
1814
                                            'defaults' => [
1815
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserInstitutionController',
1816
                                                'action' => 'delete'
1817
                                            ]
1818
                                        ]
1819
                                    ]
1820
                                ]
1821
                            ],
1822
                        ]
1089 geraldo 1823
                    ],
1 www 1824
                ],
1089 geraldo 1825
            ],
1826
            /*             * * START PUBLICATIONS ** */
1 www 1827
            'publications' => [
1828
                'type' => Literal::class,
1829
                'options' => [
1830
                    'route' => '/publications',
1831
                    'defaults' => [
1832
                        'controller' => '\LeadersLinked\Controller\DashboardController',
1833
                        'action' => 'index'
1834
                    ]
1835
                ],
1836
                'may_terminate' => true,
1837
                'child_routes' => [
1838
                    'pages' => [
1839
                        'type' => Literal::class,
1840
                        'options' => [
1841
                            'route' => '/pages',
1842
                            'defaults' => [
1843
                                'controller' => '\LeadersLinked\Controller\PageController',
1844
                                'action' => 'index'
1845
                            ]
1846
                        ],
1847
                        'may_terminate' => true,
1848
                        'child_routes' => [
1849
                            'add' => [
1850
                                'type' => Literal::class,
1851
                                'options' => [
1852
                                    'route' => '/add',
1853
                                    'defaults' => [
1854
                                        'controller' => '\LeadersLinked\Controller\PageController',
1855
                                        'action' => 'add'
1856
                                    ]
1857
                                ]
1858
                            ],
1859
                            'edit' => [
1860
                                'type' => Segment::class,
1861
                                'options' => [
1862
                                    'route' => '/edit/:id',
1863
                                    'constraints' => [
1864
                                        'id' => '[A-Za-z0-9\-]+\=*'
1865
                                    ],
1866
                                    'defaults' => [
1867
                                        'controller' => '\LeadersLinked\Controller\PageController',
1868
                                        'action' => 'edit'
1869
                                    ]
1870
                                ]
1871
                            ],
1872
                            'delete' => [
1873
                                'type' => Segment::class,
1874
                                'options' => [
1875
                                    'route' => '/delete/:id',
1876
                                    'constraints' => [
1877
                                        'id' => '[A-Za-z0-9\-]+\=*'
1878
                                    ],
1879
                                    'defaults' => [
1880
                                        'controller' => '\LeadersLinked\Controller\PageController',
1881
                                        'action' => 'delete'
1882
                                    ]
1883
                                ]
1884
                            ]
1885
                        ]
1886
                    ],
1887
                    'posts' => [
1888
                        'type' => Literal::class,
1889
                        'options' => [
1890
                            'route' => '/posts',
1891
                            'defaults' => [
1892
                                'controller' => '\LeadersLinked\Controller\PostController',
1893
                                'action' => 'index'
1894
                            ]
1895
                        ],
1896
                        'may_terminate' => true,
1897
                        'child_routes' => [
1898
                            'add' => [
1899
                                'type' => Literal::class,
1900
                                'options' => [
1901
                                    'route' => '/add',
1902
                                    'defaults' => [
1903
                                        'controller' => '\LeadersLinked\Controller\PostController',
1904
                                        'action' => 'add'
1905
                                    ]
1906
                                ]
1907
                            ],
1908
                            'edit' => [
1909
                                'type' => Segment::class,
1910
                                'options' => [
1911
                                    'route' => '/edit/:id',
1912
                                    'constraints' => [
1913
                                        'id' => '[A-Za-z0-9\-]+\=*'
1914
                                    ],
1915
                                    'defaults' => [
1916
                                        'controller' => '\LeadersLinked\Controller\PostController',
1917
                                        'action' => 'edit'
1918
                                    ]
1919
                                ]
1920
                            ],
1921
                            'delete' => [
1922
                                'type' => Segment::class,
1923
                                'options' => [
1924
                                    'route' => '/delete/:id',
1925
                                    'constraints' => [
1926
                                        'id' => '[A-Za-z0-9\-]+\=*'
1927
                                    ],
1928
                                    'defaults' => [
1929
                                        'controller' => '\LeadersLinked\Controller\PostController',
1930
                                        'action' => 'delete'
1931
                                    ]
1932
                                ]
1933
                            ]
1934
                        ]
1935
                    ],
1936
                ]
1089 geraldo 1937
            ],
1938
            /*             * * START SELF EVALUATION ** */
114 efrain 1939
            'self-evaluation' => [
1940
                'type' => Literal::class,
1941
                'options' => [
1942
                    'route' => '/self-evaluation',
1943
                    'defaults' => [
115 efrain 1944
                        'controller' => '\LeadersLinked\Controller\SelfEvaluationController',
114 efrain 1945
                        'action' => 'index'
1946
                    ]
1947
                ],
1948
                'may_terminate' => true,
1949
                'child_routes' => [
1950
                    'forms' => [
1951
                        'type' => Literal::class,
1952
                        'options' => [
1953
                            'route' => '/forms',
1954
                            'defaults' => [
115 efrain 1955
                                'controller' => '\LeadersLinked\Controller\SelfEvaluationFormController',
114 efrain 1956
                                'action' => 'index'
1957
                            ]
1958
                        ],
1959
                        'may_terminate' => true,
1960
                        'child_routes' => [
1961
                            'add' => [
1962
                                'type' => Literal::class,
1963
                                'options' => [
1964
                                    'route' => '/add',
1965
                                    'defaults' => [
115 efrain 1966
                                        'controller' => '\LeadersLinked\Controller\SelfEvaluationFormController',
114 efrain 1967
                                        'action' => 'add'
1968
                                    ]
1969
                                ]
1970
                            ],
1971
                            'edit' => [
1972
                                'type' => Segment::class,
1973
                                'options' => [
1974
                                    'route' => '/edit/:id',
1975
                                    'constraints' => [
1976
                                        'id' => '[A-Za-z0-9\-]+\=*'
1977
                                    ],
1978
                                    'defaults' => [
115 efrain 1979
                                        'controller' => '\LeadersLinked\Controller\SelfEvaluationFormController',
114 efrain 1980
                                        'action' => 'edit'
1981
                                    ]
1982
                                ]
1983
                            ],
1984
                            'delete' => [
1985
                                'type' => Segment::class,
1986
                                'options' => [
1987
                                    'route' => '/delete/:id',
1988
                                    'constraints' => [
1989
                                        'id' => '[A-Za-z0-9\-]+\=*'
1990
                                    ],
1991
                                    'defaults' => [
115 efrain 1992
                                        'controller' => '\LeadersLinked\Controller\SelfEvaluationFormController',
114 efrain 1993
                                        'action' => 'delete'
1994
                                    ]
1995
                                ]
1996
                            ]
1997
                        ]
1998
                    ],
115 efrain 1999
                    'users' => [
2000
                        'type' => Literal::class,
2001
                        'options' => [
2002
                            'route' => '/users',
2003
                            'defaults' => [
2004
                                'controller' => '\LeadersLinked\Controller\SelfEvaluationFormUserController',
2005
                                'action' => 'index'
2006
                            ]
2007
                        ],
2008
                        'may_terminate' => true,
2009
                        'child_routes' => [
2010
                            'add' => [
2011
                                'type' => Segment::class,
2012
                                'options' => [
2013
                                    'route' => '/add/:form_id/:user_id',
2014
                                    'constraints' => [
2015
                                        'form_id' => '[A-Za-z0-9\-]+\=*',
2016
                                        'user_id' => '[A-Za-z0-9\-]+\=*'
2017
                                    ],
2018
                                    'defaults' => [
2019
                                        'controller' => '\LeadersLinked\Controller\SelfEvaluationFormUserController',
2020
                                        'action' => 'add'
2021
                                    ]
2022
                                ]
2023
                            ],
2024
                            'delete' => [
2025
                                'type' => Segment::class,
2026
                                'options' => [
2027
                                    'route' => '/delete/:form_id/:user_id',
2028
                                    'constraints' => [
2029
                                        'form_id' => '[A-Za-z0-9\-]+\=*',
2030
                                        'user_id' => '[A-Za-z0-9\-]+\=*'
2031
                                    ],
2032
                                    'defaults' => [
2033
                                        'controller' => '\LeadersLinked\Controller\SelfEvaluationFormUserController',
2034
                                        'action' => 'delete'
2035
                                    ]
2036
                                ]
2037
                            ]
2038
                        ]
2039
                    ],
114 efrain 2040
                    'reviews' => [
2041
                        'type' => Literal::class,
2042
                        'options' => [
2043
                            'route' => '/reviews',
2044
                            'defaults' => [
115 efrain 2045
                                'controller' => '\LeadersLinked\Controller\SelfEvaluationReviewController',
114 efrain 2046
                                'action' => 'index'
2047
                            ]
2048
                        ],
2049
                        'may_terminate' => true,
2050
                        'child_routes' => [
2051
                            'edit' => [
2052
                                'type' => Segment::class,
2053
                                'options' => [
2054
                                    'route' => '/edit/:id',
2055
                                    'constraints' => [
2056
                                        'id' => '[A-Za-z0-9\-]+\=*'
2057
                                    ],
2058
                                    'defaults' => [
115 efrain 2059
                                        'controller' => '\LeadersLinked\Controller\SelfEvaluationReviewController',
486 geraldo 2060
                                        'action' => 'edit'
114 efrain 2061
                                    ]
2062
                                ]
2063
                            ],
469 geraldo 2064
                            'report' => [
2065
                                'type' => Segment::class,
2066
                                'options' => [
2067
                                    'route' => '/report/:id',
2068
                                    'constraints' => [
2069
                                        'id' => '[A-Za-z0-9\-]+\=*'
2070
                                    ],
2071
                                    'defaults' => [
2072
                                        'controller' => '\LeadersLinked\Controller\SelfEvaluationReviewController',
487 geraldo 2073
                                        'action' => 'report'
469 geraldo 2074
                                    ]
2075
                                ]
2076
                            ],
114 efrain 2077
                        ]
2078
                    ],
2079
                ]
1089 geraldo 2080
            ],
2081
            /*             * * END SELF EVALUATION ** */
946 geraldo 2082
 
1089 geraldo 2083
            /*             * * START PERFOMANCE EVALUATION ** */
946 geraldo 2084
            'performance-evaluation' => [
2085
                'type' => Literal::class,
2086
                'options' => [
2087
                    'route' => '/performance-evaluation',
2088
                    'defaults' => [
980 geraldo 2089
                        'controller' => '\LeadersLinked\Controller\SelfEvaluationController',
946 geraldo 2090
                        'action' => 'index'
2091
                    ]
2092
                ],
2093
                'may_terminate' => true,
2094
                'child_routes' => [
2095
                    'forms' => [
2096
                        'type' => Literal::class,
2097
                        'options' => [
2098
                            'route' => '/forms',
2099
                            'defaults' => [
977 geraldo 2100
                                'controller' => '\LeadersLinked\Controller\PerformanceEvaluationFormController',
946 geraldo 2101
                                'action' => 'index'
2102
                            ]
2103
                        ],
2104
                        'may_terminate' => true,
2105
                        'child_routes' => [
2106
                            'add' => [
2107
                                'type' => Literal::class,
2108
                                'options' => [
2109
                                    'route' => '/add',
2110
                                    'defaults' => [
977 geraldo 2111
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationFormController',
946 geraldo 2112
                                        'action' => 'add'
2113
                                    ]
2114
                                ]
2115
                            ],
2116
                            'edit' => [
2117
                                'type' => Segment::class,
2118
                                'options' => [
2119
                                    'route' => '/edit/:id',
2120
                                    'constraints' => [
2121
                                        'id' => '[A-Za-z0-9\-]+\=*'
2122
                                    ],
2123
                                    'defaults' => [
986 geraldo 2124
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationFormController',
946 geraldo 2125
                                        'action' => 'edit'
2126
                                    ]
2127
                                ]
2128
                            ],
2129
                            'delete' => [
2130
                                'type' => Segment::class,
2131
                                'options' => [
2132
                                    'route' => '/delete/:id',
2133
                                    'constraints' => [
2134
                                        'id' => '[A-Za-z0-9\-]+\=*'
2135
                                    ],
2136
                                    'defaults' => [
986 geraldo 2137
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationFormController',
946 geraldo 2138
                                        'action' => 'delete'
2139
                                    ]
2140
                                ]
1263 geraldo 2141
                                    ],
2142
                            'report' => [
2143
                                'type' => Segment::class,
2144
                                'options' => [
2145
                                    'route' => '/report/:id',
2146
                                    'constraints' => [
2147
                                        'id' => '[A-Za-z0-9\-]+\=*'
2148
                                    ],
2149
                                    'defaults' => [
2150
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationFormController',
2151
                                        'action' => 'report'
2152
                                    ]
2153
                                ]
2154
                            ],
946 geraldo 2155
                        ]
2156
                    ],
1383 efrain 2157
                    'evaluations' => [
946 geraldo 2158
                        'type' => Literal::class,
2159
                        'options' => [
1383 efrain 2160
                            'route' => '/evaluations',
946 geraldo 2161
                            'defaults' => [
1383 efrain 2162
                                'controller' => '\LeadersLinked\Controller\PerformanceEvaluationEvaluationController',
946 geraldo 2163
                                'action' => 'index'
2164
                            ]
2165
                        ],
2166
                        'may_terminate' => true,
2167
                        'child_routes' => [
1383 efrain 2168
                            'add' => [
1320 efrain 2169
                                'type' => Literal::class,
946 geraldo 2170
                                'options' => [
1383 efrain 2171
                                    'route' => '/add',
946 geraldo 2172
                                    'defaults' => [
1383 efrain 2173
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationEvaluationController',
2174
                                        'action' => 'add'
946 geraldo 2175
                                    ]
1383 efrain 2176
                                ]
2177
                            ],
7902 eleazar 2178
                            'delete' => [
1383 efrain 2179
                                'type' => Segment::class,
2180
                                'options' => [
7902 eleazar 2181
                                    'route' => '/delete/:id',
1383 efrain 2182
                                    'constraints' => [
2183
                                        'id' => '[A-Za-z0-9\-]+\=*',
1320 efrain 2184
                                    ],
1383 efrain 2185
                                    'defaults' => [
2186
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationEvaluationController',
7902 eleazar 2187
                                        'action' => 'delete'
1320 efrain 2188
                                    ]
946 geraldo 2189
                                ]
1383 efrain 2190
                            ],
7902 eleazar 2191
                            'self' => [
7947 eleazar 2192
                                'type' => Segment::class,
1383 efrain 2193
                                'options' => [
7907 eleazar 2194
                                    'route' => '/self/:id',
2195
                                    'constraints' => [
2196
                                        'id' => '[A-Za-z0-9\-]+\=*',
2197
                                    ],
1383 efrain 2198
                                    'defaults' => [
2199
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationEvaluationController',
7902 eleazar 2200
                                        'action' => 'self'
1383 efrain 2201
                                    ]
2202
                                ]
2203
                            ],
7902 eleazar 2204
                            'both' => [
7947 eleazar 2205
                                'type' => Segment::class,
946 geraldo 2206
                                'options' => [
7907 eleazar 2207
                                    'route' => '/both/:id',
2208
                                    'constraints' => [
2209
                                        'id' => '[A-Za-z0-9\-]+\=*',
2210
                                    ],
946 geraldo 2211
                                    'defaults' => [
1383 efrain 2212
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationEvaluationController',
7902 eleazar 2213
                                        'action' => 'both'
946 geraldo 2214
                                    ]
2215
                                ]
1383 efrain 2216
                            ],
7902 eleazar 2217
                            'superviser' => [
7947 eleazar 2218
                                'type' => Segment::class,
7902 eleazar 2219
                                'options' => [
7907 eleazar 2220
                                    'route' => '/superviser/:id',
2221
                                    'constraints' => [
2222
                                        'id' => '[A-Za-z0-9\-]+\=*',
2223
                                    ],
7902 eleazar 2224
                                    'defaults' => [
2225
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationEvaluationController',
2226
                                        'action' => 'superviser'
2227
                                    ]
2228
                                ]
2229
                            ],
8220 eleazar 2230
                            'report-self' =>[
8176 eleazar 2231
                                'type' => Segment::class,
2232
                                'options' => [
8220 eleazar 2233
                                    'route' => '/report-self/:id',
8176 eleazar 2234
                                    'constraints' => [
2235
                                        'id' => '[A-Za-z0-9\-]+\=*'
2236
                                    ],
2237
                                    'defaults' => [
2238
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationEvaluationController',
8177 eleazar 2239
                                        'action' => 'reportSelf',
8176 eleazar 2240
                                    ],
2241
                                ],
2242
                            ],
8220 eleazar 2243
                            'report-both' =>[
8177 eleazar 2244
                                'type' => Segment::class,
2245
                                'options' => [
8220 eleazar 2246
                                    'route' => '/report-both/:id',
8177 eleazar 2247
                                    'constraints' => [
2248
                                        'id' => '[A-Za-z0-9\-]+\=*'
2249
                                    ],
2250
                                    'defaults' => [
2251
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationEvaluationController',
2252
                                        'action' => 'reportBoth',
2253
                                    ],
2254
                                ],
2255
                            ],
8249 eleazar 2256
                            'report-superviser' =>[
8177 eleazar 2257
                                'type' => Segment::class,
2258
                                'options' => [
8249 eleazar 2259
                                    'route' => '/report-superviser/:id',
8177 eleazar 2260
                                    'constraints' => [
2261
                                        'id' => '[A-Za-z0-9\-]+\=*'
2262
                                    ],
2263
                                    'defaults' => [
2264
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationEvaluationController',
2265
                                        'action' => 'reportSupervisor',
2266
                                    ],
2267
                                ],
2268
                            ],
8068 eleazar 2269
                            'user-by-email' => [
2270
                                'type' => Literal::class,
2271
                                'options' => [
2272
                                    'route' => '/user-by-email',
2273
                                    'defaults' => [
2274
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
2275
                                        'action' => 'email'
2276
                                    ]
2277
                                ]
2278
                            ],
946 geraldo 2279
                        ]
2280
                    ],
2281
                ]
1089 geraldo 2282
            ],
2283
            /*             * * END PERFORMANCE EVALUATION ** */
2284
 
2285
            /*             * * START SETTINGS ** */
1 www 2286
            'settings' => [
2287
                'type' => Literal::class,
2288
                'options' => [
2289
                    'route' => '/settings',
2290
                    'defaults' => [
2291
                        'controller' => '\LeadersLinked\Controller\DashboardController',
2292
                        'action' => 'index'
2293
                    ]
2294
                ],
2295
                'may_terminate' => true,
2296
                'child_routes' => [
2297
                    'company-sizes' => [
2298
                        'type' => Literal::class,
2299
                        'options' => [
2300
                            'route' => '/company-sizes',
2301
                            'defaults' => [
2302
                                'controller' => '\LeadersLinked\Controller\CompanySizeController',
2303
                                'action' => 'index'
2304
                            ]
2305
                        ],
2306
                        'may_terminate' => true,
2307
                        'child_routes' => [
2308
                            'add' => [
2309
                                'type' => Literal::class,
2310
                                'options' => [
2311
                                    'route' => '/add',
2312
                                    'defaults' => [
2313
                                        'controller' => '\LeadersLinked\Controller\CompanySizeController',
2314
                                        'action' => 'add'
2315
                                    ]
2316
                                ]
2317
                            ],
2318
                            'edit' => [
2319
                                'type' => Segment::class,
2320
                                'options' => [
2321
                                    'route' => '/edit/:id',
2322
                                    'constraints' => [
2323
                                        'id' => '[A-Za-z0-9\-]+\=*'
2324
                                    ],
2325
                                    'defaults' => [
2326
                                        'controller' => '\LeadersLinked\Controller\CompanySizeController',
2327
                                        'action' => 'edit'
2328
                                    ]
2329
                                ]
2330
                            ],
2331
                            'delete' => [
2332
                                'type' => Segment::class,
2333
                                'options' => [
2334
                                    'route' => '/delete/:id',
2335
                                    'constraints' => [
2336
                                        'id' => '[A-Za-z0-9\-]+\=*'
2337
                                    ],
2338
                                    'defaults' => [
2339
                                        'controller' => '\LeadersLinked\Controller\CompanySizeController',
2340
                                        'action' => 'delete'
2341
                                    ]
2342
                                ]
2343
                            ]
2344
                        ]
2345
                    ],
2346
                    'competency-types' => [
2347
                        'type' => Literal::class,
2348
                        'options' => [
2349
                            'route' => '/competency-types',
2350
                            'defaults' => [
2351
                                'controller' => '\LeadersLinked\Controller\CompetencyTypeController',
2352
                                'action' => 'index'
2353
                            ]
2354
                        ],
2355
                        'may_terminate' => true,
2356
                        'child_routes' => [
2357
                            'add' => [
2358
                                'type' => Literal::class,
2359
                                'options' => [
2360
                                    'route' => '/add',
2361
                                    'defaults' => [
2362
                                        'controller' => '\LeadersLinked\Controller\CompetencyTypeController',
2363
                                        'action' => 'add'
2364
                                    ]
2365
                                ]
2366
                            ],
2367
                            'edit' => [
2368
                                'type' => Segment::class,
2369
                                'options' => [
2370
                                    'route' => '/edit/:id',
2371
                                    'constraints' => [
2372
                                        'id' => '[A-Za-z0-9\-]+\=*'
2373
                                    ],
2374
                                    'defaults' => [
2375
                                        'controller' => '\LeadersLinked\Controller\CompetencyTypeController',
2376
                                        'action' => 'edit'
2377
                                    ]
2378
                                ]
2379
                            ],
2380
                            'delete' => [
2381
                                'type' => Segment::class,
2382
                                'options' => [
2383
                                    'route' => '/delete/:id',
2384
                                    'constraints' => [
2385
                                        'id' => '[A-Za-z0-9\-]+\=*'
2386
                                    ],
2387
                                    'defaults' => [
2388
                                        'controller' => '\LeadersLinked\Controller\CompetencyTypeController',
2389
                                        'action' => 'delete'
2390
                                    ]
2391
                                ]
28 efrain 2392
                            ],
2393
                            'import' => [
2394
                                'type' => Literal::class,
2395
                                'options' => [
2396
                                    'route' => '/import',
2397
                                    'defaults' => [
2398
                                        'controller' => '\LeadersLinked\Controller\CompetencyTypeController',
2399
                                        'action' => 'import'
2400
                                    ]
2401
                                ]
2402
                            ],
1 www 2403
                        ]
2404
                    ],
1104 geraldo 2405
                    'behaviors' => [
2406
                        'type' => Literal::class,
2407
                        'options' => [
2408
                            'route' => '/behaviors',
2409
                            'defaults' => [
2410
                                'controller' => '\LeadersLinked\Controller\BehaviorsController',
2411
                                'action' => 'index'
2412
                            ]
2413
                        ],
2414
                        'may_terminate' => true,
2415
                        'child_routes' => [
2416
                            'add' => [
2417
                                'type' => Literal::class,
2418
                                'options' => [
2419
                                    'route' => '/add',
2420
                                    'defaults' => [
2421
                                        'controller' => '\LeadersLinked\Controller\BehaviorsController',
2422
                                        'action' => 'add'
2423
                                    ]
2424
                                ]
1115 geraldo 2425
                            ],
2426
                            'edit' => [
2427
                                'type' => Segment::class,
2428
                                'options' => [
2429
                                    'route' => '/edit/:id',
2430
                                    'constraints' => [
2431
                                        'id' => '[A-Za-z0-9\-]+\=*'
2432
                                    ],
2433
                                    'defaults' => [
2434
                                        'controller' => '\LeadersLinked\Controller\BehaviorsController',
2435
                                        'action' => 'edit'
2436
                                    ]
2437
                                ]
2438
                            ],
1104 geraldo 2439
                        ]
2440
                    ],
1 www 2441
                    'competencies' => [
2442
                        'type' => Literal::class,
2443
                        'options' => [
2444
                            'route' => '/competencies',
2445
                            'defaults' => [
2446
                                'controller' => '\LeadersLinked\Controller\CompetencyController',
2447
                                'action' => 'index'
2448
                            ]
2449
                        ],
2450
                        'may_terminate' => true,
2451
                        'child_routes' => [
2452
                            'add' => [
2453
                                'type' => Literal::class,
2454
                                'options' => [
2455
                                    'route' => '/add',
2456
                                    'defaults' => [
2457
                                        'controller' => '\LeadersLinked\Controller\CompetencyController',
2458
                                        'action' => 'add'
2459
                                    ]
2460
                                ]
2461
                            ],
2462
                            'edit' => [
2463
                                'type' => Segment::class,
2464
                                'options' => [
2465
                                    'route' => '/edit/:id',
2466
                                    'constraints' => [
2467
                                        'id' => '[A-Za-z0-9\-]+\=*'
2468
                                    ],
2469
                                    'defaults' => [
2470
                                        'controller' => '\LeadersLinked\Controller\CompetencyController',
2471
                                        'action' => 'edit'
2472
                                    ]
2473
                                ]
2474
                            ],
2475
                            'delete' => [
2476
                                'type' => Segment::class,
2477
                                'options' => [
2478
                                    'route' => '/delete/:id',
2479
                                    'constraints' => [
2480
                                        'id' => '[A-Za-z0-9\-]+\=*'
2481
                                    ],
2482
                                    'defaults' => [
2483
                                        'controller' => '\LeadersLinked\Controller\CompetencyController',
2484
                                        'action' => 'delete'
2485
                                    ]
2486
                                ]
28 efrain 2487
                            ],
2488
                            'import' => [
2489
                                'type' => Literal::class,
2490
                                'options' => [
2491
                                    'route' => '/import',
2492
                                    'defaults' => [
2493
                                        'controller' => '\LeadersLinked\Controller\CompetencyController',
2494
                                        'action' => 'import'
2495
                                    ]
2496
                                ]
2497
                            ],
1 www 2498
                        ]
2499
                    ],
2500
                    'degrees' => [
2501
                        'type' => Literal::class,
2502
                        'options' => [
2503
                            'route' => '/degrees',
2504
                            'defaults' => [
2505
                                'controller' => '\LeadersLinked\Controller\DegreeController',
2506
                                'action' => 'index'
2507
                            ]
2508
                        ],
2509
                        'may_terminate' => true,
2510
                        'child_routes' => [
2511
                            'add' => [
2512
                                'type' => Literal::class,
2513
                                'options' => [
2514
                                    'route' => '/add',
2515
                                    'defaults' => [
2516
                                        'controller' => '\LeadersLinked\Controller\DegreeController',
2517
                                        'action' => 'add'
2518
                                    ]
2519
                                ]
2520
                            ],
2521
                            'edit' => [
2522
                                'type' => Segment::class,
2523
                                'options' => [
2524
                                    'route' => '/edit/:id',
2525
                                    'constraints' => [
2526
                                        'id' => '[A-Za-z0-9\-]+\=*'
2527
                                    ],
2528
                                    'defaults' => [
2529
                                        'controller' => '\LeadersLinked\Controller\DegreeController',
2530
                                        'action' => 'edit'
2531
                                    ]
2532
                                ]
2533
                            ],
2534
                            'delete' => [
2535
                                'type' => Segment::class,
2536
                                'options' => [
2537
                                    'route' => '/delete/:id',
2538
                                    'constraints' => [
2539
                                        'id' => '[A-Za-z0-9\-]+\=*'
2540
                                    ],
2541
                                    'defaults' => [
2542
                                        'controller' => '\LeadersLinked\Controller\DegreeController',
2543
                                        'action' => 'delete'
2544
                                    ]
2545
                                ]
2546
                            ]
2547
                        ]
2548
                    ],
2549
                    'group-types' => [
2550
                        'type' => Literal::class,
2551
                        'options' => [
2552
                            'route' => '/competency-types',
2553
                            'defaults' => [
2554
                                'controller' => '\LeadersLinked\Controller\GroupTypeController',
2555
                                'action' => 'index'
2556
                            ]
2557
                        ],
2558
                        'may_terminate' => true,
2559
                        'child_routes' => [
2560
                            'add' => [
2561
                                'type' => Literal::class,
2562
                                'options' => [
2563
                                    'route' => '/add',
2564
                                    'defaults' => [
2565
                                        'controller' => '\LeadersLinked\Controller\GroupTypeController',
2566
                                        'action' => 'add'
2567
                                    ]
2568
                                ]
2569
                            ],
2570
                            'edit' => [
2571
                                'type' => Segment::class,
2572
                                'options' => [
2573
                                    'route' => '/edit/:id',
2574
                                    'constraints' => [
2575
                                        'id' => '[A-Za-z0-9\-]+\=*'
2576
                                    ],
2577
                                    'defaults' => [
2578
                                        'controller' => '\LeadersLinked\Controller\GroupTypeController',
2579
                                        'action' => 'edit'
2580
                                    ]
2581
                                ]
2582
                            ],
2583
                            'delete' => [
2584
                                'type' => Segment::class,
2585
                                'options' => [
2586
                                    'route' => '/delete/:id',
2587
                                    'constraints' => [
2588
                                        'id' => '[A-Za-z0-9\-]+\=*'
2589
                                    ],
2590
                                    'defaults' => [
2591
                                        'controller' => '\LeadersLinked\Controller\GroupTypeController',
2592
                                        'action' => 'delete'
2593
                                    ]
2594
                                ]
2595
                            ]
2596
                        ]
2597
                    ],
2598
                    'industries' => [
2599
                        'type' => Literal::class,
2600
                        'options' => [
2601
                            'route' => '/industries',
2602
                            'defaults' => [
2603
                                'controller' => '\LeadersLinked\Controller\IndustryController',
2604
                                'action' => 'index'
2605
                            ]
2606
                        ],
2607
                        'may_terminate' => true,
2608
                        'child_routes' => [
2609
                            'add' => [
2610
                                'type' => Literal::class,
2611
                                'options' => [
2612
                                    'route' => '/add',
2613
                                    'defaults' => [
2614
                                        'controller' => '\LeadersLinked\Controller\IndustryController',
2615
                                        'action' => 'add'
2616
                                    ]
2617
                                ]
2618
                            ],
2619
                            'edit' => [
2620
                                'type' => Segment::class,
2621
                                'options' => [
2622
                                    'route' => '/edit/:id',
2623
                                    'constraints' => [
2624
                                        'id' => '[A-Za-z0-9\-]+\=*'
2625
                                    ],
2626
                                    'defaults' => [
2627
                                        'controller' => '\LeadersLinked\Controller\IndustryController',
2628
                                        'action' => 'edit'
2629
                                    ]
2630
                                ]
2631
                            ],
2632
                            'delete' => [
2633
                                'type' => Segment::class,
2634
                                'options' => [
2635
                                    'route' => '/delete/:id',
2636
                                    'constraints' => [
2637
                                        'id' => '[A-Za-z0-9\-]+\=*'
2638
                                    ],
2639
                                    'defaults' => [
2640
                                        'controller' => '\LeadersLinked\Controller\IndustryController',
2641
                                        'action' => 'delete'
2642
                                    ]
2643
                                ]
2644
                            ]
2645
                        ]
2646
                    ],
2647
                    'group-types' => [
2648
                        'type' => Literal::class,
2649
                        'options' => [
2650
                            'route' => '/group-types',
2651
                            'defaults' => [
2652
                                'controller' => '\LeadersLinked\Controller\GroupTypeController',
2653
                                'action' => 'index'
2654
                            ]
2655
                        ],
2656
                        'may_terminate' => true,
2657
                        'child_routes' => [
2658
                            'add' => [
2659
                                'type' => Literal::class,
2660
                                'options' => [
2661
                                    'route' => '/add',
2662
                                    'defaults' => [
2663
                                        'controller' => '\LeadersLinked\Controller\GroupTypeController',
2664
                                        'action' => 'add'
2665
                                    ]
2666
                                ]
2667
                            ],
2668
                            'edit' => [
2669
                                'type' => Segment::class,
2670
                                'options' => [
2671
                                    'route' => '/edit/:id',
2672
                                    'constraints' => [
2673
                                        'id' => '[A-Za-z0-9\-]+\=*'
2674
                                    ],
2675
                                    'defaults' => [
2676
                                        'controller' => '\LeadersLinked\Controller\GroupTypeController',
2677
                                        'action' => 'edit'
2678
                                    ]
2679
                                ]
2680
                            ],
2681
                            'delete' => [
2682
                                'type' => Segment::class,
2683
                                'options' => [
2684
                                    'route' => '/delete/:id',
2685
                                    'constraints' => [
2686
                                        'id' => '[A-Za-z0-9\-]+\=*'
2687
                                    ],
2688
                                    'defaults' => [
2689
                                        'controller' => '\LeadersLinked\Controller\GroupTypeController',
2690
                                        'action' => 'delete'
2691
                                    ]
2692
                                ]
2693
                            ]
2694
                        ]
2695
                    ],
2696
                    'job-categories' => [
2697
                        'type' => Literal::class,
2698
                        'options' => [
2699
                            'route' => '/job-categories',
2700
                            'defaults' => [
2701
                                'controller' => '\LeadersLinked\Controller\JobCategoryController',
2702
                                'action' => 'index'
2703
                            ]
2704
                        ],
2705
                        'may_terminate' => true,
2706
                        'child_routes' => [
2707
                            'add' => [
2708
                                'type' => Literal::class,
2709
                                'options' => [
2710
                                    'route' => '/add',
2711
                                    'defaults' => [
2712
                                        'controller' => '\LeadersLinked\Controller\JobCategoryController',
2713
                                        'action' => 'add'
2714
                                    ]
2715
                                ]
2716
                            ],
2717
                            'edit' => [
2718
                                'type' => Segment::class,
2719
                                'options' => [
2720
                                    'route' => '/edit/:id',
2721
                                    'constraints' => [
2722
                                        'id' => '[A-Za-z0-9\-]+\=*'
2723
                                    ],
2724
                                    'defaults' => [
2725
                                        'controller' => '\LeadersLinked\Controller\JobCategoryController',
2726
                                        'action' => 'edit'
2727
                                    ]
2728
                                ]
2729
                            ],
2730
                            'delete' => [
2731
                                'type' => Segment::class,
2732
                                'options' => [
2733
                                    'route' => '/delete/:id',
2734
                                    'constraints' => [
2735
                                        'id' => '[A-Za-z0-9\-]+\=*'
2736
                                    ],
2737
                                    'defaults' => [
2738
                                        'controller' => '\LeadersLinked\Controller\JobCategoryController',
2739
                                        'action' => 'delete'
2740
                                    ]
2741
                                ]
2742
                            ]
2743
                        ]
2744
                    ],
28 efrain 2745
                    'jobs-description' => [
2746
                        'type' => Literal::class,
2747
                        'options' => [
2748
                            'route' => '/jobs-description',
2749
                            'defaults' => [
2750
                                'controller' => '\LeadersLinked\Controller\JobDescriptionController',
2751
                                'action' => 'index'
2752
                            ]
2753
                        ],
2754
                        'may_terminate' => true,
2755
                        'child_routes' => [
2756
                            'add' => [
2757
                                'type' => Literal::class,
2758
                                'options' => [
2759
                                    'route' => '/add',
2760
                                    'defaults' => [
2761
                                        'controller' => '\LeadersLinked\Controller\JobDescriptionController',
2762
                                        'action' => 'add'
2763
                                    ]
2764
                                ]
2765
                            ],
2766
                            'edit' => [
2767
                                'type' => Segment::class,
2768
                                'options' => [
2769
                                    'route' => '/edit/:id',
2770
                                    'constraints' => [
2771
                                        'id' => '[A-Za-z0-9\-]+\=*'
2772
                                    ],
2773
                                    'defaults' => [
2774
                                        'controller' => '\LeadersLinked\Controller\JobDescriptionController',
2775
                                        'action' => 'edit'
2776
                                    ]
2777
                                ]
2778
                            ],
2779
                            'delete' => [
2780
                                'type' => Segment::class,
2781
                                'options' => [
2782
                                    'route' => '/delete/:id',
2783
                                    'constraints' => [
2784
                                        'id' => '[A-Za-z0-9\-]+\=*'
2785
                                    ],
2786
                                    'defaults' => [
2787
                                        'controller' => '\LeadersLinked\Controller\JobDescriptionController',
2788
                                        'action' => 'delete'
2789
                                    ]
2790
                                ]
559 geraldo 2791
                            ],
2792
                            'report' => [
2793
                                'type' => Segment::class,
2794
                                'options' => [
2795
                                    'route' => '/report/:id',
2796
                                    'constraints' => [
2797
                                        'id' => '[A-Za-z0-9\-]+\=*'
2798
                                    ],
2799
                                    'defaults' => [
2800
                                        'controller' => '\LeadersLinked\Controller\JobDescriptionController',
2801
                                        'action' => 'report'
2802
                                    ]
2803
                                ]
2804
                            ],
846 geraldo 2805
                            'import' => [
2806
                                'type' => Literal::class,
2807
                                'options' => [
2808
                                    'route' => '/import',
2809
                                    'defaults' => [
2810
                                        'controller' => '\LeadersLinked\Controller\JobDescriptionController',
2811
                                        'action' => 'import'
2812
                                    ]
2813
                                ]
2814
                            ],
28 efrain 2815
                        ]
2816
                    ],
1 www 2817
                    'email-templates' => [
2818
                        'type' => Literal::class,
2819
                        'options' => [
2820
                            'route' => '/email-templates',
2821
                            'defaults' => [
2822
                                'controller' => '\LeadersLinked\Controller\EmailTemplateController',
2823
                                'action' => 'index'
2824
                            ]
2825
                        ],
2826
                        'may_terminate' => true,
2827
                        'child_routes' => [
2828
                            'edit' => [
2829
                                'type' => Segment::class,
2830
                                'options' => [
2831
                                    'route' => '/edit/:id',
2832
                                    'constraints' => [
2833
                                        'id' => '[A-Za-z0-9\-]+\=*'
2834
                                    ],
2835
                                    'defaults' => [
2836
                                        'controller' => '\LeadersLinked\Controller\EmailTemplateController',
2837
                                        'action' => 'edit'
2838
                                    ]
2839
                                ]
2840
                            ],
2841
                        ]
2842
                    ],
67 efrain 2843
                    'positions' => [
2844
                        'type' => Literal::class,
2845
                        'options' => [
2846
                            'route' => '/positions',
2847
                            'defaults' => [
2848
                                'controller' => '\LeadersLinked\Controller\PositionController',
2849
                                'action' => 'index'
2850
                            ]
2851
                        ],
2852
                        'may_terminate' => true,
2853
                        'child_routes' => [
2854
                            'add' => [
2855
                                'type' => Literal::class,
2856
                                'options' => [
2857
                                    'route' => '/add',
2858
                                    'defaults' => [
2859
                                        'controller' => '\LeadersLinked\Controller\PositionController',
2860
                                        'action' => 'add'
2861
                                    ]
2862
                                ]
2863
                            ],
2864
                            'edit' => [
2865
                                'type' => Segment::class,
2866
                                'options' => [
2867
                                    'route' => '/edit/:id',
2868
                                    'constraints' => [
2869
                                        'id' => '[A-Za-z0-9\-]+\=*'
2870
                                    ],
2871
                                    'defaults' => [
2872
                                        'controller' => '\LeadersLinked\Controller\PositionController',
2873
                                        'action' => 'edit'
2874
                                    ]
2875
                                ]
2876
                            ],
2877
                            'delete' => [
2878
                                'type' => Segment::class,
2879
                                'options' => [
2880
                                    'route' => '/delete/:id',
2881
                                    'constraints' => [
2882
                                        'id' => '[A-Za-z0-9\-]+\=*'
2883
                                    ],
2884
                                    'defaults' => [
2885
                                        'controller' => '\LeadersLinked\Controller\PositionController',
2886
                                        'action' => 'delete'
2887
                                    ]
2888
                                ]
2889
                            ],
1320 efrain 2890
                            'subordinates' => [
2891
                                'type' => Segment::class,
2892
                                'options' => [
2893
                                    'route' => '/subordinates/:job_description_id',
2894
                                    'constraints' => [
2895
                                        'job_description_id' => '[A-Za-z0-9\-]+\=*'
2896
                                    ],
2897
                                    'defaults' => [
2898
                                        'controller' => '\LeadersLinked\Controller\PositionController',
2899
                                        'action' => 'subordinates'
2900
                                    ]
2901
                                ]
2902
                            ],
67 efrain 2903
                        ]
2904
                    ],
1 www 2905
                    'push-templates' => [
2906
                        'type' => Literal::class,
2907
                        'options' => [
2908
                            'route' => '/push-templates',
2909
                            'defaults' => [
2910
                                'controller' => '\LeadersLinked\Controller\PushTemplateController',
2911
                                'action' => 'index'
2912
                            ]
2913
                        ],
2914
                        'may_terminate' => true,
2915
                        'child_routes' => [
2916
                            'edit' => [
2917
                                'type' => Segment::class,
2918
                                'options' => [
2919
                                    'route' => '/edit/:id',
2920
                                    'constraints' => [
2921
                                        'id' => '[A-Za-z0-9\-]+\=*'
2922
                                    ],
2923
                                    'defaults' => [
2924
                                        'controller' => '\LeadersLinked\Controller\PushTemplateController',
2925
                                        'action' => 'edit'
2926
                                    ]
2927
                                ]
2928
                            ],
2929
                        ]
2930
                    ],
2931
                    'skills' => [
2932
                        'type' => Literal::class,
2933
                        'options' => [
2934
                            'route' => '/skills',
2935
                            'defaults' => [
2936
                                'controller' => '\LeadersLinked\Controller\SkillController',
2937
                                'action' => 'index'
2938
                            ]
2939
                        ],
2940
                        'may_terminate' => true,
2941
                        'child_routes' => [
2942
                            'add' => [
2943
                                'type' => Literal::class,
2944
                                'options' => [
2945
                                    'route' => '/add',
2946
                                    'defaults' => [
2947
                                        'controller' => '\LeadersLinked\Controller\SkillController',
2948
                                        'action' => 'add'
2949
                                    ]
2950
                                ]
2951
                            ],
2952
                            'edit' => [
2953
                                'type' => Segment::class,
2954
                                'options' => [
2955
                                    'route' => '/edit/:id',
2956
                                    'constraints' => [
2957
                                        'id' => '[A-Za-z0-9\-]+\=*'
2958
                                    ],
2959
                                    'defaults' => [
2960
                                        'controller' => '\LeadersLinked\Controller\SkillController',
2961
                                        'action' => 'edit'
2962
                                    ]
2963
                                ]
2964
                            ],
2965
                            'delete' => [
2966
                                'type' => Segment::class,
2967
                                'options' => [
2968
                                    'route' => '/delete/:id',
2969
                                    'constraints' => [
2970
                                        'id' => '[A-Za-z0-9\-]+\=*'
2971
                                    ],
2972
                                    'defaults' => [
2973
                                        'controller' => '\LeadersLinked\Controller\SkillController',
2974
                                        'action' => 'delete'
2975
                                    ]
2976
                                ]
2977
                            ]
2978
                        ]
2979
                    ],
1089 geraldo 2980
                ]
1 www 2981
            ],
1089 geraldo 2982
        /*         * * FIN SETTINGS ** */
1333 efrain 2983
 
2984
            'own-professional-network' => [
2985
                'type' => Literal::class,
2986
                'options' => [
2987
                    'route' => '/own-professional-network',
2988
                    'defaults' => [
2989
                        'controller' => '\LeadersLinked\Controller\UnknownController',
2990
                        'action' => 'index'
2991
                    ]
2992
                ],
2993
                'may_terminate' => true,
2994
                'child_routes' => [
2995
                ]
2996
            ],
2997
 
2998
            'organizational-design' => [
2999
                'type' => Literal::class,
3000
                'options' => [
3001
                    'route' => '/organizational-design',
3002
                    'defaults' => [
3003
                        'controller' => '\LeadersLinked\Controller\UnknownController',
3004
                        'action' => 'index'
3005
                    ]
3006
                ],
3007
                'may_terminate' => true,
3008
                'child_routes' => [
3009
                ]
3010
            ],
3011
 
3012
            'planning-objectives-and-goals' => [
3013
                'type' => Literal::class,
3014
                'options' => [
3015
                    'route' => '/planning-objectives-and-goals',
3016
                    'defaults' => [
2235 nelberth 3017
                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsController',
1951 nelberth 3018
                        'action' => 'index'
1333 efrain 3019
                    ]
3020
                ],
3021
                'may_terminate' => true,
3022
                'child_routes' => [
2238 nelberth 3023
                    'objectives' => [
2250 nelberth 3024
                        'type' => Literal::class,
1914 nelberth 3025
                        'options' => [
2248 nelberth 3026
                            'route' => '/objectives',
1914 nelberth 3027
                            'defaults' => [
2228 nelberth 3028
                                'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController',
2238 nelberth 3029
                                'action' => 'index'
1914 nelberth 3030
                            ]
2251 nelberth 3031
                        ],
3032
 
3033
                        'may_terminate' => true,
3034
                        'child_routes' => [
2324 nelberth 3035
 
2251 nelberth 3036
                            'add' => [
3037
                                'type' => Literal::class,
3038
                                'options' => [
3039
                                    'route' => '/add',
3040
                                    'defaults' => [
3041
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController',
3042
                                        'action' => 'add'
3043
                                    ]
3044
                                ]
3045
                            ],
3046
                            'edit' => [
3047
                                'type' => Segment::class,
3048
                                'options' => [
3049
                                    'route' => '/edit/:id',
3050
                                    'constraints' => [
3051
                                        'id' => '[A-Za-z0-9\-]+\=*'
3052
                                    ],
3053
                                    'defaults' => [
3054
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController',
3055
                                        'action' => 'edit'
3056
                                    ]
3057
                                ]
3058
                            ],
3059
                            'delete' => [
3060
                                'type' => Segment::class,
3061
                                'options' => [
3062
                                    'route' => '/delete/:id',
3063
                                    'constraints' => [
3064
                                        'id' => '[A-Za-z0-9\-]+\=*'
3065
                                    ],
3066
                                    'defaults' => [
3067
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController',
3068
                                        'action' => 'delete'
3069
                                    ]
3070
                                ]
2324 nelberth 3071
                            ],
3462 nelberth 3072
                            'report' => [
3073
                                'type' => Segment::class,
3074
                                'options' => [
3075
                                    'route' => '/report/:id',
3076
                                    'constraints' => [
3077
                                        'id' => '[A-Za-z0-9\-]+\=*'
3078
                                    ],
3079
                                    'defaults' => [
3080
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController',
3081
                                        'action' => 'report'
3082
                                    ]
3083
                                ]
3986 nelberth 3084
                            ],
3085
                            'reportall' => [
3086
                                'type' => Literal::class,
3087
                                'options' => [
3088
                                    'route' => '/reportall',
3089
                                    'defaults' => [
3090
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController',
3091
                                        'action' => 'reportall'
3092
                                    ]
3093
                                ]
3462 nelberth 3094
                            ],
4041 nelberth 3095
 
3096
                            'matriz' => [
3097
                                'type' => Literal::class,
3098
                                'options' => [
3099
                                    'route' => '/matriz',
3100
                                    'defaults' => [
3101
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController',
3102
                                        'action' => 'matriz'
3103
                                    ]
3104
                                ]
3105
                            ],
2324 nelberth 3106
                            'goals' => [
2336 nelberth 3107
                                'type' => Segment::class,
2324 nelberth 3108
                                'options' => [
11092 nelberth 3109
                                    'route' => '/:objective_id/goals',
2324 nelberth 3110
                                    'constraints' => [
11092 nelberth 3111
                                        'objective_id' => '[A-Za-z0-9\-]+\=*'
2324 nelberth 3112
                                    ],
3113
                                    'defaults' => [
3114
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsGoalsController',
3115
                                        'action' => 'index'
3116
                                    ]
2369 nelberth 3117
                                ],
2370 nelberth 3118
 
3119
                                'may_terminate' => true,
3120
                                'child_routes' => [
3121
                                    'add' => [
3122
                                        'type' => Literal::class,
3123
                                        'options' => [
3124
                                            'route' => '/add',
3125
                                            'defaults' => [
3126
                                                'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsGoalsController',
3127
                                                'action' => 'add'
3128
                                            ]
2369 nelberth 3129
                                        ]
2370 nelberth 3130
                                    ],
3131
                                    'edit' => [
3132
                                        'type' => Segment::class,
3133
                                        'options' => [
3134
                                            'route' => '/edit/:id',
3135
                                            'constraints' => [
3136
                                                'id' => '[A-Za-z0-9\-]+\=*'
3137
                                            ],
3138
                                            'defaults' => [
3139
                                                'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsGoalsController',
3140
                                                'action' => 'edit'
3141
                                            ]
2369 nelberth 3142
                                        ]
2370 nelberth 3143
                                    ],
3144
                                    'delete' => [
3145
                                        'type' => Segment::class,
3146
                                        'options' => [
3147
                                            'route' => '/delete/:id',
3148
                                            'constraints' => [
3149
                                                'id' => '[A-Za-z0-9\-]+\=*'
3150
                                            ],
3151
                                            'defaults' => [
3152
                                                'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsGoalsController',
3153
                                                'action' => 'delete'
3154
                                            ]
3155
                                        ]
3156
                                    ],
2517 nelberth 3157
                                    'task' => [
3158
                                        'type' => Segment::class,
3159
                                        'options' => [
11092 nelberth 3160
                                            'route' => '/:goal_id/task',
2517 nelberth 3161
                                            'constraints' => [
11092 nelberth 3162
                                                'goal_id' => '[A-Za-z0-9\-]+\=*'
2517 nelberth 3163
                                            ],
3164
                                            'defaults' => [
3165
                                                'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController',
3166
                                                'action' => 'index'
3167
                                            ]
3168
                                        ],
3169
 
3170
                                        'may_terminate' => true,
3171
                                        'child_routes' => [
3172
                                            'add' => [
3173
                                                'type' => Literal::class,
3174
                                                'options' => [
3175
                                                    'route' => '/add',
3176
                                                    'defaults' => [
3177
                                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController',
3178
                                                        'action' => 'add'
3179
                                                    ]
3180
                                                ]
3181
                                            ],
3182
                                            'edit' => [
3183
                                                'type' => Segment::class,
3184
                                                'options' => [
3185
                                                    'route' => '/edit/:id',
3186
                                                    'constraints' => [
3187
                                                        'id' => '[A-Za-z0-9\-]+\=*'
3188
                                                    ],
3189
                                                    'defaults' => [
3190
                                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController',
3191
                                                        'action' => 'edit'
3192
                                                    ]
3193
                                                ]
3194
                                            ],
3195
                                            'delete' => [
3196
                                                'type' => Segment::class,
3197
                                                'options' => [
3198
                                                    'route' => '/delete/:id',
3199
                                                    'constraints' => [
3200
                                                        'id' => '[A-Za-z0-9\-]+\=*'
3201
                                                    ],
3202
                                                    'defaults' => [
3203
                                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController',
3204
                                                        'action' => 'delete'
3205
                                                    ]
3206
                                                ]
3207
                                            ],
2822 nelberth 3208
                                            'view' => [
3209
                                                'type' => Segment::class,
3210
                                                'options' => [
3211
                                                    'route' => '/view/:id',
3212
                                                    'constraints' => [
3213
                                                        'id' => '[A-Za-z0-9\-]+\=*'
3214
                                                    ],
3215
                                                    'defaults' => [
3216
                                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController',
3217
                                                        'action' => 'view'
3218
                                                    ]
3219
                                                ]
3220
                                            ],
2517 nelberth 3221
                                    ]
3222
                                ],
2369 nelberth 3223
                            ]
2370 nelberth 3224
                        ],
1914 nelberth 3225
                        ]
2246 nelberth 3226
                    ]
2238 nelberth 3227
 
1333 efrain 3228
                ]
3229
            ],
3230
 
3231
            'development-and-training' => [
3232
                'type' => Literal::class,
3233
                'options' => [
3234
                    'route' => '/development-and-training',
3235
                    'defaults' => [
3236
                        'controller' => '\LeadersLinked\Controller\UnknownController',
3237
                        'action' => 'index'
3238
                    ]
3239
                ],
3240
                'may_terminate' => true,
3241
                'child_routes' => [
3242
                ]
3243
            ],
1477 efrain 3244
 
1333 efrain 3245
 
1477 efrain 3246
            'recruitment-and-selection' => [
1333 efrain 3247
                'type' => Literal::class,
3248
                'options' => [
1477 efrain 3249
                    'route' => '/recruitment-and-selection',
1333 efrain 3250
                    'defaults' => [
1477 efrain 3251
                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionController',
1333 efrain 3252
                        'action' => 'index'
3253
                    ]
3254
                ],
3255
                'may_terminate' => true,
3256
                'child_routes' => [
1477 efrain 3257
                    'vacancies' => [
1345 eleazar 3258
                        'type' => Literal::class,
3259
                        'options' => [
1477 efrain 3260
                            'route' => '/vacancies',
1345 eleazar 3261
                            'defaults' => [
1385 eleazar 3262
                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionVacancyController',
1345 eleazar 3263
                                'action' => 'index'
3264
                            ]
3265
                        ],
3266
                        'may_terminate' => true,
3267
                        'child_routes' => [
3268
                            'add' => [
3269
                                'type' => Literal::class,
3270
                                'options' => [
3271
                                    'route' => '/add',
3272
                                    'defaults' => [
1385 eleazar 3273
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionVacancyController',
1345 eleazar 3274
                                        'action' => 'add'
3275
                                    ]
3276
                                ]
3277
                            ],
3278
                            'edit' => [
3279
                                'type' => Segment::class,
3280
                                'options' => [
3281
                                    'route' => '/edit/:id',
3282
                                    'constraints' => [
3283
                                        'id' => '[A-Za-z0-9\-]+\=*'
3284
                                    ],
3285
                                    'defaults' => [
1385 eleazar 3286
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionVacancyController',
1345 eleazar 3287
                                        'action' => 'edit'
3288
                                    ]
3289
                                ]
3290
                            ],
3291
                            'delete' => [
3292
                                'type' => Segment::class,
3293
                                'options' => [
3294
                                    'route' => '/delete/:id',
3295
                                    'constraints' => [
3296
                                        'id' => '[A-Za-z0-9\-]+\=*'
3297
                                    ],
3298
                                    'defaults' => [
1385 eleazar 3299
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionVacancyController',
1345 eleazar 3300
                                        'action' => 'delete'
3301
                                    ]
3302
                                ]
3303
                            ]
3304
                        ]
3305
                    ],
1459 eleazar 3306
                    'candidates' => [
3307
                        'type' => Segment::class,
3308
                        'options' => [
1501 eleazar 3309
                            'route' => '/candidates[/:vacancy_uuid]',
1459 eleazar 3310
                            'constraints' => [
1508 eleazar 3311
                                'vacancy_uuid' => '[A-Za-z0-9\-]+\=*'
1459 eleazar 3312
                            ],
3313
                            'defaults' => [
3314
                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
1502 eleazar 3315
                                'action' => 'index',
1503 eleazar 3316
                                'vacancy_uuid' => '',
1459 eleazar 3317
                            ]
3318
                        ],
3319
                        'may_terminate' => true,
3320
                        'child_routes' => [
3321
                            'add' => [
3322
                                'type' => Literal::class,
3323
                                'options' => [
1506 eleazar 3324
                                    'route' => '/add',
1459 eleazar 3325
                                    'defaults' => [
3326
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
3327
                                        'action' => 'add'
3328
                                    ]
3329
                                ]
3330
                            ],
3331
                            'edit' => [
3332
                                'type' => Segment::class,
3333
                                'options' => [
3334
                                    'route' => '/edit/:id',
3335
                                    'constraints' => [
3336
                                        'id' => '[A-Za-z0-9\-]+\=*'
3337
                                    ],
3338
                                    'defaults' => [
3339
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
3340
                                        'action' => 'edit'
3341
                                    ]
3342
                                ]
3343
                            ],
3344
                            'delete' => [
3345
                                'type' => Segment::class,
3346
                                'options' => [
3347
                                    'route' => '/delete/:id',
3348
                                    'constraints' => [
3349
                                        'id' => '[A-Za-z0-9\-]+\=*'
3350
                                    ],
3351
                                    'defaults' => [
3352
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
3353
                                        'action' => 'delete'
3354
                                    ]
3355
                                ]
1630 eleazar 3356
                            ],
3357
                            'email' => [
3358
                                'type' => Literal::class,
3359
                                'options' => [
3360
                                    'route' => '/email',
3361
                                    'defaults' => [
3362
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
3363
                                        'action' => 'email'
3364
                                    ]
3365
                                ]
3366
                            ],
1459 eleazar 3367
                        ]
3368
                    ],
1635 eleazar 3369
                    'user-by-email' => [
3370
                        'type' => Literal::class,
3371
                        'options' => [
3372
                            'route' => '/user-by-email',
3373
                            'defaults' => [
3374
                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
3375
                                'action' => 'email'
3376
                            ]
3377
                        ]
1709 eleazar 3378
                    ],
3379
                    'interview' => [
3380
                        'type' => Segment::class,
3381
                        'options' => [
3382
                            'route' => '/interview',
3383
                            'defaults' => [
3384
                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewController',
3385
                                'action' => 'index',
3386
                            ],
3387
                        ],
3388
                        'may_terminate' => true,
3389
                        'child_routes' => [
3390
                            'form' => [
4351 eleazar 3391
                                'type' => Segment::class,
1709 eleazar 3392
                                'options' => [
4349 eleazar 3393
                                    'route' => '/form[/:vacancy_uuid]',
3394
                                    'constraints' => [
3395
                                        'vacancy_uuid' => '[A-Za-z0-9\-]+\=*'
3396
                                    ],
1709 eleazar 3397
                                    'defaults' => [
1711 eleazar 3398
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
2029 eleazar 3399
                                        'action' => 'index',
4352 eleazar 3400
                                        'vacancy_uuid' => '',
1709 eleazar 3401
                                    ],
3402
                                ],
3403
                                'may_terminate' => true,
3404
                                'child_routes' => [
3405
                                    'add' => [
2059 eleazar 3406
                                        'type' => Segment::class,
1709 eleazar 3407
                                        'options' => [
3563 eleazar 3408
                                            'route' => '/add',
1709 eleazar 3409
                                            'defaults' => [
1899 eleazar 3410
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
1709 eleazar 3411
                                                'action' => 'add'
3412
                                            ],
3413
                                        ],
3414
                                    ],
3415
                                    'edit' => [
2775 eleazar 3416
                                        'type' => Segment::class,
1709 eleazar 3417
                                        'options' => [
2764 eleazar 3418
                                            'route' => '/edit/:interview_uuid',
2765 eleazar 3419
                                            'constraints' => [
3420
                                                'interview_uuid' => '[A-Za-z0-9\-]+\=*'
3421
                                            ],
1709 eleazar 3422
                                            'defaults' => [
1944 eleazar 3423
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
1709 eleazar 3424
                                                'action' => 'edit'
3425
                                            ],
3426
                                        ],
3427
                                    ],
3428
                                    'delete' => [
2775 eleazar 3429
                                        'type' => Segment::class,
1709 eleazar 3430
                                        'options' => [
2764 eleazar 3431
                                            'route' => '/delete/:interview_uuid',
2765 eleazar 3432
                                            'constraints' => [
3433
                                                'interview_uuid' => '[A-Za-z0-9\-]+\=*'
3434
                                            ],
1709 eleazar 3435
                                            'defaults' => [
2766 eleazar 3436
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
1709 eleazar 3437
                                                'action' => 'delete'
3438
                                            ],
3439
                                        ],
3440
                                    ],
8781 eleazar 3441
                                ],
3442
                            ],
3443
                            'file' => [
3444
                                'type' => Segment::class,
3445
                                'options' => [
3446
                                    'route' => '/:interview_uuid/file',
3447
                                    'constraints' => [
3448
                                        'interview_uuid' => '[A-Za-z0-9\-]+\=*'
3449
                                    ],
3450
                                    'defaults' => [
3451
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFileController',
3452
                                        'action' => 'index'
3453
                                    ],
3454
                                ],
3455
                                'may_terminate' => true,
3456
                                'child_routes' => [
3457
                                    'add' => [
3458
                                        'type' => Literal::class,
3459
                                        'options' => [
3460
                                            'route' => '/add',
3461
                                            'defaults' => [
3462
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFileController',
3463
                                                'action' => 'add'
3464
                                            ]
3465
                                        ]
3466
                                    ],
3467
                                    'edit' => [
8779 eleazar 3468
                                        'type' => Segment::class,
3469
                                        'options' => [
8874 eleazar 3470
                                            'route' => '/edit/:id',
8779 eleazar 3471
                                            'constraints' => [
8781 eleazar 3472
                                                'id' => '[A-Za-z0-9\-]+\=*'
8779 eleazar 3473
                                            ],
3474
                                            'defaults' => [
3475
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFileController',
8781 eleazar 3476
                                                'action' => 'edit'
3477
                                            ]
3478
                                        ]
3479
                                    ],
3480
                                    'delete' => [
3481
                                        'type' => Segment::class,
3482
                                        'options' => [
8874 eleazar 3483
                                            'route' => '/delete/:id',
8781 eleazar 3484
                                            'constraints' => [
3485
                                                'id' => '[A-Za-z0-9\-]+\=*'
8779 eleazar 3486
                                            ],
8781 eleazar 3487
                                            'defaults' => [
3488
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFileController',
3489
                                                'action' => 'delete'
8779 eleazar 3490
                                            ]
3491
                                        ]
8874 eleazar 3492
                                    ],
8781 eleazar 3493
                                ]
1709 eleazar 3494
                            ],
3495
                            'report' =>[
3496
                                'type' => Segment::class,
3497
                                'options' => [
2864 eleazar 3498
                                    'route' => '/report/:interview_uuid',
3499
                                    'constraints' => [
3500
                                        'interview_uuid' => '[A-Za-z0-9\-]+\=*'
3501
                                    ],
1709 eleazar 3502
                                    'defaults' => [
2864 eleazar 3503
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
3504
                                        'action' => 'report',
1709 eleazar 3505
                                    ],
3506
                                ],
3507
                            ],
3571 eleazar 3508
                            'vacancy' =>[
3509
                                'type' => Segment::class,
3510
                                'options' => [
3511
                                    'route' => '/vacancy/:vacancy_uuid',
3512
                                    'constraints' => [
3513
                                        'vacancy_uuid' => '[A-Za-z0-9\-]+\=*'
3514
                                    ],
3515
                                    'defaults' => [
3516
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
3517
                                        'action' => 'vacancy',
3518
                                    ],
3519
                                ],
3520
                            ],
4367 eleazar 3521
                            'type' =>[
4365 eleazar 3522
                                'type' => Segment::class,
3523
                                'options' => [
4367 eleazar 3524
                                    'route' => '/type/:candidate_uuid',
4365 eleazar 3525
                                    'constraints' => [
3526
                                        'candidate_uuid' => '[A-Za-z0-9\-]+\=*'
3527
                                    ],
3528
                                    'defaults' => [
3529
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
4367 eleazar 3530
                                        'action' => 'type',
4365 eleazar 3531
                                    ],
3532
                                ],
3533
                            ],
1709 eleazar 3534
                        ],
8779 eleazar 3535
                    ],
1459 eleazar 3536
                ],
1333 efrain 3537
            ],
3538
 
3539
            'induction' => [
3540
                'type' => Literal::class,
3541
                'options' => [
3542
                    'route' => '/induction',
3543
                    'defaults' => [
3544
                        'controller' => '\LeadersLinked\Controller\UnknownController',
3545
                        'action' => 'index'
3546
                    ]
3547
                ],
3548
                'may_terminate' => true,
3549
                'child_routes' => [
3550
                ]
3551
            ],
3552
 
3553
            'organizational-climate' => [
3554
                'type' => Literal::class,
3555
                'options' => [
3556
                    'route' => '/organizational-climate',
3557
                    'defaults' => [
7218 eleazar 3558
                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateController',
1333 efrain 3559
                        'action' => 'index'
3560
                    ]
3561
                ],
3562
                'may_terminate' => true,
3563
                'child_routes' => [
7218 eleazar 3564
                    'add' => [
3565
                        'type' => Segment::class,
3566
                        'options' => [
3567
                            'route' => '/add',
3568
                            'defaults' => [
7295 eleazar 3569
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateController',
7218 eleazar 3570
                                'action' => 'add'
3571
                            ],
3572
                        ],
3573
                    ],
3574
                    'edit' => [
3575
                        'type' => Segment::class,
3576
                        'options' => [
3577
                            'route' => '/edit/:id',
3578
                            'defaults' => [
7295 eleazar 3579
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateController',
7218 eleazar 3580
                                'action' => 'edit'
3581
                            ],
3582
                        ],
3583
                    ],
3584
                    'delete' => [
3585
                        'type' => Segment::class,
3586
                        'options' => [
3587
                            'route' => '/delete/:id',
3588
                            'defaults' => [
7295 eleazar 3589
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateController',
7218 eleazar 3590
                                'action' => 'delete'
3591
                            ],
3592
                        ],
3593
                    ],
3594
                    'segment' => [
3595
                        'type' => Segment::class,
3596
                        'options' => [
3597
                            'route' => '/segment/:id',
8536 efrain 3598
                            'constraints' => [
3599
                                'id' => '[A-Za-z0-9\-]+\=*'
3600
                            ],
7218 eleazar 3601
                            'defaults' => [
7295 eleazar 3602
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateController',
7218 eleazar 3603
                                'action' => 'segment'
3604
                            ],
3605
                        ],
3606
                    ],
3607
                    'form' => [
3608
                        'type' => Segment::class,
3609
                        'options' => [
3610
                            'route' => '/form',
3611
                            'defaults' => [
7295 eleazar 3612
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateFormController',
7218 eleazar 3613
                                'action' => 'index',
3614
                            ],
3615
                        ],
3616
                        'may_terminate' => true,
3617
                        'child_routes' => [
3618
                            'add' => [
3619
                                'type' => Segment::class,
3620
                                'options' => [
3621
                                    'route' => '/add',
3622
                                    'defaults' => [
7295 eleazar 3623
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateFormController',
7218 eleazar 3624
                                        'action' => 'add'
3625
                                    ],
3626
                                ],
3627
                            ],
3628
                            'edit' => [
3629
                                'type' => Segment::class,
3630
                                'options' => [
3631
                                    'route' => '/edit/:id',
3632
                                    'constraints' => [
3633
                                        'id' => '[A-Za-z0-9\-]+\=*'
3634
                                    ],
3635
                                    'defaults' => [
7295 eleazar 3636
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateFormController',
7218 eleazar 3637
                                        'action' => 'edit'
3638
                                    ]
3639
                                ]
3640
                            ],
3641
                            'delete' => [
3642
                                'type' => Segment::class,
3643
                                'options' => [
3644
                                    'route' => '/delete/:id',
3645
                                    'constraints' => [
3646
                                        'id' => '[A-Za-z0-9\-]+\=*'
3647
                                    ],
3648
                                    'defaults' => [
7295 eleazar 3649
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateFormController',
7218 eleazar 3650
                                        'action' => 'delete'
3651
                                    ]
3652
                                ]
3653
                            ]
3654
                        ],
3655
                    ],
3656
                    'test' => [
3657
                        'type' => Segment::class,
3658
                        'options' => [
7307 eleazar 3659
                            'route' => '/test[/:organizationalClimate_id]',
7218 eleazar 3660
                            'constraints' => [
7307 eleazar 3661
                                'organizationalClimate_id' => '[A-Za-z0-9\-]+\=*'
7218 eleazar 3662
                            ],
3663
                            'defaults' => [
7295 eleazar 3664
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateTestController',
7218 eleazar 3665
                                'action' => 'index',
7307 eleazar 3666
                                'organizationalClimate_id' => '',
7218 eleazar 3667
                            ],
3668
                        ],
3669
                        'may_terminate' => true,
3670
                        'child_routes' => [
3671
                            'add' => [
3672
                                'type' => Segment::class,
3673
                                'options' => [
3674
                                    'route' => '/add',
3675
                                    'defaults' => [
7295 eleazar 3676
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateTestController',
7218 eleazar 3677
                                        'action' => 'add',
3678
                                    ],
3679
                                ],
3680
                            ],
3681
                            'report' => [
3682
                                'type' => Segment::class,
3683
                                'options' => [
3684
                                    'route' => '/report/:uuid',
3685
                                    'defaults' => [
7295 eleazar 3686
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateTestController',
7218 eleazar 3687
                                        'action' => 'report',
3688
                                    ],
3689
                                ],
3690
                            ],
3691
                            'delete' => [
3692
                                'type' => Segment::class,
3693
                                'options' => [
3694
                                    'route' => '/delete/:id',
3695
                                    'defaults' => [
7295 eleazar 3696
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateTestController',
7218 eleazar 3697
                                        'action' => 'delete'
3698
                                    ]
3699
                                ]
3700
                            ]
3701
                        ],
3702
                    ],
3703
                    'report' => [
3704
                        'type' => Segment::class,
3705
                        'options' => [
7447 eleazar 3706
                            'route' => '/report[/:organizationalClimate_id]',
7218 eleazar 3707
                            'constraints' => [
7447 eleazar 3708
                                'organizationalClimate_id' => '[A-Za-z0-9\-]+\=*'
7218 eleazar 3709
                            ],
3710
                            'defaults' => [
7295 eleazar 3711
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateReportController',
7218 eleazar 3712
                                'action' => 'index',
7447 eleazar 3713
                                'organizationalClimate_id' => '',
7218 eleazar 3714
                            ],
3715
                        ],
3716
                        'may_terminate' => true,
3717
                        'child_routes' => [
3718
                            'all' => [
3719
                                'type' => Segment::class,
3720
                                'options' => [
3721
                                    'route' => '/all',
3722
                                    'defaults' => [
7295 eleazar 3723
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateReportController',
7218 eleazar 3724
                                        'action' => 'all',
3725
                                    ]
3726
                                ]
3727
                            ],
3728
                            'overview' => [
3729
                                'type' => Segment::class,
3730
                                'options' => [
3731
                                    'route' => '/overview',
3732
                                    'defaults' => [
7295 eleazar 3733
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateReportController',
7218 eleazar 3734
                                        'action' => 'overview',
3735
                                    ]
3736
                                ]
3737
                            ],
3738
                            'csv' => [
3739
                                'type' => Segment::class,
3740
                                'options' => [
3741
                                    'route' => '/csv',
3742
                                    'defaults' => [
7295 eleazar 3743
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateReportController',
7218 eleazar 3744
                                        'action' => 'csv',
3745
                                    ]
3746
                                ]
3747
                            ],
3748
                        ],
3749
                    ],
3750
                ],
1333 efrain 3751
            ],
3752
 
3753
            'culture' => [
3754
                'type' => Literal::class,
3755
                'options' => [
3756
                    'route' => '/culture',
3757
                    'defaults' => [
3758
                        'controller' => '\LeadersLinked\Controller\UnknownController',
3759
                        'action' => 'index'
3760
                    ]
3761
                ],
3762
                'may_terminate' => true,
3763
                'child_routes' => [
3764
                ]
3765
            ],
3766
 
3767
            'communication' => [
3768
                'type' => Literal::class,
3769
                'options' => [
3770
                    'route' => '/communication',
3771
                    'defaults' => [
3772
                        'controller' => '\LeadersLinked\Controller\UnknownController',
3773
                        'action' => 'index'
3774
                    ]
3775
                ],
3776
                'may_terminate' => true,
3777
                'child_routes' => [
3778
                ]
3779
            ],
3780
 
3781
            'career-development' => [
3782
                'type' => Literal::class,
3783
                'options' => [
3784
                    'route' => '/career-development',
3785
                    'defaults' => [
3786
                        'controller' => '\LeadersLinked\Controller\UnknownController',
3787
                        'action' => 'index'
3788
                    ]
3789
                ],
3790
                'may_terminate' => true,
3791
                'child_routes' => [
3792
                ]
3793
            ],
3794
 
4386 eleazar 3795
            'survey' => [
1333 efrain 3796
                'type' => Literal::class,
3797
                'options' => [
4397 eleazar 3798
                    'route' => '/survey',
1333 efrain 3799
                    'defaults' => [
4375 eleazar 3800
                        'controller' => '\LeadersLinked\Controller\SurveyController',
1333 efrain 3801
                        'action' => 'index'
3802
                    ]
3803
                ],
3804
                'may_terminate' => true,
3805
                'child_routes' => [
4579 eleazar 3806
                    'add' => [
3807
                        'type' => Segment::class,
3808
                        'options' => [
3809
                            'route' => '/add',
3810
                            'defaults' => [
3811
                                'controller' => '\LeadersLinked\Controller\SurveyController',
3812
                                'action' => 'add'
3813
                            ],
3814
                        ],
3815
                    ],
3816
                    'edit' => [
3817
                        'type' => Segment::class,
3818
                        'options' => [
3819
                            'route' => '/edit/:id',
3820
                            'defaults' => [
3821
                                'controller' => '\LeadersLinked\Controller\SurveyController',
3822
                                'action' => 'edit'
3823
                            ],
3824
                        ],
3825
                    ],
3826
                    'delete' => [
3827
                        'type' => Segment::class,
3828
                        'options' => [
3829
                            'route' => '/delete/:id',
3830
                            'defaults' => [
3831
                                'controller' => '\LeadersLinked\Controller\SurveyController',
3832
                                'action' => 'delete'
3833
                            ],
3834
                        ],
3835
                    ],
3836
                    'segment' => [
3837
                        'type' => Segment::class,
3838
                        'options' => [
3839
                            'route' => '/segment/:id',
3840
                            'defaults' => [
3841
                                'controller' => '\LeadersLinked\Controller\SurveyController',
3842
                                'action' => 'segment'
3843
                            ],
3844
                        ],
3845
                    ],
4374 eleazar 3846
                    'form' => [
3847
                        'type' => Segment::class,
3848
                        'options' => [
3849
                            'route' => '/form',
3850
                            'defaults' => [
4375 eleazar 3851
                                'controller' => '\LeadersLinked\Controller\SurveyFormController',
4374 eleazar 3852
                                'action' => 'index',
3853
                            ],
3854
                        ],
3855
                        'may_terminate' => true,
3856
                        'child_routes' => [
3857
                            'add' => [
3858
                                'type' => Segment::class,
3859
                                'options' => [
3860
                                    'route' => '/add',
3861
                                    'defaults' => [
4375 eleazar 3862
                                        'controller' => '\LeadersLinked\Controller\SurveyFormController',
4374 eleazar 3863
                                        'action' => 'add'
3864
                                    ],
3865
                                ],
3866
                            ],
3867
                            'edit' => [
3868
                                'type' => Segment::class,
3869
                                'options' => [
3870
                                    'route' => '/edit/:id',
3871
                                    'constraints' => [
3872
                                        'id' => '[A-Za-z0-9\-]+\=*'
3873
                                    ],
3874
                                    'defaults' => [
4375 eleazar 3875
                                        'controller' => '\LeadersLinked\Controller\SurveyFormController',
4374 eleazar 3876
                                        'action' => 'edit'
3877
                                    ]
3878
                                ]
3879
                            ],
3880
                            'delete' => [
3881
                                'type' => Segment::class,
3882
                                'options' => [
3883
                                    'route' => '/delete/:id',
3884
                                    'constraints' => [
3885
                                        'id' => '[A-Za-z0-9\-]+\=*'
3886
                                    ],
3887
                                    'defaults' => [
4375 eleazar 3888
                                        'controller' => '\LeadersLinked\Controller\SurveyFormController',
4374 eleazar 3889
                                        'action' => 'delete'
3890
                                    ]
3891
                                ]
3892
                            ]
3893
                        ],
3894
                    ],
5287 eleazar 3895
                    'test' => [
3896
                        'type' => Segment::class,
3897
                        'options' => [
5884 eleazar 3898
                            'route' => '/test[/:survey_id]',
3899
                            'constraints' => [
3900
                                'survey_id' => '[A-Za-z0-9\-]+\=*'
3901
                            ],
5287 eleazar 3902
                            'defaults' => [
3903
                                'controller' => '\LeadersLinked\Controller\SurveyTestController',
3904
                                'action' => 'index',
5884 eleazar 3905
                                'survey_id' => '',
5287 eleazar 3906
                            ],
3907
                        ],
3908
                        'may_terminate' => true,
3909
                        'child_routes' => [
3910
                            'add' => [
3911
                                'type' => Segment::class,
3912
                                'options' => [
6036 eleazar 3913
                                    'route' => '/add',
5287 eleazar 3914
                                    'defaults' => [
3915
                                        'controller' => '\LeadersLinked\Controller\SurveyTestController',
5732 eleazar 3916
                                        'action' => 'add',
5287 eleazar 3917
                                    ],
3918
                                ],
3919
                            ],
6662 eleazar 3920
                            'report' => [
3921
                                'type' => Segment::class,
3922
                                'options' => [
6882 eleazar 3923
                                    'route' => '/report/:uuid',
6662 eleazar 3924
                                    'defaults' => [
3925
                                        'controller' => '\LeadersLinked\Controller\SurveyTestController',
3926
                                        'action' => 'report',
3927
                                    ],
3928
                                ],
3929
                            ],
5287 eleazar 3930
                            'delete' => [
3931
                                'type' => Segment::class,
3932
                                'options' => [
6882 eleazar 3933
                                    'route' => '/delete/:id',
5287 eleazar 3934
                                    'defaults' => [
3935
                                        'controller' => '\LeadersLinked\Controller\SurveyTestController',
3936
                                        'action' => 'delete'
3937
                                    ]
3938
                                ]
3939
                            ]
3940
                        ],
3941
                    ],
5823 eleazar 3942
                    'report' => [
3943
                        'type' => Segment::class,
3944
                        'options' => [
5911 eleazar 3945
                            'route' => '/report[/:survey_id]',
3946
                            'constraints' => [
3947
                                'survey_id' => '[A-Za-z0-9\-]+\=*'
3948
                            ],
5823 eleazar 3949
                            'defaults' => [
3950
                                'controller' => '\LeadersLinked\Controller\SurveyReportController',
3951
                                'action' => 'index',
5911 eleazar 3952
                                'survey_id' => '',
5823 eleazar 3953
                            ],
3954
                        ],
3955
                        'may_terminate' => true,
3956
                        'child_routes' => [
3957
                            'all' => [
3958
                                'type' => Segment::class,
3959
                                'options' => [
5868 eleazar 3960
                                    'route' => '/all',
5823 eleazar 3961
                                    'defaults' => [
3962
                                        'controller' => '\LeadersLinked\Controller\SurveyReportController',
5868 eleazar 3963
                                        'action' => 'all',
5823 eleazar 3964
                                    ]
3965
                                ]
3966
                            ],
6496 eleazar 3967
                            'overview' => [
3968
                                'type' => Segment::class,
3969
                                'options' => [
3970
                                    'route' => '/overview',
3971
                                    'defaults' => [
3972
                                        'controller' => '\LeadersLinked\Controller\SurveyReportController',
3973
                                        'action' => 'overview',
3974
                                    ]
3975
                                ]
3976
                            ],
7024 eleazar 3977
                            'csv' => [
3978
                                'type' => Segment::class,
3979
                                'options' => [
3980
                                    'route' => '/csv',
3981
                                    'defaults' => [
3982
                                        'controller' => '\LeadersLinked\Controller\SurveyReportController',
3983
                                        'action' => 'csv',
3984
                                    ]
3985
                                ]
3986
                            ],
5823 eleazar 3987
                        ],
3988
                    ],
1333 efrain 3989
                ]
3990
            ],
3991
 
3992
            'building-my-future' => [
3993
                'type' => Literal::class,
3994
                'options' => [
3995
                    'route' => '/building-my-future',
3996
                    'defaults' => [
3997
                        'controller' => '\LeadersLinked\Controller\UnknownController',
3998
                        'action' => 'index'
3999
                    ]
4000
                ],
4001
                'may_terminate' => true,
4002
                'child_routes' => [
4003
                ]
4004
            ],
4005
 
4588 nelberth 4006
            /* copy */
7184 nelberth 4007
 
7224 nelberth 4008
 
1333 efrain 4009
            'high-performance-teams' => [
4010
                'type' => Literal::class,
4011
                'options' => [
4591 nelberth 4012
                    'route' => '/high-performance-teams',
4588 nelberth 4013
                    'defaults' => [
4376 nelberth 4014
                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsController',
1333 efrain 4015
                        'action' => 'index'
4016
                    ]
4017
                ],
4018
                'may_terminate' => true,
4019
                'child_routes' => [
7240 nelberth 4020
                    'groups' => [
4388 nelberth 4021
                        'type' => Literal::class,
4022
                        'options' => [
7224 nelberth 4023
                            'route' => '/groups',
4388 nelberth 4024
                            'defaults' => [
7224 nelberth 4025
                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsController',
4388 nelberth 4026
                                'action' => 'index'
4027
                            ]
4411 nelberth 4028
                        ],'may_terminate' => true,
4029
                        'child_routes' => [
4030
 
4031
                            'add' => [
4032
                                'type' => Literal::class,
4033
                                'options' => [
4034
                                    'route' => '/add',
4035
                                    'defaults' => [
7224 nelberth 4036
                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsController',
4411 nelberth 4037
                                        'action' => 'add'
4038
                                    ]
4039
                                ]
4040
                            ],
4041
                            'edit' => [
4042
                                'type' => Segment::class,
4043
                                'options' => [
11082 nelberth 4044
                                    'route' => '/edit/:group_id',
4411 nelberth 4045
                                    'constraints' => [
11082 nelberth 4046
                                        'group_id' => '[A-Za-z0-9\-]+\=*'
4411 nelberth 4047
                                    ],
4048
                                    'defaults' => [
7224 nelberth 4049
                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsController',
4411 nelberth 4050
                                        'action' => 'edit'
4051
                                    ]
4052
                                ]
4053
                            ],
4054
                            'delete' => [
4055
                                'type' => Segment::class,
4056
                                'options' => [
11082 nelberth 4057
                                    'route' => '/delete/:group_id',
4411 nelberth 4058
                                    'constraints' => [
11082 nelberth 4059
                                        'group_id' => '[A-Za-z0-9\-]+\=*'
4411 nelberth 4060
                                    ],
4061
                                    'defaults' => [
7224 nelberth 4062
                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsController',
4411 nelberth 4063
                                        'action' => 'delete'
4064
                                    ]
4065
                                ]
7261 nelberth 4066
                            ],'view' => [
4509 nelberth 4067
                                'type' => Segment::class,
4068
                                'options' => [
11082 nelberth 4069
                                    'route' => '/view/:group_id',
4509 nelberth 4070
                                    'constraints' => [
11082 nelberth 4071
                                        'group_id' => '[A-Za-z0-9\-]+\=*',
4509 nelberth 4072
                                    ],
4073
                                    'defaults' => [
7308 nelberth 4074
                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewController',
4571 nelberth 4075
                                        'action' => 'index'
4509 nelberth 4076
                                    ]
7483 nelberth 4077
                                ],
4078
                                    'may_terminate' => true,
4079
                                    'child_routes' => [
7811 nelberth 4080
                                        'members' => [
7823 nelberth 4081
                                            'type' => Literal::class,
7811 nelberth 4082
                                            'options' => [
4083
                                                'route' => '/members',
4084
                                                'defaults' => [
4085
                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController',
4086
                                                    'action' => 'index'
4087
                                                ]
8012 nelberth 4088
                                            ],'may_terminate' => true,
4089
                                            'child_routes' => [
4090
                                                'invite' => [
4091
                                                    'type' => Segment::class,
4092
                                                    'options' => [
11083 nelberth 4093
                                                        'route' => '/invite/:user_id',
8054 nelberth 4094
                                                        'constraints' => [
11083 nelberth 4095
                                                            'user_id' => '[A-Za-z0-9\-]+\=*'
8054 nelberth 4096
                                                        ],
8012 nelberth 4097
                                                        'defaults' => [
4098
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController',
4099
                                                            'action' => 'invite'
4100
                                                        ]
4101
                                                    ]
4102
                                                ],
4103
                                                'edit' => [
4104
                                                    'type' => Segment::class,
4105
                                                    'options' => [
11083 nelberth 4106
                                                        'route' => '/edit/:user_id',
8012 nelberth 4107
                                                        'constraints' => [
11083 nelberth 4108
                                                            'user_id' => '[A-Za-z0-9\-]+\=*'
8012 nelberth 4109
                                                        ],
4110
                                                        'defaults' => [
4111
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController',
4112
                                                            'action' => 'edit'
4113
                                                        ]
4114
                                                    ]
4115
                                                ],
8054 nelberth 4116
                                                'delete' => [
8012 nelberth 4117
                                                    'type' => Segment::class,
4118
                                                    'options' => [
11083 nelberth 4119
                                                        'route' => '/delete[/:user_id]',
8012 nelberth 4120
                                                        'constraints' => [
11083 nelberth 4121
                                                            'user_id' => '[A-Za-z0-9\-]+\=*'
8012 nelberth 4122
                                                        ],
4123
                                                        'defaults' => [
4124
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController',
8054 nelberth 4125
                                                            'action' => 'delete'
8012 nelberth 4126
                                                        ]
4127
                                                    ]
4128
                                                ],
4129
                                            ]
7811 nelberth 4130
                                        ],
8686 nelberth 4131
                                        'urgent' => [
8702 nelberth 4132
                                            'type' => Segment::class,
4133
                                            'options' => [
4134
                                                'route' => '/urgent[/:urgent]',
4135
                                                'constraints' => [
4136
                                                    'urgent' => 'u'
8686 nelberth 4137
                                                ],
8702 nelberth 4138
                                                'defaults' => [
4139
                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewController',
4140
                                                    'action' => 'index'
4141
                                                ]
4142
                                            ]
4143
                                        ],
9095 nelberth 4144
                                        'calendar' => [
9924 nelberth 4145
                                            'type' => Literal::class,
9095 nelberth 4146
                                            'options' => [
9924 nelberth 4147
                                                'route' => '/calendar',
4148
 
9095 nelberth 4149
                                                'defaults' => [
4150
                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewCalendarController',
4151
                                                    'action' => 'index'
4152
                                                ]
9923 nelberth 4153
                                            ],'may_terminate' => true,
4154
                                            'child_routes' => [
4155
                                                'view' => [
9924 nelberth 4156
                                                    'type' => Segment::class,
9923 nelberth 4157
                                                    'options' => [
11083 nelberth 4158
                                                        'route' => '/view[/:feed_id]',
9924 nelberth 4159
                                                        'constraints' => [
11083 nelberth 4160
                                                            'feed_id' => '[A-Za-z0-9\-]+\=*'
9924 nelberth 4161
                                                        ],
9923 nelberth 4162
                                                        'defaults' => [
4163
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewCalendarController',
4164
                                                            'action' => 'view'
4165
                                                        ]
4166
                                                    ]
4167
                                                ],
9095 nelberth 4168
                                            ]
4169
                                        ],
9631 nelberth 4170
                                        'foro' => [
9621 nelberth 4171
                                            'type' => Literal::class,
9424 nelberth 4172
                                            'options' => [
9631 nelberth 4173
                                                'route' => '/foro',
10143 nelberth 4174
                                                'defaults' => [
4175
                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoController',
4176
                                                    'action' => 'index'
4177
                                                ]
9644 nelberth 4178
                                            ],
4179
                                            'may_terminate' => true,
9631 nelberth 4180
                                            'child_routes' => [
10150 nelberth 4181
                                                'view' => [
4182
                                                    'type' => Literal::class,
4183
                                                    'options' => [
4184
                                                        'route' => '/view',
4185
                                                        'defaults' => [
4186
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoController',
4187
                                                            'action' => 'view'
4188
                                                        ]
4189
                                                    ]
4190
                                                ],
9631 nelberth 4191
                                                'categories' => [
4192
                                                    'type' => Literal::class,
4193
                                                    'options' => [
4194
                                                        'route' => '/categories',
4195
                                                        'defaults' => [
4196
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController',
4197
                                                            'action' => 'index'
4198
                                                        ]
9638 nelberth 4199
                                                    ],
9644 nelberth 4200
                                                    'may_terminate' => true,
9640 nelberth 4201
                                                    'child_routes' => [
9720 nelberth 4202
                                                        'view' => [
4203
                                                            'type' => Literal::class,
4204
                                                            'options' => [
4205
                                                                'route' => '/view',
4206
                                                                'defaults' => [
4207
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController',
4208
                                                                    'action' => 'view'
4209
                                                                ]
4210
                                                            ]
4211
                                                        ],
9644 nelberth 4212
                                                        'add' => [
4213
                                                            'type' => Literal::class,
4214
                                                            'options' => [
4215
                                                                'route' => '/add',
4216
                                                                'defaults' => [
4217
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController',
4218
                                                                    'action' => 'add'
4219
                                                                ]
4220
                                                            ]
4221
                                                        ],
9643 nelberth 4222
                                                        'edit' => [
4223
                                                            'type' => Segment::class,
9640 nelberth 4224
                                                            'options' => [
11083 nelberth 4225
                                                                'route' => '/edit/:category_id',
9643 nelberth 4226
                                                                'constraints' => [
11083 nelberth 4227
                                                                    'category_id' => '[A-Za-z0-9\-]+\=*'
9643 nelberth 4228
                                                                ],
9640 nelberth 4229
                                                                'defaults' => [
4230
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController',
9643 nelberth 4231
                                                                    'action' => 'edit'
9640 nelberth 4232
                                                                ]
4233
                                                            ]
4234
                                                        ],
9643 nelberth 4235
                                                        'delete' => [
4236
                                                            'type' => Segment::class,
4237
                                                            'options' => [
11083 nelberth 4238
                                                                'route' => '/delete/:category_id',
9643 nelberth 4239
                                                                'constraints' => [
11083 nelberth 4240
                                                                    'category_id' => '[A-Za-z0-9\-]+\=*'
9643 nelberth 4241
                                                                ],
4242
                                                                'defaults' => [
4243
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController',
4244
                                                                    'action' => 'delete'
4245
                                                                ]
4246
                                                            ]
4247
                                                        ],
9760 nelberth 4248
                                                        'articles' => [
4249
                                                            'type' => Segment::class,
4250
                                                            'options' => [
11083 nelberth 4251
                                                                'route' => '/:category_id/articles',
9760 nelberth 4252
                                                                'constraints' => [
11083 nelberth 4253
                                                                    'category_id' => '[A-Za-z0-9\-]+\=*'
9760 nelberth 4254
                                                                ],
4255
                                                                'defaults' => [
4256
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesController',
4257
                                                                    'action' => 'index'
4258
                                                                ]
9845 nelberth 4259
                                                            ],
4260
                                                            'may_terminate' => true,
4261
                                                            'child_routes' => [
4262
                                                                'add' => [
4263
                                                                    'type' => Literal::class,
4264
                                                                    'options' => [
4265
                                                                        'route' => '/add',
4266
                                                                        'defaults' => [
4267
                                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesController',
4268
                                                                            'action' => 'add'
4269
                                                                        ]
4270
                                                                    ]
4271
                                                                ],
4272
                                                                'edit' => [
4273
                                                                    'type' => Segment::class,
4274
                                                                    'options' => [
11083 nelberth 4275
                                                                        'route' => '/edit/:article_id',
9845 nelberth 4276
                                                                        'constraints' => [
11083 nelberth 4277
                                                                            'articles_id' => '[A-Za-z0-9\-]+\=*'
9845 nelberth 4278
                                                                        ],
4279
                                                                        'defaults' => [
4280
                                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesController',
4281
                                                                            'action' => 'edit'
4282
                                                                        ]
4283
                                                                    ]
4284
                                                                ],
4285
 
4286
                                                                'delete' => [
4287
                                                                    'type' => Segment::class,
4288
                                                                    'options' => [
11083 nelberth 4289
                                                                        'route' => '/delete/:article_id',
9845 nelberth 4290
                                                                        'constraints' => [
11083 nelberth 4291
                                                                            'articles_id' => '[A-Za-z0-9\-]+\=*'
9845 nelberth 4292
                                                                        ],
4293
                                                                        'defaults' => [
4294
                                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesController',
4295
                                                                            'action' => 'delete'
4296
                                                                        ]
4297
                                                                    ]
4298
                                                                ],
4299
                                                                'view' => [
4300
                                                                    'type' => Segment::class,
4301
                                                                    'options' => [
11083 nelberth 4302
                                                                        'route' => '/view/:article_id',
9845 nelberth 4303
                                                                        'constraints' => [
11083 nelberth 4304
                                                                            'articles_id' => '[A-Za-z0-9\-]+\=*'
9845 nelberth 4305
                                                                        ],
4306
                                                                        'defaults' => [
9921 nelberth 4307
                                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesViewController',
4308
                                                                            'action' => 'index'
9845 nelberth 4309
                                                                        ]
4310
                                                                    ]
4311
                                                                ],
9760 nelberth 4312
                                                            ]
4313
                                                        ],
9640 nelberth 4314
                                                    ],
9424 nelberth 4315
                                                ],
4316
                                            ]
4317
                                        ],
7483 nelberth 4318
                                        'topic' => [
8649 nelberth 4319
                                            'type' => Literal::class,
7483 nelberth 4320
                                            'options' => [
8649 nelberth 4321
                                                'route' => '/topic',
7483 nelberth 4322
                                                'defaults' => [
7491 nelberth 4323
                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController',
7483 nelberth 4324
                                                    'action' => 'index'
4325
                                                ]
4326
                                            ],'may_terminate' => true,
4327
                                            'child_routes' => [
4328
                                                'add' => [
4329
                                                    'type' => Literal::class,
4330
                                                    'options' => [
4331
                                                        'route' => '/add',
4332
                                                        'defaults' => [
7506 nelberth 4333
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController',
7483 nelberth 4334
                                                            'action' => 'add'
4335
                                                        ]
4336
                                                    ]
4337
                                                ],
4338
                                                'edit' => [
4339
                                                    'type' => Segment::class,
4340
                                                    'options' => [
11083 nelberth 4341
                                                        'route' => '/edit/:topic_id',
7483 nelberth 4342
                                                        'constraints' => [
11083 nelberth 4343
                                                            'topic_id' => '[A-Za-z0-9\-]+\=*'
7483 nelberth 4344
                                                        ],
4345
                                                        'defaults' => [
7491 nelberth 4346
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController',
7483 nelberth 4347
                                                            'action' => 'edit'
4348
                                                        ]
4349
                                                    ]
4350
                                                ],
7636 nelberth 4351
                                                'view' => [
7629 nelberth 4352
                                                    'type' => Segment::class,
4353
                                                    'options' => [
11083 nelberth 4354
                                                        'route' => '/view[/:topic_id]',
7629 nelberth 4355
                                                        'constraints' => [
11083 nelberth 4356
                                                            'topic_id' => '[A-Za-z0-9\-]+\=*'
7629 nelberth 4357
                                                        ],
4358
                                                        'defaults' => [
7635 nelberth 4359
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewController',
7629 nelberth 4360
                                                            'action' => 'index'
4361
                                                        ]
4362
                                                    ]
4363
                                                ],
8686 nelberth 4364
 
7483 nelberth 4365
                                                'delete' => [
4366
                                                    'type' => Segment::class,
4367
                                                    'options' => [
11083 nelberth 4368
                                                        'route' => '/delete/:topic_id',
7483 nelberth 4369
                                                        'constraints' => [
11083 nelberth 4370
                                                            'topic_id' => '[A-Za-z0-9\-]+\=*'
7483 nelberth 4371
                                                        ],
4372
                                                        'defaults' => [
7491 nelberth 4373
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController',
7483 nelberth 4374
                                                            'action' => 'delete'
4375
                                                        ]
4376
                                                    ]
4377
                                                ]
4378
                                            ],
4379
                                        ],
4380
 
4381
                                    ],
4382
 
4411 nelberth 4383
                            ],
4384
                        ]
4388 nelberth 4385
                    ],
1333 efrain 4386
                ]
4387
            ],
7224 nelberth 4388
 
4588 nelberth 4389
 
1333 efrain 4390
            'my-trainer' => [
4391
                'type' => Literal::class,
4392
                'options' => [
4393
                    'route' => '/my-trainer',
4394
                    'defaults' => [
4395
                        'controller' => '\LeadersLinked\Controller\UnknownController',
4396
                        'action' => 'index'
4397
                    ]
4398
                ],
4399
                'may_terminate' => true,
4400
                'child_routes' => [
8462 eleazar 4401
                    'category' => [
4402
                        'type' => Literal::class,
4403
                        'options' => [
4404
                            'route' => '/category',
4405
                            'defaults' => [
8529 eleazar 4406
                                'controller' => '\LeadersLinked\Controller\MyTrainerCategoriesController',
8462 eleazar 4407
                                'action' => 'index'
4408
                            ]
4409
                        ],
4410
                        'may_terminate' => true,
4411
                        'child_routes' => [
4412
                            'add' => [
4413
                                'type' => Literal::class,
4414
                                'options' => [
4415
                                    'route' => '/add',
4416
                                    'defaults' => [
8529 eleazar 4417
                                        'controller' => '\LeadersLinked\Controller\MyTrainerCategoriesController',
8462 eleazar 4418
                                        'action' => 'add'
4419
                                    ]
4420
                                ]
4421
                            ],
4422
                            'edit' => [
4423
                                'type' => Segment::class,
4424
                                'options' => [
4425
                                    'route' => '/edit/:id',
4426
                                    'constraints' => [
4427
                                        'id' => '[A-Za-z0-9\-]+\=*'
4428
                                    ],
4429
                                    'defaults' => [
8529 eleazar 4430
                                        'controller' => '\LeadersLinked\Controller\MyTrainerCategoriesController',
8462 eleazar 4431
                                        'action' => 'edit'
4432
                                    ]
4433
                                ]
4434
                            ],
4435
                            'delete' => [
4436
                                'type' => Segment::class,
4437
                                'options' => [
4438
                                    'route' => '/delete/:id',
4439
                                    'constraints' => [
4440
                                        'id' => '[A-Za-z0-9\-]+\=*'
4441
                                    ],
4442
                                    'defaults' => [
8529 eleazar 4443
                                        'controller' => '\LeadersLinked\Controller\MyTrainerCategoriesController',
8462 eleazar 4444
                                        'action' => 'delete'
4445
                                    ]
4446
                                ]
4447
                            ]
4448
                        ]
4449
                    ],
4450
                    'question' => [
4451
                        'type' => Literal::class,
4452
                        'options' => [
4453
                            'route' => '/question',
4454
                            'defaults' => [
9350 eleazar 4455
                                'controller' => '\LeadersLinked\Controller\MyTrainerQuestionController',
8462 eleazar 4456
                                'action' => 'index'
4457
                            ]
4458
                        ],
4459
                        'may_terminate' => true,
4460
                        'child_routes' => [
4461
                            'add' => [
4462
                                'type' => Literal::class,
4463
                                'options' => [
4464
                                    'route' => '/add',
4465
                                    'defaults' => [
9350 eleazar 4466
                                        'controller' => '\LeadersLinked\Controller\MyTrainerQuestionController',
8462 eleazar 4467
                                        'action' => 'add'
4468
                                    ]
4469
                                ]
4470
                            ],
4471
                            'edit' => [
4472
                                'type' => Segment::class,
4473
                                'options' => [
4474
                                    'route' => '/edit/:id',
4475
                                    'constraints' => [
4476
                                        'id' => '[A-Za-z0-9\-]+\=*'
4477
                                    ],
4478
                                    'defaults' => [
9350 eleazar 4479
                                        'controller' => '\LeadersLinked\Controller\MyTrainerQuestionController',
8462 eleazar 4480
                                        'action' => 'edit'
4481
                                    ]
4482
                                ]
4483
                            ],
4484
                            'delete' => [
4485
                                'type' => Segment::class,
4486
                                'options' => [
4487
                                    'route' => '/delete/:id',
4488
                                    'constraints' => [
4489
                                        'id' => '[A-Za-z0-9\-]+\=*'
4490
                                    ],
4491
                                    'defaults' => [
9350 eleazar 4492
                                        'controller' => '\LeadersLinked\Controller\MyTrainerQuestionController',
8462 eleazar 4493
                                        'action' => 'delete'
4494
                                    ]
4495
                                ]
10697 eleazar 4496
                            ]
8462 eleazar 4497
                        ]
4498
                    ],
4499
                    'answer' => [
10765 eleazar 4500
                        'type' => Segment::class,
8462 eleazar 4501
                        'options' => [
10819 eleazar 4502
                            'route' => '/answer/:myt_id',
10759 eleazar 4503
                            'constraints' => [
10819 eleazar 4504
                                'myt_id' => '[A-Za-z0-9\-]+\=*'
10759 eleazar 4505
                            ],
8462 eleazar 4506
                            'defaults' => [
10602 eleazar 4507
                                'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
8462 eleazar 4508
                                'action' => 'index'
4509
                            ]
4510
                        ],
4511
                        'may_terminate' => true,
4512
                        'child_routes' => [
4513
                            'add' => [
4514
                                'type' => Literal::class,
4515
                                'options' => [
4516
                                    'route' => '/add',
4517
                                    'defaults' => [
10602 eleazar 4518
                                        'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
8462 eleazar 4519
                                        'action' => 'add'
4520
                                    ]
4521
                                ]
4522
                            ],
4523
                            'edit' => [
4524
                                'type' => Segment::class,
4525
                                'options' => [
4526
                                    'route' => '/edit/:id',
4527
                                    'constraints' => [
4528
                                        'id' => '[A-Za-z0-9\-]+\=*'
4529
                                    ],
4530
                                    'defaults' => [
10602 eleazar 4531
                                        'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
8462 eleazar 4532
                                        'action' => 'edit'
4533
                                    ]
4534
                                ]
4535
                            ],
4536
                            'delete' => [
4537
                                'type' => Segment::class,
4538
                                'options' => [
4539
                                    'route' => '/delete/:id',
4540
                                    'constraints' => [
4541
                                        'id' => '[A-Za-z0-9\-]+\=*'
4542
                                    ],
4543
                                    'defaults' => [
10602 eleazar 4544
                                        'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
8462 eleazar 4545
                                        'action' => 'delete'
4546
                                    ]
4547
                                ]
10608 eleazar 4548
                            ],
4549
                            'urgent' => [
4550
                                'type' => Segment::class,
4551
                                'options' => [
4552
                                    'route' => '/urgent[/:urgent]',
4553
                                    'constraints' => [
4554
                                        'urgent' => 'u'
4555
                                    ],
4556
                                    'defaults' => [
4557
                                        'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
4558
                                        'action' => 'index'
4559
                                    ]
4560
                                ]
4561
                            ],
8462 eleazar 4562
                        ]
4563
                    ],
1333 efrain 4564
                ]
4565
            ],
4566
 
1 www 4567
        ]
4568
    ],
4569
    'controllers' => [
4570
        'factories' => [
4571
            \LeadersLinked\Controller\AuthController::class => \LeadersLinked\Factory\Controller\AuthControllerFactory::class,
4572
            \LeadersLinked\Controller\FeedController::class => \LeadersLinked\Factory\Controller\FeedControllerFactory::class,
4573
            \LeadersLinked\Controller\FollowerController::class => \LeadersLinked\Factory\Controller\FollowerControllerFactory::class,
4574
            \LeadersLinked\Controller\JobController::class => \LeadersLinked\Factory\Controller\JobControllerFactory::class,
1469 eleazar 4575
            \LeadersLinked\Controller\RecruitmentSelectionController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionFactory::class,
1709 eleazar 4576
            \LeadersLinked\Controller\RecruitmentSelectionInterviewController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionInterviewFactory::class,
1712 eleazar 4577
            \LeadersLinked\Controller\RecruitmentSelectionInterviewFormController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionInterviewFormFactory::class,
8797 eleazar 4578
            \LeadersLinked\Controller\RecruitmentSelectionInterviewFileController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionInterviewFileControllerFactory::class,
1385 eleazar 4579
            \LeadersLinked\Controller\RecruitmentSelectionVacancyController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionVacancyFactory::class,
1459 eleazar 4580
            \LeadersLinked\Controller\RecruitmentSelectionCandidateController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionCandidateFactory::class,
1 www 4581
            \LeadersLinked\Controller\ProfileController::class => \LeadersLinked\Factory\Controller\ProfileControllerFactory::class,
4582
            \LeadersLinked\Controller\CompanyController::class => \LeadersLinked\Factory\Controller\CompanyControllerFactory::class,
4583
            \LeadersLinked\Controller\CompanySizeController::class => \LeadersLinked\Factory\Controller\CompanySizeControllerFactory::class,
1115 geraldo 4584
            \LeadersLinked\Controller\BehaviorsController::class => \LeadersLinked\Factory\Controller\BehaviorsControllerFactory::class,
1 www 4585
            \LeadersLinked\Controller\CompetencyTypeController::class => \LeadersLinked\Factory\Controller\CompetencyTypeControllerFactory::class,
4586
            \LeadersLinked\Controller\CompetencyController::class => \LeadersLinked\Factory\Controller\CompetencyControllerFactory::class,
4587
            \LeadersLinked\Controller\DegreeController::class => \LeadersLinked\Factory\Controller\DegreeControllerFactory::class,
4588
            \LeadersLinked\Controller\EmailTemplateController::class => \LeadersLinked\Factory\Controller\EmailTemplateControllerFactory::class,
4589
            \LeadersLinked\Controller\PushTemplateController::class => \LeadersLinked\Factory\Controller\PushTemplateControllerFactory::class,
4590
            \LeadersLinked\Controller\GroupTypeController::class => \LeadersLinked\Factory\Controller\GroupTypeControllerFactory::class,
4591
            \LeadersLinked\Controller\IndustryController::class => \LeadersLinked\Factory\Controller\IndustryControllerFactory::class,
4592
            \LeadersLinked\Controller\JobCategoryController::class => \LeadersLinked\Factory\Controller\JobCategoryControllerFactory::class,
28 efrain 4593
            \LeadersLinked\Controller\JobDescriptionController::class => \LeadersLinked\Factory\Controller\JobDescriptionControllerFactory::class,
1 www 4594
            \LeadersLinked\Controller\PageController::class => \LeadersLinked\Factory\Controller\PageControllerFactory::class,
67 efrain 4595
            \LeadersLinked\Controller\PositionController::class => \LeadersLinked\Factory\Controller\PositionControllerFactory::class,
1 www 4596
            \LeadersLinked\Controller\PostController::class => \LeadersLinked\Factory\Controller\PostControllerFactory::class,
4597
            \LeadersLinked\Controller\SkillController::class => \LeadersLinked\Factory\Controller\SkillControllerFactory::class,
4598
            \LeadersLinked\Controller\UserController::class => \LeadersLinked\Factory\Controller\UserControllerFactory::class,
4599
            \LeadersLinked\Controller\DashboardController::class => \LeadersLinked\Factory\Controller\DashboardControllerFactory::class,
115 efrain 4600
            \LeadersLinked\Controller\SelfEvaluationController::class => \LeadersLinked\Factory\Controller\SelfEvaluationControllerFactory::class,
4601
            \LeadersLinked\Controller\SelfEvaluationFormController::class => \LeadersLinked\Factory\Controller\SelfEvaluationFormControllerFactory::class,
1089 geraldo 4602
            \LeadersLinked\Controller\SelfEvaluationFormUserController::class => \LeadersLinked\Factory\Controller\SelfEvaluationFormUserControllerFactory::class,
247 geraldo 4603
            \LeadersLinked\Controller\SelfEvaluationReviewController::class => \LeadersLinked\Factory\Controller\SelfEvaluationReviewControllerFactory::class,
4375 eleazar 4604
            \LeadersLinked\Controller\SurveyController::class => \LeadersLinked\Factory\Controller\SurveyControllerFactory::class,
4605
            \LeadersLinked\Controller\SurveyFormController::class => \LeadersLinked\Factory\Controller\SurveyFormControllerFactory::class,
5868 eleazar 4606
            \LeadersLinked\Controller\SurveyReportController::class => \LeadersLinked\Factory\Controller\SurveyReportControllerFactory::class,
5287 eleazar 4607
            \LeadersLinked\Controller\SurveyTestController::class => \LeadersLinked\Factory\Controller\SurveyTestControllerFactory::class,
7218 eleazar 4608
            \LeadersLinked\Controller\OrganizationalClimateController::class => \LeadersLinked\Factory\Controller\OrganizationalClimateControllerFactory::class,
4609
            \LeadersLinked\Controller\OrganizationalClimateFormController::class => \LeadersLinked\Factory\Controller\OrganizationalClimateFormControllerFactory::class,
4610
            \LeadersLinked\Controller\OrganizationalClimateReportController::class => \LeadersLinked\Factory\Controller\OrganizationalClimateReportControllerFactory::class,
4611
            \LeadersLinked\Controller\OrganizationalClimateTestController::class => \LeadersLinked\Factory\Controller\OrganizationalClimateTestControllerFactory::class,
987 geraldo 4612
            \LeadersLinked\Controller\PerformanceEvaluationFormController::class => \LeadersLinked\Factory\Controller\PerformanceEvaluationFormControllerFactory::class,
9335 eleazar 4613
            \LeadersLinked\Controller\MyTrainerCategoriesController::class => \LeadersLinked\Factory\Controller\MyTrainerCategoriesControllerFactory::class,
9350 eleazar 4614
            \LeadersLinked\Controller\MyTrainerQuestionController::class => \LeadersLinked\Factory\Controller\MyTrainerQuestionControllerFactory::class,
10423 eleazar 4615
            \LeadersLinked\Controller\MyTrainerAnswerController::class => \LeadersLinked\Factory\Controller\MyTrainerAnswerControllerFactory::class,
1383 efrain 4616
            \LeadersLinked\Controller\PerformanceEvaluationEvaluationController::class => \LeadersLinked\Factory\Controller\PerformanceEvaluationEvaluationControllerFactory::class,
1 www 4617
            \LeadersLinked\Controller\MicrolearningController::class => \LeadersLinked\Factory\Controller\MicrolearningControllerFactory::class,
66 efrain 4618
            \LeadersLinked\Controller\MicrolearningQuizController::class => \LeadersLinked\Factory\Controller\MicrolearningQuizControllerFactory::class,
4619
            \LeadersLinked\Controller\MicrolearningQuestionController::class => \LeadersLinked\Factory\Controller\MicrolearningQuestionControllerFactory::class,
4620
            \LeadersLinked\Controller\MicrolearningAnswerController::class => \LeadersLinked\Factory\Controller\MicrolearningAnswerControllerFactory::class,
1 www 4621
            \LeadersLinked\Controller\MicrolearningTopicController::class => \LeadersLinked\Factory\Controller\MicrolearningTopicControllerFactory::class,
4622
            \LeadersLinked\Controller\MicrolearningCapsuleController::class => \LeadersLinked\Factory\Controller\MicrolearningCapsuleControllerFactory::class,
4623
            \LeadersLinked\Controller\MicrolearningSlideController::class => \LeadersLinked\Factory\Controller\MicrolearningSlideControllerFactory::class,
4624
            \LeadersLinked\Controller\MicrolearningAccessForStudentsController::class => \LeadersLinked\Factory\Controller\MicrolearningAccessForStudentsControllerFactory::class,
4625
            \LeadersLinked\Controller\MicrolearningStudentsController::class => \LeadersLinked\Factory\Controller\MicrolearningStudentsControllerFactory::class,
4626
            \LeadersLinked\Controller\MicrolearningReportsController::class => \LeadersLinked\Factory\Controller\MicrolearningReportsControllerFactory::class,
4627
            \LeadersLinked\Controller\MicrolearningExtendUserCompanyController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserCompanyControllerFactory::class,
4628
            \LeadersLinked\Controller\MicrolearningExtendUserFunctionController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserFunctionControllerFactory::class,
4629
            \LeadersLinked\Controller\MicrolearningExtendUserGroupController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserGroupControllerFactory::class,
4630
            \LeadersLinked\Controller\MicrolearningExtendUserInstitutionController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserInstitutionControllerFactory::class,
4631
            \LeadersLinked\Controller\MicrolearningExtendUserPartnerController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserPartnerControllerFactory::class,
4632
            \LeadersLinked\Controller\MicrolearningExtendUserProgramController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserProgramControllerFactory::class,
4633
            \LeadersLinked\Controller\MicrolearningExtendUserSectorController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserSectorControllerFactory::class,
4634
            \LeadersLinked\Controller\MicrolearningExtendUserStudentTypeController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserStudentTypeControllerFactory::class,
4635
            \LeadersLinked\Controller\StorageController::class => \LeadersLinked\Factory\Controller\StorageControllerFactory::class,
2232 nelberth 4636
            \LeadersLinked\Controller\PlanningObjectivesAndGoalsController::class => \LeadersLinked\Factory\Controller\PlanningObjectivesAndGoalsControllerFactory::class,
2228 nelberth 4637
            \LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController::class => \LeadersLinked\Factory\Controller\PlanningObjectivesAndGoalsObjectivesControllerFactory::class,
2327 nelberth 4638
            \LeadersLinked\Controller\PlanningObjectivesAndGoalsGoalsController::class => \LeadersLinked\Factory\Controller\PlanningObjectivesAndGoalsGoalsControllerFactory::class,
2517 nelberth 4639
            \LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController::class => \LeadersLinked\Factory\Controller\PlanningObjectivesAndGoalsTaskControllerFactory::class,
4377 nelberth 4640
            \LeadersLinked\Controller\HighPerformanceTeamsController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsControllerFactory::class,
7224 nelberth 4641
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsControllerFactory::class,
9095 nelberth 4642
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewCalendarController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewCalendarControllerFactory::class,
9619 nelberth 4643
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewForoCategoriesControllerFactory::class,
9764 nelberth 4644
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewForoArticlesControllerFactory::class,
10143 nelberth 4645
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewForoControllerFactory::class,
9921 nelberth 4646
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesViewController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewForoArticlesViewControllerFactory::class,
7308 nelberth 4647
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewControllerFactory::class,
7494 nelberth 4648
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewTopicControllerFactory::class,
7811 nelberth 4649
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsMembersControllerFactory::class,
1333 efrain 4650
 
4651
 
1666 nelberth 4652
 
1333 efrain 4653
            \LeadersLinked\Controller\UnknownController::class => \LeadersLinked\Factory\Controller\UnknownControllerFactory::class,
66 efrain 4654
            \LeadersLinked\Controller\TestController::class => \LeadersLinked\Factory\Controller\TestControllerFactory::class,
1 www 4655
        ],
4656
        'aliases' => [
4657
            '\LeadersLinked\Controller\AuthController' => \LeadersLinked\Controller\AuthController::class,
4658
            '\LeadersLinked\Controller\FollowerController' => \LeadersLinked\Controller\FollowerController::class,
4659
            '\LeadersLinked\Controller\FeedController' => \LeadersLinked\Controller\FeedController::class,
4660
            '\LeadersLinked\Controller\JobController' => \LeadersLinked\Controller\JobController::class,
1343 eleazar 4661
            '\LeadersLinked\Controller\RecruitmentSelectionController' => \LeadersLinked\Controller\RecruitmentSelectionController::class,
1385 eleazar 4662
            '\LeadersLinked\Controller\RecruitmentSelectionVacancyController' => \LeadersLinked\Controller\RecruitmentSelectionVacancyController::class,
1459 eleazar 4663
            '\LeadersLinked\Controller\RecruitmentSelectionCandidateController' => \LeadersLinked\Controller\RecruitmentSelectionCandidateController::class,
1712 eleazar 4664
            '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController' => \LeadersLinked\Controller\RecruitmentSelectionInterviewFormController::class,
8795 eleazar 4665
            '\LeadersLinked\Controller\RecruitmentSelectionInterviewFileController' => \LeadersLinked\Controller\RecruitmentSelectionInterviewFileController::class,
1 www 4666
            '\LeadersLinked\Controller\ProfileController' => \LeadersLinked\Controller\ProfileController::class,
4667
            '\LeadersLinked\Controller\CompanyController' => \LeadersLinked\Controller\CompanyController::class,
4668
            '\LeadersLinked\Controller\CompanySizeController' => \LeadersLinked\Controller\CompanySizeController::class,
4669
            '\LeadersLinked\Controller\CompetencyTypeController' => \LeadersLinked\Controller\CompetencyTypeController::class,
1102 geraldo 4670
            '\LeadersLinked\Controller\BehaviorsController' => \LeadersLinked\Controller\BehaviorsController::class,
1 www 4671
            '\LeadersLinked\Controller\CompetencyController' => \LeadersLinked\Controller\CompetencyController::class,
4672
            '\LeadersLinked\Controller\DegreeController' => \LeadersLinked\Controller\DegreeController::class,
4673
            '\LeadersLinked\Controller\EmailTemplateController' => \LeadersLinked\Controller\EmailTemplateController::class,
1089 geraldo 4674
            '\LeadersLinked\Controller\PushTemplateController' => \LeadersLinked\Controller\PushTemplateController::class,
1 www 4675
            '\LeadersLinked\Controller\GroupTypeController' => \LeadersLinked\Controller\GroupTypeController::class,
4676
            '\LeadersLinked\Controller\IndustryController' => \LeadersLinked\Controller\IndustryController::class,
4677
            '\LeadersLinked\Controller\JobCategoryController' => \LeadersLinked\Controller\JobCategoryController::class,
66 efrain 4678
            '\LeadersLinked\Controller\JobDescriptionController' => \LeadersLinked\Controller\JobDescriptionController::class,
1 www 4679
            '\LeadersLinked\Controller\PageController' => \LeadersLinked\Controller\PageController::class,
67 efrain 4680
            '\LeadersLinked\Controller\PositionController' => \LeadersLinked\Controller\PositionController::class,
1 www 4681
            '\LeadersLinked\Controller\PostController' => \LeadersLinked\Controller\PostController::class,
4682
            '\LeadersLinked\Controller\SkillController' => \LeadersLinked\Controller\SkillController::class,
4683
            '\LeadersLinked\Controller\UserController' => \LeadersLinked\Controller\UserController::class,
4684
            '\LeadersLinked\Controller\DashboardController' => \LeadersLinked\Controller\DashboardController::class,
115 efrain 4685
            '\LeadersLinked\Controller\SelfEvaluationController' => \LeadersLinked\Controller\SelfEvaluationController::class,
4686
            '\LeadersLinked\Controller\SelfEvaluationFormController' => \LeadersLinked\Controller\SelfEvaluationFormController::class,
4687
            '\LeadersLinked\Controller\SelfEvaluationFormUserController' => \LeadersLinked\Controller\SelfEvaluationFormUserController::class,
247 geraldo 4688
            '\LeadersLinked\Controller\SelfEvaluationReviewController' => \LeadersLinked\Controller\SelfEvaluationReviewController::class,
4375 eleazar 4689
            '\LeadersLinked\Controller\SurveyController' => \LeadersLinked\Controller\SurveyController::class,
4690
            '\LeadersLinked\Controller\SurveyFormController' => \LeadersLinked\Controller\SurveyFormController::class,
5868 eleazar 4691
            '\LeadersLinked\Controller\SurveyReportController' => \LeadersLinked\Controller\SurveyReportController::class,
5287 eleazar 4692
            '\LeadersLinked\Controller\SurveyTestController' => \LeadersLinked\Controller\SurveyTestController::class,
7218 eleazar 4693
            '\LeadersLinked\Controller\OrganizationalClimateController' => \LeadersLinked\Controller\OrganizationalClimateController::class,
4694
            '\LeadersLinked\Controller\OrganizationalClimateFormController' => \LeadersLinked\Controller\OrganizationalClimateFormController::class,
4695
            '\LeadersLinked\Controller\OrganizationalClimateReportController' => \LeadersLinked\Controller\OrganizationalClimateReportController::class,
4696
            '\LeadersLinked\Controller\OrganizationalClimateTestController' => \LeadersLinked\Controller\OrganizationalClimateTestController::class,
982 geraldo 4697
            '\LeadersLinked\Controller\PerformanceEvaluationFormController' => \LeadersLinked\Controller\PerformanceEvaluationFormController::class,
1383 efrain 4698
            '\LeadersLinked\Controller\PerformanceEvaluationEvaluationController' => \LeadersLinked\Controller\PerformanceEvaluationEvaluationController::class,
1 www 4699
            '\LeadersLinked\Controller\MicrolearningController' => \LeadersLinked\Controller\MicrolearningController::class,
66 efrain 4700
            '\LeadersLinked\Controller\MicrolearningQuizController' => \LeadersLinked\Controller\MicrolearningQuizController::class,
4701
            '\LeadersLinked\Controller\MicrolearningQuestionController' => \LeadersLinked\Controller\MicrolearningQuestionController::class,
4702
            '\LeadersLinked\Controller\MicrolearningAnswerController' => \LeadersLinked\Controller\MicrolearningAnswerController::class,
1 www 4703
            '\LeadersLinked\Controller\MicrolearningTopicController' => \LeadersLinked\Controller\MicrolearningTopicController::class,
4704
            '\LeadersLinked\Controller\MicrolearningCapsuleController' => \LeadersLinked\Controller\MicrolearningCapsuleController::class,
4705
            '\LeadersLinked\Controller\MicrolearningSlideController' => \LeadersLinked\Controller\MicrolearningSlideController::class,
4706
            '\LeadersLinked\Controller\MicrolearningStudentsController' => \LeadersLinked\Controller\MicrolearningStudentsController::class,
4707
            '\LeadersLinked\Controller\MicrolearningAccessForStudentsController' => \LeadersLinked\Controller\MicrolearningAccessForStudentsController::class,
4708
            '\LeadersLinked\Controller\MicrolearningReportsController' => \LeadersLinked\Controller\MicrolearningReportsController::class,
4709
            '\LeadersLinked\Controller\MicrolearningExtendUserCompanyController' => \LeadersLinked\Controller\MicrolearningExtendUserCompanyController::class,
4710
            '\LeadersLinked\Controller\MicrolearningExtendUserFunctionController' => \LeadersLinked\Controller\MicrolearningExtendUserFunctionController::class,
4711
            '\LeadersLinked\Controller\MicrolearningExtendUserGroupController' => \LeadersLinked\Controller\MicrolearningExtendUserGroupController::class,
4712
            '\LeadersLinked\Controller\MicrolearningExtendUserInstitutionController' => \LeadersLinked\Controller\MicrolearningExtendUserInstitutionController::class,
4713
            '\LeadersLinked\Controller\MicrolearningExtendUserPartnerController' => \LeadersLinked\Controller\MicrolearningExtendUserPartnerController::class,
4714
            '\LeadersLinked\Controller\MicrolearningExtendUserProgramController' => \LeadersLinked\Controller\MicrolearningExtendUserProgramController::class,
4715
            '\LeadersLinked\Controller\MicrolearningExtendUserSectorController' => \LeadersLinked\Controller\MicrolearningExtendUserSectorController::class,
9335 eleazar 4716
            '\LeadersLinked\Controller\MicrolearningExtendUserSectorController' => \LeadersLinked\Controller\MicrolearningExtendUserSectorController::class,
4717
            '\LeadersLinked\Controller\MyTrainerCategoriesController' => \LeadersLinked\Controller\MyTrainerCategoriesController::class,
9350 eleazar 4718
            '\LeadersLinked\Controller\MyTrainerQuestionController' => \LeadersLinked\Controller\MyTrainerQuestionController::class,
10423 eleazar 4719
            '\LeadersLinked\Controller\MyTrainerAnswerController' => \LeadersLinked\Controller\MyTrainerAnswerController::class,
1 www 4720
            '\LeadersLinked\Controller\StorageController' => \LeadersLinked\Controller\StorageController::class,
2232 nelberth 4721
            '\LeadersLinked\Controller\PlanningObjectivesAndGoalsController' => \LeadersLinked\Controller\PlanningObjectivesAndGoalsController::class,
2228 nelberth 4722
            '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController' => \LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController::class,
2517 nelberth 4723
            '\LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController' => \LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController::class,
4377 nelberth 4724
            '\LeadersLinked\Controller\PlanningObjectivesAndGoalsGoalsController' => \LeadersLinked\Controller\PlanningObjectivesAndGoalsGoalsController::class,
4725
 
4726
            '\LeadersLinked\Controller\HighPerformanceTeamsController' => \LeadersLinked\Controller\HighPerformanceTeamsController::class,
7224 nelberth 4727
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsController::class,
7308 nelberth 4728
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewController::class,
7494 nelberth 4729
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController::class,
9095 nelberth 4730
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewCalendarController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewCalendarController::class,
7811 nelberth 4731
 
9619 nelberth 4732
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController::class,
9764 nelberth 4733
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesController::class,
10143 nelberth 4734
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoController::class,
9921 nelberth 4735
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesViewController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesViewController::class,
7811 nelberth 4736
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController::class,
66 efrain 4737
            '\LeadersLinked\Controller\TestController' => \LeadersLinked\Controller\TestController::class,
1333 efrain 4738
            '\LeadersLinked\Controller\UnknownController' => \LeadersLinked\Controller\UnknownController::class,
1 www 4739
        ]
4740
    ],
4741
    'laminas-cli' => [
4742
        'commands' => [
1089 geraldo 4743
        ]
1 www 4744
    ],
4745
    'service_manager' => [
4746
        'abstract_factories' => [
4747
            \Laminas\Db\Adapter\AdapterAbstractServiceFactory::class
4748
        ],
4749
        'factories' => [
4750
            'RenderingStrategy' => function ($container) {
4751
                $translator = $container->get('MvcTranslator');
4752
                return new \LeadersLinked\View\RenderingStrategy($translator);
4753
            },
4754
            'menuNavigation' => \LeadersLinked\Navigation\MenuNavigation::class,
4755
            'footerNavigation' => \LeadersLinked\Navigation\FooterNavigation::class,
1089 geraldo 4756
        ],
4757
        'aliases' => [// 'leaders-linked-storage' => \LeadersLinked\Service\StorageService::class
1 www 4758
        ]
4759
    ],
4760
    'view_helpers' => [
4761
        'factories' => [
4762
            \LeadersLinked\Helper\CurrentUserHelper::class => \LeadersLinked\Factory\Helper\CurrentUserHelperFactory::class,
4600 nelberth 4763
 
1 www 4764
        ],
4765
        'invokables' => [
4766
            'menuHelper' => \LeadersLinked\Helper\MenuHelper::class,
4767
        ],
4768
        'aliases' => [
4769
            'currentUserHelper' => \LeadersLinked\Helper\CurrentUserHelper::class,
4600 nelberth 4770
 
1 www 4771
        ]
4772
    ],
4773
    'controller_plugins' => [
4774
        'invokables' => [],
4775
        'factories' => [
4776
            \LeadersLinked\Plugin\CurrentUserPlugin::class => \LeadersLinked\Factory\Plugin\CurrentUserPluginFactory::class
4777
        ],
4778
        'aliases' => [
4779
            'currentUserPlugin' => \LeadersLinked\Plugin\CurrentUserPlugin::class
4780
        ]
4781
    ],
4782
    'view_manager' => [
4783
        'display_not_found_reason' => true,
4784
        'display_exceptions' => true,
4785
        'doctype' => 'HTML5',
4786
        'not_found_template' => 'error/404',
4787
        'exception_template' => 'error/index',
4788
        'template_map' => [
4789
            'layout/layout' => __DIR__ . '/../view/layout/layout.phtml',
4790
            'error/404' => __DIR__ . '/../view/error/404.phtml',
4791
            'error/index' => __DIR__ . '/../view/error/index.phtml'
4792
        ],
4793
        'template_path_stack' => [
4794
            __DIR__ . '/../view'
4795
        ],
4796
        'strategies' => [
4797
            'ViewJsonStrategy',
4798
            'RenderingStrategy'
4799
        ]
4800
    ]
4801
];
4802