Proyectos de Subversion LeadersLinked - Backend

Rev

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

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