Proyectos de Subversion LeadersLinked - Backend

Rev

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