Proyectos de Subversion LeadersLinked - Backend

Rev

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