Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 15336 | Rev 15386 | 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
                            ],
15355 efrain 3162
                            'import' => [
3163
                                'type' => Literal::class,
3164
                                'options' => [
3165
                                    'route' => '/import',
3166
                                    'defaults' => [
3167
                                        'controller' => '\LeadersLinked\Controller\PushTemplateController',
3168
                                        'action' => 'import'
3169
                                    ]
3170
                                ]
3171
                            ],
1 www 3172
                        ]
3173
                    ],
3174
                    'skills' => [
3175
                        'type' => Literal::class,
3176
                        'options' => [
3177
                            'route' => '/skills',
3178
                            'defaults' => [
3179
                                'controller' => '\LeadersLinked\Controller\SkillController',
3180
                                'action' => 'index'
3181
                            ]
3182
                        ],
3183
                        'may_terminate' => true,
3184
                        'child_routes' => [
3185
                            'add' => [
3186
                                'type' => Literal::class,
3187
                                'options' => [
3188
                                    'route' => '/add',
3189
                                    'defaults' => [
3190
                                        'controller' => '\LeadersLinked\Controller\SkillController',
3191
                                        'action' => 'add'
3192
                                    ]
3193
                                ]
3194
                            ],
3195
                            'edit' => [
3196
                                'type' => Segment::class,
3197
                                'options' => [
3198
                                    'route' => '/edit/:id',
3199
                                    'constraints' => [
3200
                                        'id' => '[A-Za-z0-9\-]+\=*'
3201
                                    ],
3202
                                    'defaults' => [
3203
                                        'controller' => '\LeadersLinked\Controller\SkillController',
3204
                                        'action' => 'edit'
3205
                                    ]
3206
                                ]
3207
                            ],
3208
                            'delete' => [
3209
                                'type' => Segment::class,
3210
                                'options' => [
3211
                                    'route' => '/delete/:id',
3212
                                    'constraints' => [
3213
                                        'id' => '[A-Za-z0-9\-]+\=*'
3214
                                    ],
3215
                                    'defaults' => [
3216
                                        'controller' => '\LeadersLinked\Controller\SkillController',
3217
                                        'action' => 'delete'
3218
                                    ]
3219
                                ]
3220
                            ]
3221
                        ]
3222
                    ],
1089 geraldo 3223
                ]
1 www 3224
            ],
1089 geraldo 3225
        /*         * * FIN SETTINGS ** */
1333 efrain 3226
 
3227
            'own-professional-network' => [
3228
                'type' => Literal::class,
3229
                'options' => [
3230
                    'route' => '/own-professional-network',
3231
                    'defaults' => [
3232
                        'controller' => '\LeadersLinked\Controller\UnknownController',
3233
                        'action' => 'index'
3234
                    ]
3235
                ],
3236
                'may_terminate' => true,
3237
                'child_routes' => [
3238
                ]
3239
            ],
3240
 
3241
            'organizational-design' => [
3242
                'type' => Literal::class,
3243
                'options' => [
3244
                    'route' => '/organizational-design',
3245
                    'defaults' => [
3246
                        'controller' => '\LeadersLinked\Controller\UnknownController',
3247
                        'action' => 'index'
3248
                    ]
3249
                ],
3250
                'may_terminate' => true,
3251
                'child_routes' => [
3252
                ]
3253
            ],
3254
 
3255
            'planning-objectives-and-goals' => [
3256
                'type' => Literal::class,
3257
                'options' => [
3258
                    'route' => '/planning-objectives-and-goals',
3259
                    'defaults' => [
2235 nelberth 3260
                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsController',
1951 nelberth 3261
                        'action' => 'index'
1333 efrain 3262
                    ]
3263
                ],
3264
                'may_terminate' => true,
3265
                'child_routes' => [
2238 nelberth 3266
                    'objectives' => [
2250 nelberth 3267
                        'type' => Literal::class,
1914 nelberth 3268
                        'options' => [
2248 nelberth 3269
                            'route' => '/objectives',
1914 nelberth 3270
                            'defaults' => [
2228 nelberth 3271
                                'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController',
2238 nelberth 3272
                                'action' => 'index'
1914 nelberth 3273
                            ]
2251 nelberth 3274
                        ],
3275
 
3276
                        'may_terminate' => true,
3277
                        'child_routes' => [
2324 nelberth 3278
 
2251 nelberth 3279
                            'add' => [
3280
                                'type' => Literal::class,
3281
                                'options' => [
3282
                                    'route' => '/add',
3283
                                    'defaults' => [
3284
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController',
3285
                                        'action' => 'add'
3286
                                    ]
3287
                                ]
3288
                            ],
3289
                            'edit' => [
3290
                                'type' => Segment::class,
3291
                                'options' => [
3292
                                    'route' => '/edit/:id',
3293
                                    'constraints' => [
3294
                                        'id' => '[A-Za-z0-9\-]+\=*'
3295
                                    ],
3296
                                    'defaults' => [
3297
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController',
3298
                                        'action' => 'edit'
3299
                                    ]
3300
                                ]
3301
                            ],
3302
                            'delete' => [
3303
                                'type' => Segment::class,
3304
                                'options' => [
3305
                                    'route' => '/delete/:id',
3306
                                    'constraints' => [
3307
                                        'id' => '[A-Za-z0-9\-]+\=*'
3308
                                    ],
3309
                                    'defaults' => [
3310
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController',
3311
                                        'action' => 'delete'
3312
                                    ]
3313
                                ]
2324 nelberth 3314
                            ],
3462 nelberth 3315
                            'report' => [
3316
                                'type' => Segment::class,
3317
                                'options' => [
3318
                                    'route' => '/report/:id',
3319
                                    'constraints' => [
3320
                                        'id' => '[A-Za-z0-9\-]+\=*'
3321
                                    ],
3322
                                    'defaults' => [
3323
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController',
3324
                                        'action' => 'report'
3325
                                    ]
3326
                                ]
3986 nelberth 3327
                            ],
3328
                            'reportall' => [
3329
                                'type' => Literal::class,
3330
                                'options' => [
3331
                                    'route' => '/reportall',
3332
                                    'defaults' => [
3333
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController',
3334
                                        'action' => 'reportall'
3335
                                    ]
3336
                                ]
3462 nelberth 3337
                            ],
4041 nelberth 3338
 
3339
                            'matriz' => [
3340
                                'type' => Literal::class,
3341
                                'options' => [
3342
                                    'route' => '/matriz',
3343
                                    'defaults' => [
3344
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController',
3345
                                        'action' => 'matriz'
3346
                                    ]
3347
                                ]
3348
                            ],
2324 nelberth 3349
                            'goals' => [
2336 nelberth 3350
                                'type' => Segment::class,
2324 nelberth 3351
                                'options' => [
11092 nelberth 3352
                                    'route' => '/:objective_id/goals',
2324 nelberth 3353
                                    'constraints' => [
11092 nelberth 3354
                                        'objective_id' => '[A-Za-z0-9\-]+\=*'
2324 nelberth 3355
                                    ],
3356
                                    'defaults' => [
3357
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsGoalsController',
3358
                                        'action' => 'index'
3359
                                    ]
2369 nelberth 3360
                                ],
2370 nelberth 3361
 
3362
                                'may_terminate' => true,
3363
                                'child_routes' => [
3364
                                    'add' => [
3365
                                        'type' => Literal::class,
3366
                                        'options' => [
3367
                                            'route' => '/add',
3368
                                            'defaults' => [
3369
                                                'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsGoalsController',
3370
                                                'action' => 'add'
3371
                                            ]
2369 nelberth 3372
                                        ]
2370 nelberth 3373
                                    ],
3374
                                    'edit' => [
3375
                                        'type' => Segment::class,
3376
                                        'options' => [
3377
                                            'route' => '/edit/:id',
3378
                                            'constraints' => [
3379
                                                'id' => '[A-Za-z0-9\-]+\=*'
3380
                                            ],
3381
                                            'defaults' => [
3382
                                                'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsGoalsController',
3383
                                                'action' => 'edit'
3384
                                            ]
2369 nelberth 3385
                                        ]
2370 nelberth 3386
                                    ],
3387
                                    'delete' => [
3388
                                        'type' => Segment::class,
3389
                                        'options' => [
3390
                                            'route' => '/delete/:id',
3391
                                            'constraints' => [
3392
                                                'id' => '[A-Za-z0-9\-]+\=*'
3393
                                            ],
3394
                                            'defaults' => [
3395
                                                'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsGoalsController',
3396
                                                'action' => 'delete'
3397
                                            ]
3398
                                        ]
3399
                                    ],
2517 nelberth 3400
                                    'task' => [
3401
                                        'type' => Segment::class,
3402
                                        'options' => [
11092 nelberth 3403
                                            'route' => '/:goal_id/task',
2517 nelberth 3404
                                            'constraints' => [
11092 nelberth 3405
                                                'goal_id' => '[A-Za-z0-9\-]+\=*'
2517 nelberth 3406
                                            ],
3407
                                            'defaults' => [
3408
                                                'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController',
3409
                                                'action' => 'index'
3410
                                            ]
3411
                                        ],
3412
 
3413
                                        'may_terminate' => true,
3414
                                        'child_routes' => [
3415
                                            'add' => [
3416
                                                'type' => Literal::class,
3417
                                                'options' => [
3418
                                                    'route' => '/add',
3419
                                                    'defaults' => [
3420
                                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController',
3421
                                                        'action' => 'add'
3422
                                                    ]
3423
                                                ]
3424
                                            ],
3425
                                            'edit' => [
3426
                                                'type' => Segment::class,
3427
                                                'options' => [
3428
                                                    'route' => '/edit/:id',
3429
                                                    'constraints' => [
3430
                                                        'id' => '[A-Za-z0-9\-]+\=*'
3431
                                                    ],
3432
                                                    'defaults' => [
3433
                                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController',
3434
                                                        'action' => 'edit'
3435
                                                    ]
3436
                                                ]
3437
                                            ],
3438
                                            'delete' => [
3439
                                                'type' => Segment::class,
3440
                                                'options' => [
3441
                                                    'route' => '/delete/:id',
3442
                                                    'constraints' => [
3443
                                                        'id' => '[A-Za-z0-9\-]+\=*'
3444
                                                    ],
3445
                                                    'defaults' => [
3446
                                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController',
3447
                                                        'action' => 'delete'
3448
                                                    ]
3449
                                                ]
3450
                                            ],
2822 nelberth 3451
                                            'view' => [
3452
                                                'type' => Segment::class,
3453
                                                'options' => [
3454
                                                    'route' => '/view/:id',
3455
                                                    'constraints' => [
3456
                                                        'id' => '[A-Za-z0-9\-]+\=*'
3457
                                                    ],
3458
                                                    'defaults' => [
3459
                                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController',
3460
                                                        'action' => 'view'
3461
                                                    ]
3462
                                                ]
3463
                                            ],
2517 nelberth 3464
                                    ]
3465
                                ],
2369 nelberth 3466
                            ]
2370 nelberth 3467
                        ],
1914 nelberth 3468
                        ]
2246 nelberth 3469
                    ]
2238 nelberth 3470
 
1333 efrain 3471
                ]
3472
            ],
3473
 
3474
            'development-and-training' => [
3475
                'type' => Literal::class,
3476
                'options' => [
3477
                    'route' => '/development-and-training',
3478
                    'defaults' => [
3479
                        'controller' => '\LeadersLinked\Controller\UnknownController',
3480
                        'action' => 'index'
3481
                    ]
3482
                ],
3483
                'may_terminate' => true,
3484
                'child_routes' => [
3485
                ]
3486
            ],
1477 efrain 3487
 
1333 efrain 3488
 
1477 efrain 3489
            'recruitment-and-selection' => [
1333 efrain 3490
                'type' => Literal::class,
3491
                'options' => [
1477 efrain 3492
                    'route' => '/recruitment-and-selection',
1333 efrain 3493
                    'defaults' => [
1477 efrain 3494
                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionController',
1333 efrain 3495
                        'action' => 'index'
3496
                    ]
3497
                ],
3498
                'may_terminate' => true,
3499
                'child_routes' => [
1477 efrain 3500
                    'vacancies' => [
1345 eleazar 3501
                        'type' => Literal::class,
3502
                        'options' => [
1477 efrain 3503
                            'route' => '/vacancies',
1345 eleazar 3504
                            'defaults' => [
1385 eleazar 3505
                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionVacancyController',
1345 eleazar 3506
                                'action' => 'index'
3507
                            ]
3508
                        ],
3509
                        'may_terminate' => true,
3510
                        'child_routes' => [
3511
                            'add' => [
3512
                                'type' => Literal::class,
3513
                                'options' => [
3514
                                    'route' => '/add',
3515
                                    'defaults' => [
1385 eleazar 3516
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionVacancyController',
1345 eleazar 3517
                                        'action' => 'add'
3518
                                    ]
3519
                                ]
3520
                            ],
3521
                            'edit' => [
3522
                                'type' => Segment::class,
3523
                                'options' => [
3524
                                    'route' => '/edit/:id',
3525
                                    'constraints' => [
3526
                                        'id' => '[A-Za-z0-9\-]+\=*'
3527
                                    ],
3528
                                    'defaults' => [
1385 eleazar 3529
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionVacancyController',
1345 eleazar 3530
                                        'action' => 'edit'
3531
                                    ]
3532
                                ]
3533
                            ],
3534
                            'delete' => [
3535
                                'type' => Segment::class,
3536
                                'options' => [
3537
                                    'route' => '/delete/:id',
3538
                                    'constraints' => [
3539
                                        'id' => '[A-Za-z0-9\-]+\=*'
3540
                                    ],
3541
                                    'defaults' => [
1385 eleazar 3542
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionVacancyController',
1345 eleazar 3543
                                        'action' => 'delete'
3544
                                    ]
3545
                                ]
3546
                            ]
3547
                        ]
3548
                    ],
1459 eleazar 3549
                    'candidates' => [
3550
                        'type' => Segment::class,
3551
                        'options' => [
1501 eleazar 3552
                            'route' => '/candidates[/:vacancy_uuid]',
1459 eleazar 3553
                            'constraints' => [
1508 eleazar 3554
                                'vacancy_uuid' => '[A-Za-z0-9\-]+\=*'
1459 eleazar 3555
                            ],
3556
                            'defaults' => [
3557
                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
1502 eleazar 3558
                                'action' => 'index',
1503 eleazar 3559
                                'vacancy_uuid' => '',
1459 eleazar 3560
                            ]
3561
                        ],
3562
                        'may_terminate' => true,
3563
                        'child_routes' => [
3564
                            'add' => [
3565
                                'type' => Literal::class,
3566
                                'options' => [
1506 eleazar 3567
                                    'route' => '/add',
1459 eleazar 3568
                                    'defaults' => [
3569
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
3570
                                        'action' => 'add'
3571
                                    ]
3572
                                ]
3573
                            ],
3574
                            'edit' => [
3575
                                'type' => Segment::class,
3576
                                'options' => [
3577
                                    'route' => '/edit/:id',
3578
                                    'constraints' => [
3579
                                        'id' => '[A-Za-z0-9\-]+\=*'
3580
                                    ],
3581
                                    'defaults' => [
3582
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
3583
                                        'action' => 'edit'
3584
                                    ]
3585
                                ]
3586
                            ],
3587
                            'delete' => [
3588
                                'type' => Segment::class,
3589
                                'options' => [
3590
                                    'route' => '/delete/:id',
3591
                                    'constraints' => [
3592
                                        'id' => '[A-Za-z0-9\-]+\=*'
3593
                                    ],
3594
                                    'defaults' => [
3595
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
3596
                                        'action' => 'delete'
3597
                                    ]
3598
                                ]
1630 eleazar 3599
                            ],
3600
                            'email' => [
3601
                                'type' => Literal::class,
3602
                                'options' => [
3603
                                    'route' => '/email',
3604
                                    'defaults' => [
3605
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
3606
                                        'action' => 'email'
3607
                                    ]
3608
                                ]
3609
                            ],
1459 eleazar 3610
                        ]
3611
                    ],
1635 eleazar 3612
                    'user-by-email' => [
3613
                        'type' => Literal::class,
3614
                        'options' => [
3615
                            'route' => '/user-by-email',
3616
                            'defaults' => [
3617
                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
3618
                                'action' => 'email'
3619
                            ]
3620
                        ]
1709 eleazar 3621
                    ],
3622
                    'interview' => [
3623
                        'type' => Segment::class,
3624
                        'options' => [
3625
                            'route' => '/interview',
3626
                            'defaults' => [
3627
                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewController',
3628
                                'action' => 'index',
3629
                            ],
3630
                        ],
3631
                        'may_terminate' => true,
3632
                        'child_routes' => [
3633
                            'form' => [
4351 eleazar 3634
                                'type' => Segment::class,
1709 eleazar 3635
                                'options' => [
4349 eleazar 3636
                                    'route' => '/form[/:vacancy_uuid]',
3637
                                    'constraints' => [
3638
                                        'vacancy_uuid' => '[A-Za-z0-9\-]+\=*'
3639
                                    ],
1709 eleazar 3640
                                    'defaults' => [
1711 eleazar 3641
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
2029 eleazar 3642
                                        'action' => 'index',
4352 eleazar 3643
                                        'vacancy_uuid' => '',
1709 eleazar 3644
                                    ],
3645
                                ],
3646
                                'may_terminate' => true,
3647
                                'child_routes' => [
3648
                                    'add' => [
2059 eleazar 3649
                                        'type' => Segment::class,
1709 eleazar 3650
                                        'options' => [
3563 eleazar 3651
                                            'route' => '/add',
1709 eleazar 3652
                                            'defaults' => [
1899 eleazar 3653
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
1709 eleazar 3654
                                                'action' => 'add'
3655
                                            ],
3656
                                        ],
3657
                                    ],
3658
                                    'edit' => [
2775 eleazar 3659
                                        'type' => Segment::class,
1709 eleazar 3660
                                        'options' => [
2764 eleazar 3661
                                            'route' => '/edit/:interview_uuid',
2765 eleazar 3662
                                            'constraints' => [
3663
                                                'interview_uuid' => '[A-Za-z0-9\-]+\=*'
3664
                                            ],
1709 eleazar 3665
                                            'defaults' => [
1944 eleazar 3666
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
1709 eleazar 3667
                                                'action' => 'edit'
3668
                                            ],
3669
                                        ],
3670
                                    ],
3671
                                    'delete' => [
2775 eleazar 3672
                                        'type' => Segment::class,
1709 eleazar 3673
                                        'options' => [
2764 eleazar 3674
                                            'route' => '/delete/:interview_uuid',
2765 eleazar 3675
                                            'constraints' => [
3676
                                                'interview_uuid' => '[A-Za-z0-9\-]+\=*'
3677
                                            ],
1709 eleazar 3678
                                            'defaults' => [
2766 eleazar 3679
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
1709 eleazar 3680
                                                'action' => 'delete'
3681
                                            ],
3682
                                        ],
3683
                                    ],
8781 eleazar 3684
                                ],
3685
                            ],
3686
                            'file' => [
3687
                                'type' => Segment::class,
3688
                                'options' => [
3689
                                    'route' => '/:interview_uuid/file',
3690
                                    'constraints' => [
3691
                                        'interview_uuid' => '[A-Za-z0-9\-]+\=*'
3692
                                    ],
3693
                                    'defaults' => [
3694
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFileController',
3695
                                        'action' => 'index'
3696
                                    ],
3697
                                ],
3698
                                'may_terminate' => true,
3699
                                'child_routes' => [
3700
                                    'add' => [
3701
                                        'type' => Literal::class,
3702
                                        'options' => [
3703
                                            'route' => '/add',
3704
                                            'defaults' => [
3705
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFileController',
3706
                                                'action' => 'add'
3707
                                            ]
3708
                                        ]
3709
                                    ],
3710
                                    'edit' => [
8779 eleazar 3711
                                        'type' => Segment::class,
3712
                                        'options' => [
8874 eleazar 3713
                                            'route' => '/edit/:id',
8779 eleazar 3714
                                            'constraints' => [
8781 eleazar 3715
                                                'id' => '[A-Za-z0-9\-]+\=*'
8779 eleazar 3716
                                            ],
3717
                                            'defaults' => [
3718
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFileController',
8781 eleazar 3719
                                                'action' => 'edit'
3720
                                            ]
3721
                                        ]
3722
                                    ],
3723
                                    'delete' => [
3724
                                        'type' => Segment::class,
3725
                                        'options' => [
8874 eleazar 3726
                                            'route' => '/delete/:id',
8781 eleazar 3727
                                            'constraints' => [
3728
                                                'id' => '[A-Za-z0-9\-]+\=*'
8779 eleazar 3729
                                            ],
8781 eleazar 3730
                                            'defaults' => [
3731
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFileController',
3732
                                                'action' => 'delete'
8779 eleazar 3733
                                            ]
3734
                                        ]
8874 eleazar 3735
                                    ],
8781 eleazar 3736
                                ]
1709 eleazar 3737
                            ],
3738
                            'report' =>[
3739
                                'type' => Segment::class,
3740
                                'options' => [
2864 eleazar 3741
                                    'route' => '/report/:interview_uuid',
3742
                                    'constraints' => [
3743
                                        'interview_uuid' => '[A-Za-z0-9\-]+\=*'
3744
                                    ],
1709 eleazar 3745
                                    'defaults' => [
2864 eleazar 3746
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
3747
                                        'action' => 'report',
1709 eleazar 3748
                                    ],
3749
                                ],
3750
                            ],
3571 eleazar 3751
                            'vacancy' =>[
3752
                                'type' => Segment::class,
3753
                                'options' => [
3754
                                    'route' => '/vacancy/:vacancy_uuid',
3755
                                    'constraints' => [
3756
                                        'vacancy_uuid' => '[A-Za-z0-9\-]+\=*'
3757
                                    ],
3758
                                    'defaults' => [
3759
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
3760
                                        'action' => 'vacancy',
3761
                                    ],
3762
                                ],
3763
                            ],
4367 eleazar 3764
                            'type' =>[
4365 eleazar 3765
                                'type' => Segment::class,
3766
                                'options' => [
4367 eleazar 3767
                                    'route' => '/type/:candidate_uuid',
4365 eleazar 3768
                                    'constraints' => [
3769
                                        'candidate_uuid' => '[A-Za-z0-9\-]+\=*'
3770
                                    ],
3771
                                    'defaults' => [
3772
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
4367 eleazar 3773
                                        'action' => 'type',
4365 eleazar 3774
                                    ],
3775
                                ],
3776
                            ],
1709 eleazar 3777
                        ],
8779 eleazar 3778
                    ],
1459 eleazar 3779
                ],
1333 efrain 3780
            ],
3781
 
3782
            'induction' => [
3783
                'type' => Literal::class,
3784
                'options' => [
3785
                    'route' => '/induction',
3786
                    'defaults' => [
3787
                        'controller' => '\LeadersLinked\Controller\UnknownController',
3788
                        'action' => 'index'
3789
                    ]
3790
                ],
3791
                'may_terminate' => true,
3792
                'child_routes' => [
3793
                ]
3794
            ],
3795
 
3796
            'organizational-climate' => [
3797
                'type' => Literal::class,
3798
                'options' => [
3799
                    'route' => '/organizational-climate',
3800
                    'defaults' => [
7218 eleazar 3801
                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateController',
1333 efrain 3802
                        'action' => 'index'
3803
                    ]
3804
                ],
3805
                'may_terminate' => true,
3806
                'child_routes' => [
7218 eleazar 3807
                    'add' => [
3808
                        'type' => Segment::class,
3809
                        'options' => [
3810
                            'route' => '/add',
3811
                            'defaults' => [
7295 eleazar 3812
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateController',
7218 eleazar 3813
                                'action' => 'add'
3814
                            ],
3815
                        ],
3816
                    ],
3817
                    'edit' => [
3818
                        'type' => Segment::class,
3819
                        'options' => [
3820
                            'route' => '/edit/:id',
3821
                            'defaults' => [
7295 eleazar 3822
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateController',
7218 eleazar 3823
                                'action' => 'edit'
3824
                            ],
3825
                        ],
3826
                    ],
3827
                    'delete' => [
3828
                        'type' => Segment::class,
3829
                        'options' => [
3830
                            'route' => '/delete/:id',
3831
                            'defaults' => [
7295 eleazar 3832
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateController',
7218 eleazar 3833
                                'action' => 'delete'
3834
                            ],
3835
                        ],
3836
                    ],
3837
                    'segment' => [
3838
                        'type' => Segment::class,
3839
                        'options' => [
3840
                            'route' => '/segment/:id',
8536 efrain 3841
                            'constraints' => [
3842
                                'id' => '[A-Za-z0-9\-]+\=*'
3843
                            ],
7218 eleazar 3844
                            'defaults' => [
7295 eleazar 3845
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateController',
7218 eleazar 3846
                                'action' => 'segment'
3847
                            ],
3848
                        ],
3849
                    ],
3850
                    'form' => [
3851
                        'type' => Segment::class,
3852
                        'options' => [
3853
                            'route' => '/form',
3854
                            'defaults' => [
7295 eleazar 3855
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateFormController',
7218 eleazar 3856
                                'action' => 'index',
3857
                            ],
3858
                        ],
3859
                        'may_terminate' => true,
3860
                        'child_routes' => [
3861
                            'add' => [
3862
                                'type' => Segment::class,
3863
                                'options' => [
3864
                                    'route' => '/add',
3865
                                    'defaults' => [
7295 eleazar 3866
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateFormController',
7218 eleazar 3867
                                        'action' => 'add'
3868
                                    ],
3869
                                ],
3870
                            ],
3871
                            'edit' => [
3872
                                'type' => Segment::class,
3873
                                'options' => [
3874
                                    'route' => '/edit/:id',
3875
                                    'constraints' => [
3876
                                        'id' => '[A-Za-z0-9\-]+\=*'
3877
                                    ],
3878
                                    'defaults' => [
7295 eleazar 3879
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateFormController',
7218 eleazar 3880
                                        'action' => 'edit'
3881
                                    ]
3882
                                ]
3883
                            ],
3884
                            'delete' => [
3885
                                'type' => Segment::class,
3886
                                'options' => [
3887
                                    'route' => '/delete/:id',
3888
                                    'constraints' => [
3889
                                        'id' => '[A-Za-z0-9\-]+\=*'
3890
                                    ],
3891
                                    'defaults' => [
7295 eleazar 3892
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateFormController',
7218 eleazar 3893
                                        'action' => 'delete'
3894
                                    ]
3895
                                ]
3896
                            ]
3897
                        ],
3898
                    ],
3899
                    'test' => [
3900
                        'type' => Segment::class,
3901
                        'options' => [
14187 efrain 3902
                            'route' => '/test[/:organizational_climate_id]',
7218 eleazar 3903
                            'constraints' => [
14187 efrain 3904
                                'organizational_climate_id' => '[A-Za-z0-9\-]+\=*'
7218 eleazar 3905
                            ],
3906
                            'defaults' => [
7295 eleazar 3907
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateTestController',
7218 eleazar 3908
                                'action' => 'index',
14187 efrain 3909
                                'organizational_climate_id' => '',
7218 eleazar 3910
                            ],
3911
                        ],
3912
                        'may_terminate' => true,
3913
                        'child_routes' => [
3914
                            'add' => [
3915
                                'type' => Segment::class,
3916
                                'options' => [
3917
                                    'route' => '/add',
3918
                                    'defaults' => [
7295 eleazar 3919
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateTestController',
7218 eleazar 3920
                                        'action' => 'add',
3921
                                    ],
3922
                                ],
3923
                            ],
3924
                            'report' => [
3925
                                'type' => Segment::class,
3926
                                'options' => [
3927
                                    'route' => '/report/:uuid',
3928
                                    'defaults' => [
7295 eleazar 3929
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateTestController',
7218 eleazar 3930
                                        'action' => 'report',
3931
                                    ],
3932
                                ],
3933
                            ],
3934
                            'delete' => [
3935
                                'type' => Segment::class,
3936
                                'options' => [
3937
                                    'route' => '/delete/:id',
3938
                                    'defaults' => [
7295 eleazar 3939
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateTestController',
7218 eleazar 3940
                                        'action' => 'delete'
3941
                                    ]
3942
                                ]
3943
                            ]
3944
                        ],
3945
                    ],
3946
                    'report' => [
3947
                        'type' => Segment::class,
3948
                        'options' => [
14187 efrain 3949
                            'route' => '/report[/:organizational_climate_id]',
7218 eleazar 3950
                            'constraints' => [
14187 efrain 3951
                                'organizational_climate_id' => '[A-Za-z0-9\-]+\=*'
7218 eleazar 3952
                            ],
3953
                            'defaults' => [
7295 eleazar 3954
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateReportController',
7218 eleazar 3955
                                'action' => 'index',
14187 efrain 3956
                                'organizational_climate_id' => '',
7218 eleazar 3957
                            ],
3958
                        ],
3959
                        'may_terminate' => true,
3960
                        'child_routes' => [
3961
                            'all' => [
3962
                                'type' => Segment::class,
3963
                                'options' => [
3964
                                    'route' => '/all',
3965
                                    'defaults' => [
7295 eleazar 3966
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateReportController',
7218 eleazar 3967
                                        'action' => 'all',
3968
                                    ]
3969
                                ]
3970
                            ],
3971
                            'overview' => [
3972
                                'type' => Segment::class,
3973
                                'options' => [
3974
                                    'route' => '/overview',
3975
                                    'defaults' => [
7295 eleazar 3976
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateReportController',
7218 eleazar 3977
                                        'action' => 'overview',
3978
                                    ]
3979
                                ]
3980
                            ],
15149 efrain 3981
                            'excel' => [
7218 eleazar 3982
                                'type' => Segment::class,
3983
                                'options' => [
15149 efrain 3984
                                    'route' => '/excel',
7218 eleazar 3985
                                    'defaults' => [
7295 eleazar 3986
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateReportController',
15149 efrain 3987
                                        'action' => 'excel',
7218 eleazar 3988
                                    ]
3989
                                ]
3990
                            ],
3991
                        ],
3992
                    ],
3993
                ],
1333 efrain 3994
            ],
3995
 
3996
            'culture' => [
3997
                'type' => Literal::class,
3998
                'options' => [
3999
                    'route' => '/culture',
4000
                    'defaults' => [
4001
                        'controller' => '\LeadersLinked\Controller\UnknownController',
4002
                        'action' => 'index'
4003
                    ]
4004
                ],
4005
                'may_terminate' => true,
4006
                'child_routes' => [
4007
                ]
4008
            ],
13524 nelberth 4009
            'inmail' => [
13553 nelberth 4010
                'type' => Literal::class,
1333 efrain 4011
                'options' => [
13553 nelberth 4012
                    'route' => '/inmail',
4013
 
1333 efrain 4014
                    'defaults' => [
13528 nelberth 4015
                        'controller' => '\LeadersLinked\Controller\InMailController',
13170 nelberth 4016
                        'action' => 'index'
1333 efrain 4017
                    ]
4018
                ],
4019
                'may_terminate' => true,
4020
                'child_routes' => [
13760 nelberth 4021
                    'sendall' => [
4022
                        'type' => Literal::class,
4023
                        'options' => [
4024
                            'route' => '/sendall',
4025
                            'defaults' => [
13761 nelberth 4026
                                'controller' => '\LeadersLinked\Controller\InMailController',
13760 nelberth 4027
                                'action' => 'sendAll'
4028
                            ]
4029
                        ]
4030
                    ],
13524 nelberth 4031
                    'search-people' => [
4032
                        'type' => Literal::class,
13013 nelberth 4033
                        'options' => [
13524 nelberth 4034
                            'route' => '/search-people',
13013 nelberth 4035
                            'defaults' => [
13528 nelberth 4036
                                'controller' => '\LeadersLinked\Controller\InMailController',
13524 nelberth 4037
                                'action' => 'searchPeople'
13028 nelberth 4038
                            ]
13524 nelberth 4039
                        ]
4040
                    ],
13553 nelberth 4041
                    'view' => [
4042
                        'type' => Segment::class,
13524 nelberth 4043
                        'options' => [
13553 nelberth 4044
                            'route' => '/view[/:id]',
4045
                            'constraints' => [
4046
                                'id' => '[A-Za-z0-9\-]+\=*',
4047
                            ],
13524 nelberth 4048
                            'defaults' => [
13528 nelberth 4049
                                'controller' => '\LeadersLinked\Controller\InMailController',
13553 nelberth 4050
                                'action' => 'view'
13524 nelberth 4051
                            ]
13028 nelberth 4052
                        ],
4053
                        'may_terminate' => true,
4054
                        'child_routes' => [
13553 nelberth 4055
                            'message' => [
4056
                                'type' => Literal::class,
13028 nelberth 4057
                                'options' => [
13553 nelberth 4058
                                    'route' => '/message',
13028 nelberth 4059
                                    'defaults' => [
13528 nelberth 4060
                                        'controller' => '\LeadersLinked\Controller\InMailController',
13553 nelberth 4061
                                        'action' => 'message'
13028 nelberth 4062
                                    ]
13553 nelberth 4063
                                ],
4064
                                'may_terminate' => true,
4065
                                'child_routes' => [
4066
                                    'send' => [
4067
                                        'type' => Segment::class,
4068
                                        'options' => [
4069
                                            'route' => '/send[/encoding/:encoding]',
4070
                                            'constraints' => [
4071
                                                'encoding' => 'base64'
4072
                                            ],
4073
                                            'defaults' => [
4074
                                                'controller' => '\LeadersLinked\Controller\InMailController',
4075
                                                'action' => 'sendMessage'
4076
                                            ]
4077
                                        ]
4078
                                    ],
4079
                                ],
13013 nelberth 4080
                            ],
13553 nelberth 4081
                        ]
13013 nelberth 4082
                    ],
13778 nelberth 4083
                    'company' => [
4084
                        'type' => Segment::class,
4085
                        'options' => [
13798 nelberth 4086
                            'route' => '/company[/id/:id][/type/:type]',
13778 nelberth 4087
                            'constraints' => [
4088
                                'id' => '[A-Za-z0-9\-]+\=*',
13798 nelberth 4089
                                'type'=>'company',
13778 nelberth 4090
                            ],
4091
                            'defaults' => [
4092
                                'controller' => '\LeadersLinked\Controller\InMailController',
4093
                                'action' => 'view'
4094
                            ]
4095
                        ],
4096
                        'may_terminate' => true,
4097
                        'child_routes' => [
4098
                            'message' => [
4099
                                'type' => Literal::class,
4100
                                'options' => [
4101
                                    'route' => '/message',
4102
                                    'defaults' => [
4103
                                        'controller' => '\LeadersLinked\Controller\InMailController',
4104
                                        'action' => 'message'
4105
                                    ]
4106
                                ],
4107
                                'may_terminate' => true,
4108
                                'child_routes' => [
4109
                                    'send' => [
4110
                                        'type' => Segment::class,
4111
                                        'options' => [
4112
                                            'route' => '/send[/encoding/:encoding]',
4113
                                            'constraints' => [
4114
                                                'encoding' => 'base64'
4115
                                            ],
4116
                                            'defaults' => [
4117
                                                'controller' => '\LeadersLinked\Controller\InMailController',
4118
                                                'action' => 'sendMessage'
4119
                                            ]
4120
                                        ]
4121
                                    ],
4122
                                ],
4123
                            ],
4124
                        ]
4125
                    ],
13553 nelberth 4126
 
13524 nelberth 4127
                ],
4128
            ],
4129
 
4130
 
4131
            'communication' => [
4132
                'type' => Literal::class,
4133
                'options' => [
4134
                    'route' => '/communication',
4135
                    'defaults' => [
4136
                        'controller' => '\LeadersLinked\Controller\CommunicationController',
4137
                        'action' => 'index'
4138
                    ]
4139
                ],
4140
                'may_terminate' => true,
4141
                'child_routes' => [
13672 nelberth 4142
                    'inbox' => [
13652 nelberth 4143
                        'type' => Literal::class,
4144
                        'options' => [
13672 nelberth 4145
                            'route' => '/inbox',
13652 nelberth 4146
 
4147
                            'defaults' => [
13672 nelberth 4148
                                'controller' => '\LeadersLinked\Controller\CommunicationInboxController',
13652 nelberth 4149
                                'action' => 'index'
4150
                            ]
4151
                        ],
4152
                        'may_terminate' => true,
4153
                        'child_routes' => [
13732 nelberth 4154
                            'sendall' => [
4155
                                'type' => Literal::class,
4156
                                'options' => [
4157
                                    'route' => '/sendall',
4158
                                    'defaults' => [
4159
                                        'controller' => '\LeadersLinked\Controller\CommunicationInboxController',
4160
                                        'action' => 'sendAll'
4161
                                    ]
4162
                                ]
4163
                            ],
13652 nelberth 4164
                            'search-people' => [
4165
                                'type' => Literal::class,
4166
                                'options' => [
4167
                                    'route' => '/search-people',
4168
                                    'defaults' => [
13672 nelberth 4169
                                        'controller' => '\LeadersLinked\Controller\CommunicationInboxController',
13652 nelberth 4170
                                        'action' => 'searchPeople'
4171
                                    ]
4172
                                ]
4173
                            ],
4174
                            'view' => [
4175
                                'type' => Segment::class,
4176
                                'options' => [
4177
                                    'route' => '/view[/:id]',
4178
                                    'constraints' => [
4179
                                        'id' => '[A-Za-z0-9\-]+\=*',
4180
                                    ],
4181
                                    'defaults' => [
13672 nelberth 4182
                                        'controller' => '\LeadersLinked\Controller\CommunicationInboxController',
13652 nelberth 4183
                                        'action' => 'view'
4184
                                    ]
4185
                                ],
4186
                                'may_terminate' => true,
4187
                                'child_routes' => [
4188
                                    'message' => [
4189
                                        'type' => Literal::class,
4190
                                        'options' => [
4191
                                            'route' => '/message',
4192
                                            'defaults' => [
13672 nelberth 4193
                                                'controller' => '\LeadersLinked\Controller\CommunicationInboxController',
13652 nelberth 4194
                                                'action' => 'message'
4195
                                            ]
4196
                                        ],
4197
                                        'may_terminate' => true,
4198
                                        'child_routes' => [
4199
                                            'send' => [
4200
                                                'type' => Segment::class,
4201
                                                'options' => [
4202
                                                    'route' => '/send[/encoding/:encoding]',
4203
                                                    'constraints' => [
4204
                                                        'encoding' => 'base64'
4205
                                                    ],
4206
                                                    'defaults' => [
13672 nelberth 4207
                                                        'controller' => '\LeadersLinked\Controller\CommunicationInboxController',
13652 nelberth 4208
                                                        'action' => 'sendMessage'
4209
                                                    ]
4210
                                                ]
4211
                                            ],
4212
                                        ],
4213
                                    ],
4214
                                ]
4215
                            ],
4216
 
4217
                        ],
4218
                    ],
13028 nelberth 4219
 
1333 efrain 4220
                ]
4221
            ],
4222
 
4223
            'career-development' => [
4224
                'type' => Literal::class,
4225
                'options' => [
4226
                    'route' => '/career-development',
4227
                    'defaults' => [
4228
                        'controller' => '\LeadersLinked\Controller\UnknownController',
4229
                        'action' => 'index'
4230
                    ]
4231
                ],
4232
                'may_terminate' => true,
4233
                'child_routes' => [
4234
                ]
4235
            ],
4236
 
4386 eleazar 4237
            'survey' => [
1333 efrain 4238
                'type' => Literal::class,
4239
                'options' => [
4397 eleazar 4240
                    'route' => '/survey',
1333 efrain 4241
                    'defaults' => [
4375 eleazar 4242
                        'controller' => '\LeadersLinked\Controller\SurveyController',
1333 efrain 4243
                        'action' => 'index'
4244
                    ]
4245
                ],
4246
                'may_terminate' => true,
4247
                'child_routes' => [
4579 eleazar 4248
                    'add' => [
4249
                        'type' => Segment::class,
4250
                        'options' => [
4251
                            'route' => '/add',
4252
                            'defaults' => [
4253
                                'controller' => '\LeadersLinked\Controller\SurveyController',
4254
                                'action' => 'add'
4255
                            ],
4256
                        ],
4257
                    ],
4258
                    'edit' => [
4259
                        'type' => Segment::class,
4260
                        'options' => [
4261
                            'route' => '/edit/:id',
4262
                            'defaults' => [
4263
                                'controller' => '\LeadersLinked\Controller\SurveyController',
4264
                                'action' => 'edit'
4265
                            ],
4266
                        ],
4267
                    ],
4268
                    'delete' => [
4269
                        'type' => Segment::class,
4270
                        'options' => [
4271
                            'route' => '/delete/:id',
4272
                            'defaults' => [
4273
                                'controller' => '\LeadersLinked\Controller\SurveyController',
4274
                                'action' => 'delete'
4275
                            ],
4276
                        ],
4277
                    ],
4278
                    'segment' => [
4279
                        'type' => Segment::class,
4280
                        'options' => [
4281
                            'route' => '/segment/:id',
4282
                            'defaults' => [
4283
                                'controller' => '\LeadersLinked\Controller\SurveyController',
4284
                                'action' => 'segment'
4285
                            ],
4286
                        ],
4287
                    ],
4374 eleazar 4288
                    'form' => [
4289
                        'type' => Segment::class,
4290
                        'options' => [
4291
                            'route' => '/form',
4292
                            'defaults' => [
4375 eleazar 4293
                                'controller' => '\LeadersLinked\Controller\SurveyFormController',
4374 eleazar 4294
                                'action' => 'index',
4295
                            ],
4296
                        ],
4297
                        'may_terminate' => true,
4298
                        'child_routes' => [
4299
                            'add' => [
4300
                                'type' => Segment::class,
4301
                                'options' => [
4302
                                    'route' => '/add',
4303
                                    'defaults' => [
4375 eleazar 4304
                                        'controller' => '\LeadersLinked\Controller\SurveyFormController',
4374 eleazar 4305
                                        'action' => 'add'
4306
                                    ],
4307
                                ],
4308
                            ],
4309
                            'edit' => [
4310
                                'type' => Segment::class,
4311
                                'options' => [
4312
                                    'route' => '/edit/:id',
4313
                                    'constraints' => [
4314
                                        'id' => '[A-Za-z0-9\-]+\=*'
4315
                                    ],
4316
                                    'defaults' => [
4375 eleazar 4317
                                        'controller' => '\LeadersLinked\Controller\SurveyFormController',
4374 eleazar 4318
                                        'action' => 'edit'
4319
                                    ]
4320
                                ]
4321
                            ],
4322
                            'delete' => [
4323
                                'type' => Segment::class,
4324
                                'options' => [
4325
                                    'route' => '/delete/:id',
4326
                                    'constraints' => [
4327
                                        'id' => '[A-Za-z0-9\-]+\=*'
4328
                                    ],
4329
                                    'defaults' => [
4375 eleazar 4330
                                        'controller' => '\LeadersLinked\Controller\SurveyFormController',
4374 eleazar 4331
                                        'action' => 'delete'
4332
                                    ]
4333
                                ]
4334
                            ]
4335
                        ],
4336
                    ],
5287 eleazar 4337
                    'test' => [
4338
                        'type' => Segment::class,
4339
                        'options' => [
5884 eleazar 4340
                            'route' => '/test[/:survey_id]',
4341
                            'constraints' => [
4342
                                'survey_id' => '[A-Za-z0-9\-]+\=*'
4343
                            ],
5287 eleazar 4344
                            'defaults' => [
4345
                                'controller' => '\LeadersLinked\Controller\SurveyTestController',
4346
                                'action' => 'index',
5884 eleazar 4347
                                'survey_id' => '',
5287 eleazar 4348
                            ],
4349
                        ],
4350
                        'may_terminate' => true,
4351
                        'child_routes' => [
4352
                            'add' => [
4353
                                'type' => Segment::class,
4354
                                'options' => [
6036 eleazar 4355
                                    'route' => '/add',
5287 eleazar 4356
                                    'defaults' => [
4357
                                        'controller' => '\LeadersLinked\Controller\SurveyTestController',
5732 eleazar 4358
                                        'action' => 'add',
5287 eleazar 4359
                                    ],
4360
                                ],
4361
                            ],
6662 eleazar 4362
                            'report' => [
4363
                                'type' => Segment::class,
4364
                                'options' => [
6882 eleazar 4365
                                    'route' => '/report/:uuid',
6662 eleazar 4366
                                    'defaults' => [
4367
                                        'controller' => '\LeadersLinked\Controller\SurveyTestController',
4368
                                        'action' => 'report',
4369
                                    ],
4370
                                ],
4371
                            ],
5287 eleazar 4372
                            'delete' => [
4373
                                'type' => Segment::class,
4374
                                'options' => [
6882 eleazar 4375
                                    'route' => '/delete/:id',
5287 eleazar 4376
                                    'defaults' => [
4377
                                        'controller' => '\LeadersLinked\Controller\SurveyTestController',
4378
                                        'action' => 'delete'
4379
                                    ]
4380
                                ]
4381
                            ]
4382
                        ],
4383
                    ],
5823 eleazar 4384
                    'report' => [
4385
                        'type' => Segment::class,
4386
                        'options' => [
5911 eleazar 4387
                            'route' => '/report[/:survey_id]',
4388
                            'constraints' => [
4389
                                'survey_id' => '[A-Za-z0-9\-]+\=*'
4390
                            ],
5823 eleazar 4391
                            'defaults' => [
4392
                                'controller' => '\LeadersLinked\Controller\SurveyReportController',
4393
                                'action' => 'index',
5911 eleazar 4394
                                'survey_id' => '',
5823 eleazar 4395
                            ],
4396
                        ],
4397
                        'may_terminate' => true,
4398
                        'child_routes' => [
4399
                            'all' => [
4400
                                'type' => Segment::class,
4401
                                'options' => [
5868 eleazar 4402
                                    'route' => '/all',
5823 eleazar 4403
                                    'defaults' => [
4404
                                        'controller' => '\LeadersLinked\Controller\SurveyReportController',
5868 eleazar 4405
                                        'action' => 'all',
5823 eleazar 4406
                                    ]
4407
                                ]
4408
                            ],
6496 eleazar 4409
                            'overview' => [
4410
                                'type' => Segment::class,
4411
                                'options' => [
4412
                                    'route' => '/overview',
4413
                                    'defaults' => [
4414
                                        'controller' => '\LeadersLinked\Controller\SurveyReportController',
4415
                                        'action' => 'overview',
4416
                                    ]
4417
                                ]
4418
                            ],
15149 efrain 4419
                            'excel' => [
7024 eleazar 4420
                                'type' => Segment::class,
4421
                                'options' => [
15149 efrain 4422
                                    'route' => '/excel',
7024 eleazar 4423
                                    'defaults' => [
4424
                                        'controller' => '\LeadersLinked\Controller\SurveyReportController',
15149 efrain 4425
                                        'action' => 'excel',
7024 eleazar 4426
                                    ]
4427
                                ]
4428
                            ],
5823 eleazar 4429
                        ],
4430
                    ],
1333 efrain 4431
                ]
4432
            ],
4433
 
4434
            'building-my-future' => [
4435
                'type' => Literal::class,
4436
                'options' => [
4437
                    'route' => '/building-my-future',
4438
                    'defaults' => [
4439
                        'controller' => '\LeadersLinked\Controller\UnknownController',
4440
                        'action' => 'index'
4441
                    ]
4442
                ],
4443
                'may_terminate' => true,
4444
                'child_routes' => [
4445
                ]
4446
            ],
11431 nelberth 4447
 
4448
            'csrf' => [
4449
                'type' => Literal::class,
4450
                'options' => [
4451
                    'route' => '/csrf',
4452
                    'defaults' => [
14692 efrain 4453
                        'controller' => '\LeadersLinked\Controller\DashboardController',
11431 nelberth 4454
                        'action' => 'csrf'
4455
                    ]
4456
                ]
4457
            ],
11340 nelberth 4458
            'chat' => [
4459
                'type' => Literal::class,
4460
                'options' => [
4461
                    'route' => '/chat',
4462
                    'defaults' => [
4463
                        'controller' => '\LeadersLinked\Controller\ChatController',
4464
                        'action' => 'index'
4465
                    ]
4466
                ],
4467
                'may_terminate' => true,
4468
                'child_routes' => [
4469
                    // Inicio de los Routes del Chat //
7184 nelberth 4470
 
11340 nelberth 4471
                    'heart-beat' => [
4472
                        'type' => Literal::class,
4473
                        'options' => [
4474
                            'route' => '/heart-beat',
4475
                            'defaults' => [
4476
                                'controller' => '\LeadersLinked\Controller\ChatController',
4477
                                'action' => 'heartBeat',
4478
                            ],
4479
                        ],
4480
                    ],
4481
                    'create-group' => [
4482
                        'type' => Literal::class,
4483
                        'options' => [
4484
                            'route' => '/create-group',
4485
                            'defaults' => [
4486
                                'controller' => '\LeadersLinked\Controller\ChatController',
4487
                                'action' => 'createGroup',
4488
                            ],
4489
                        ],
4490
                    ],
4491
                    'add-user-to-group' => [
4492
                        'type' => Segment::class,
4493
                        'options' => [
4494
                            'route' => '/add-user-to-group/:group_id',
4495
                            'constraints' => [
4496
                                'group_id' => '[A-Za-z0-9\-]+\=*',
4497
                            ],
4498
                            'defaults' => [
4499
                                'controller' => '\LeadersLinked\Controller\ChatController',
4500
                                'action' => 'addUserToGroup',
4501
                            ],
4502
                        ],
4503
                    ],
4504
                    'mark-seen' => [
4505
                        'type' => Segment::class,
4506
                        'options' => [
4507
                            'route' => '/mark-seen/:id',
4508
                            'constraints' => [
4509
                                'id' => '[A-Za-z0-9\-]+\=*',
4510
                            ],
4511
                            'defaults' => [
4512
                                'controller' => '\LeadersLinked\Controller\ChatController',
4513
                                'action' => 'markSeen',
4514
                            ],
4515
                        ],
4516
                    ],
4517
                    'mark-received' => [
4518
                        'type' => Segment::class,
4519
                        'options' => [
4520
                            'route' => '/mark-received/:id',
4521
                            'constraints' => [
4522
                                'id' => '[A-Za-z0-9\-]+\=*',
4523
                            ],
4524
                            'defaults' => [
4525
                                'controller' => '\LeadersLinked\Controller\ChatController',
4526
                                'action' => 'markReceived',
4527
                            ],
4528
                        ],
4529
                    ],
4530
                    'remove-user-from-group' => [
4531
                        'type' => Segment::class,
4532
                        'options' => [
4533
                            'route' => '/remove-user-from-group/:group_id/:user_id',
4534
                            'constraints' => [
4535
                                'group_id' => '[A-Za-z0-9\-]+\=*',
4536
                                'user_id' => '[A-Za-z0-9\-]+\=*',
4537
                            ],
4538
                            'defaults' => [
4539
                                'controller' => '\LeadersLinked\Controller\ChatController',
4540
                                'action' => 'removeUserFromGroup',
4541
                            ],
4542
                        ],
4543
                    ],
4544
                    'get-all-messages' => [
4545
                        'type' => Segment::class,
4546
                        'options' => [
4547
                            'route' => '/get-all-messages/:id',
4548
                            'constraints' => [
4549
                                'id' => '[A-Za-z0-9\-]+\=*',
4550
                            ],
4551
                            'defaults' => [
4552
                                'controller' => '\LeadersLinked\Controller\ChatController',
4553
                                'action' => 'getAllMessages',
4554
                            ],
4555
                        ],
4556
                    ],
4557
                    'send' => [
4558
                        'type' => Segment::class,
4559
                        'options' => [
4560
                            'route' => '/send/:id',
4561
                            'constraints' => [
4562
                                'id' => '[A-Za-z0-9\-]+\=*',
4563
                            ],
4564
                            'defaults' => [
4565
                                'controller' => '\LeadersLinked\Controller\ChatController',
4566
                                'action' => 'send',
4567
                            ],
4568
                        ],
4569
                    ],
4570
                    'get-contacts-availables-for-group' => [
4571
                        'type' => Segment::class,
4572
                        'options' => [
4573
                            'route' => '/get-contacts-availables-for-group/:group_id',
4574
                            'constraints' => [
4575
                                'group_id' => '[A-Za-z0-9\-]+\=*',
4576
                            ],
4577
                            'defaults' => [
4578
                                'controller' => '\LeadersLinked\Controller\ChatController',
4579
                                'action' => 'contactAvailableGroupList',
4580
                            ],
4581
                        ],
4582
                    ],
4583
                    'get-contact-group-list' => [
4584
                        'type' => Segment::class,
4585
                        'options' => [
4586
                            'route' => '/get-contact-group-list/:group_id',
4587
                            'constraints' => [
4588
                                'group_id' => '[A-Za-z0-9\-]+\=*',
4589
                            ],
4590
                            'defaults' => [
4591
                                'controller' => '\LeadersLinked\Controller\ChatController',
4592
                                'action' => 'contactGroupList',
4593
                            ],
4594
                        ],
4595
                    ],
4596
                    'leave-group' => [
4597
                        'type' => Segment::class,
4598
                        'options' => [
4599
                            'route' => '/leave-group/:group_id',
4600
                            'constraints' => [
4601
                                'group_id' => '[A-Za-z0-9\-]+\=*',
4602
                            ],
4603
                            'defaults' => [
4604
                                'controller' => '\LeadersLinked\Controller\ChatController',
4605
                                'action' => 'leaveGroup',
4606
                            ],
4607
                        ],
4608
                    ],
4609
                    'delete-group' => [
4610
                        'type' => Segment::class,
4611
                        'options' => [
4612
                            'route' => '/delete-group/:group_id',
4613
                            'constraints' => [
4614
                                'group_id' => '[A-Za-z0-9\-]+\=*',
4615
                            ],
4616
                            'defaults' => [
4617
                                'controller' => '\LeadersLinked\Controller\ChatController',
4618
                                'action' => 'deleteGroup',
4619
                            ],
4620
                        ],
4621
                    ],
14692 efrain 4622
                    'open' => [
4623
                        'type' => Segment::class,
4624
                        'options' => [
4625
                            'route' => '/open/:id',
4626
                            'constraints' => [
4627
                                'id' => '[A-Za-z0-9\-]+\=*',
4628
                            ],
4629
                            'defaults' => [
4630
                                'controller' => '\LeadersLinked\Controller\ChatController',
4631
                                'action' => 'open',
4632
                            ],
4633
                        ],
4634
                    ],
11340 nelberth 4635
                    'close' => [
4636
                        'type' => Segment::class,
4637
                        'options' => [
4638
                            'route' => '/close/:id',
4639
                            'constraints' => [
4640
                                'id' => '[A-Za-z0-9\-]+\=*',
4641
                            ],
4642
                            'defaults' => [
4643
                                'controller' => '\LeadersLinked\Controller\ChatController',
4644
                                'action' => 'close',
4645
                            ],
4646
                        ],
4647
                    ],
4648
                    'clear' => [
4649
                        'type' => Segment::class,
4650
                        'options' => [
4651
                            'route' => '/clear/:id',
4652
                            'constraints' => [
4653
                                'id' => '[A-Za-z0-9\-]+\=*',
4654
                            ],
4655
                            'defaults' => [
4656
                                'controller' => '\LeadersLinked\Controller\ChatController',
4657
                                'action' => 'clear',
4658
                            ],
4659
                        ],
4660
                    ],
4661
                    'upload' => [
4662
                        'type' => Segment::class,
4663
                        'options' => [
4664
                            'route' => '/upload/:id',
4665
                            'constraints' => [
4666
                                'id' => '[A-Za-z0-9\-]+\=*',
4667
                            ],
4668
                            'defaults' => [
4669
                                'controller' => '\LeadersLinked\Controller\ChatController',
4670
                                'action' => 'upload',
4671
                            ],
4672
                        ],
4673
                    ],
4674
                ],
4675
            ],
7224 nelberth 4676
 
1333 efrain 4677
            'high-performance-teams' => [
4678
                'type' => Literal::class,
4679
                'options' => [
4591 nelberth 4680
                    'route' => '/high-performance-teams',
4588 nelberth 4681
                    'defaults' => [
4376 nelberth 4682
                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsController',
1333 efrain 4683
                        'action' => 'index'
4684
                    ]
4685
                ],
4686
                'may_terminate' => true,
4687
                'child_routes' => [
7240 nelberth 4688
                    'groups' => [
4388 nelberth 4689
                        'type' => Literal::class,
4690
                        'options' => [
7224 nelberth 4691
                            'route' => '/groups',
4388 nelberth 4692
                            'defaults' => [
7224 nelberth 4693
                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsController',
4388 nelberth 4694
                                'action' => 'index'
4695
                            ]
4411 nelberth 4696
                        ],'may_terminate' => true,
4697
                        'child_routes' => [
4698
 
4699
                            'add' => [
4700
                                'type' => Literal::class,
4701
                                'options' => [
4702
                                    'route' => '/add',
4703
                                    'defaults' => [
7224 nelberth 4704
                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsController',
4411 nelberth 4705
                                        'action' => 'add'
4706
                                    ]
4707
                                ]
4708
                            ],
4709
                            'edit' => [
4710
                                'type' => Segment::class,
4711
                                'options' => [
11082 nelberth 4712
                                    'route' => '/edit/:group_id',
4411 nelberth 4713
                                    'constraints' => [
11082 nelberth 4714
                                        'group_id' => '[A-Za-z0-9\-]+\=*'
4411 nelberth 4715
                                    ],
4716
                                    'defaults' => [
7224 nelberth 4717
                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsController',
4411 nelberth 4718
                                        'action' => 'edit'
4719
                                    ]
4720
                                ]
4721
                            ],
4722
                            'delete' => [
4723
                                'type' => Segment::class,
4724
                                'options' => [
11082 nelberth 4725
                                    'route' => '/delete/:group_id',
4411 nelberth 4726
                                    'constraints' => [
11082 nelberth 4727
                                        'group_id' => '[A-Za-z0-9\-]+\=*'
4411 nelberth 4728
                                    ],
4729
                                    'defaults' => [
7224 nelberth 4730
                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsController',
4411 nelberth 4731
                                        'action' => 'delete'
4732
                                    ]
4733
                                ]
7261 nelberth 4734
                            ],'view' => [
4509 nelberth 4735
                                'type' => Segment::class,
4736
                                'options' => [
11082 nelberth 4737
                                    'route' => '/view/:group_id',
4509 nelberth 4738
                                    'constraints' => [
11082 nelberth 4739
                                        'group_id' => '[A-Za-z0-9\-]+\=*',
4509 nelberth 4740
                                    ],
4741
                                    'defaults' => [
7308 nelberth 4742
                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewController',
4571 nelberth 4743
                                        'action' => 'index'
4509 nelberth 4744
                                    ]
7483 nelberth 4745
                                ],
4746
                                    'may_terminate' => true,
4747
                                    'child_routes' => [
12408 nelberth 4748
                                        'objectives' => [
11902 nelberth 4749
                                            'type' => Literal::class,
4750
                                            'options' => [
12408 nelberth 4751
                                                'route' => '/objectives',
4752
                                                'defaults' => [
12433 nelberth 4753
                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController',
12408 nelberth 4754
                                                    'action' => 'index'
4755
                                                ]
4756
                                            ],
4757
 
4758
                                            'may_terminate' => true,
4759
                                            'child_routes' => [
4760
 
4761
                                                'add' => [
4762
                                                    'type' => Literal::class,
4763
                                                    'options' => [
4764
                                                        'route' => '/add',
4765
                                                        'defaults' => [
12675 nelberth 4766
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController',
12408 nelberth 4767
                                                            'action' => 'add'
4768
                                                        ]
4769
                                                    ]
4770
                                                ],
4771
                                                'edit' => [
4772
                                                    'type' => Segment::class,
4773
                                                    'options' => [
4774
                                                        'route' => '/edit/:id',
4775
                                                        'constraints' => [
4776
                                                            'id' => '[A-Za-z0-9\-]+\=*'
4777
                                                        ],
4778
                                                        'defaults' => [
12675 nelberth 4779
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController',
12408 nelberth 4780
                                                            'action' => 'edit'
4781
                                                        ]
4782
                                                    ]
4783
                                                ],
4784
                                                'delete' => [
4785
                                                    'type' => Segment::class,
4786
                                                    'options' => [
4787
                                                        'route' => '/delete/:id',
4788
                                                        'constraints' => [
4789
                                                            'id' => '[A-Za-z0-9\-]+\=*'
4790
                                                        ],
4791
                                                        'defaults' => [
12675 nelberth 4792
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController',
12408 nelberth 4793
                                                            'action' => 'delete'
4794
                                                        ]
4795
                                                    ]
4796
                                                ],
4797
                                                'report' => [
4798
                                                    'type' => Segment::class,
4799
                                                    'options' => [
4800
                                                        'route' => '/report/:id',
4801
                                                        'constraints' => [
4802
                                                            'id' => '[A-Za-z0-9\-]+\=*'
4803
                                                        ],
4804
                                                        'defaults' => [
12675 nelberth 4805
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController',
12408 nelberth 4806
                                                            'action' => 'report'
4807
                                                        ]
4808
                                                    ]
4809
                                                ],
4810
                                                'reportall' => [
4811
                                                    'type' => Literal::class,
4812
                                                    'options' => [
4813
                                                        'route' => '/reportall',
4814
                                                        'defaults' => [
12675 nelberth 4815
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController',
12408 nelberth 4816
                                                            'action' => 'reportall'
4817
                                                        ]
4818
                                                    ]
4819
                                                ],
4820
 
4821
                                                'matriz' => [
4822
                                                    'type' => Literal::class,
4823
                                                    'options' => [
4824
                                                        'route' => '/matriz',
4825
                                                        'defaults' => [
12675 nelberth 4826
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController',
12408 nelberth 4827
                                                            'action' => 'matriz'
4828
                                                        ]
4829
                                                    ]
4830
                                                ],
4831
                                                'goals' => [
4832
                                                    'type' => Segment::class,
4833
                                                    'options' => [
4834
                                                        'route' => '/:objective_id/goals',
4835
                                                        'constraints' => [
4836
                                                            'objective_id' => '[A-Za-z0-9\-]+\=*'
4837
                                                        ],
4838
                                                        'defaults' => [
12736 nelberth 4839
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewGoalsController',
12408 nelberth 4840
                                                            'action' => 'index'
4841
                                                        ]
4842
                                                    ],
4843
 
4844
                                                    'may_terminate' => true,
4845
                                                    'child_routes' => [
4846
                                                        'add' => [
4847
                                                            'type' => Literal::class,
4848
                                                            'options' => [
4849
                                                                'route' => '/add',
4850
                                                                'defaults' => [
12736 nelberth 4851
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewGoalsController',
12408 nelberth 4852
                                                                    'action' => 'add'
4853
                                                                ]
4854
                                                            ]
4855
                                                        ],
4856
                                                        'edit' => [
4857
                                                            'type' => Segment::class,
4858
                                                            'options' => [
4859
                                                                'route' => '/edit/:id',
4860
                                                                'constraints' => [
4861
                                                                    'id' => '[A-Za-z0-9\-]+\=*'
4862
                                                                ],
4863
                                                                'defaults' => [
12736 nelberth 4864
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewGoalsController',
12408 nelberth 4865
                                                                    'action' => 'edit'
4866
                                                                ]
4867
                                                            ]
4868
                                                        ],
4869
                                                        'delete' => [
4870
                                                            'type' => Segment::class,
4871
                                                            'options' => [
4872
                                                                'route' => '/delete/:id',
4873
                                                                'constraints' => [
4874
                                                                    'id' => '[A-Za-z0-9\-]+\=*'
4875
                                                                ],
4876
                                                                'defaults' => [
12736 nelberth 4877
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewGoalsController',
12408 nelberth 4878
                                                                    'action' => 'delete'
4879
                                                                ]
4880
                                                            ]
4881
                                                        ],
4882
                                                        'task' => [
4883
                                                            'type' => Segment::class,
4884
                                                            'options' => [
4885
                                                                'route' => '/:goal_id/task',
4886
                                                                'constraints' => [
4887
                                                                    'goal_id' => '[A-Za-z0-9\-]+\=*'
4888
                                                                ],
4889
                                                                'defaults' => [
12829 nelberth 4890
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController',
12408 nelberth 4891
                                                                    'action' => 'index'
4892
                                                                ]
4893
                                                            ],
4894
 
4895
                                                            'may_terminate' => true,
4896
                                                            'child_routes' => [
4897
                                                                'add' => [
4898
                                                                    'type' => Literal::class,
4899
                                                                    'options' => [
4900
                                                                        'route' => '/add',
4901
                                                                        'defaults' => [
12829 nelberth 4902
                                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController',
12408 nelberth 4903
                                                                            'action' => 'add'
4904
                                                                        ]
4905
                                                                    ]
4906
                                                                ],
4907
                                                                'edit' => [
4908
                                                                    'type' => Segment::class,
4909
                                                                    'options' => [
4910
                                                                        'route' => '/edit/:id',
4911
                                                                        'constraints' => [
4912
                                                                            'id' => '[A-Za-z0-9\-]+\=*'
4913
                                                                        ],
4914
                                                                        'defaults' => [
12829 nelberth 4915
                                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController',
12408 nelberth 4916
                                                                            'action' => 'edit'
4917
                                                                        ]
4918
                                                                    ]
4919
                                                                ],
4920
                                                                'delete' => [
4921
                                                                    'type' => Segment::class,
4922
                                                                    'options' => [
4923
                                                                        'route' => '/delete/:id',
4924
                                                                        'constraints' => [
4925
                                                                            'id' => '[A-Za-z0-9\-]+\=*'
4926
                                                                        ],
4927
                                                                        'defaults' => [
12829 nelberth 4928
                                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController',
12408 nelberth 4929
                                                                            'action' => 'delete'
4930
                                                                        ]
4931
                                                                    ]
4932
                                                                ],
4933
                                                                'view' => [
4934
                                                                    'type' => Segment::class,
4935
                                                                    'options' => [
4936
                                                                        'route' => '/view/:id',
4937
                                                                        'constraints' => [
4938
                                                                            'id' => '[A-Za-z0-9\-]+\=*'
4939
                                                                        ],
4940
                                                                        'defaults' => [
12829 nelberth 4941
                                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController',
12408 nelberth 4942
                                                                            'action' => 'view'
4943
                                                                        ]
4944
                                                                    ]
4945
                                                                ],
4946
                                                        ]
4947
                                                    ],
4948
                                                ]
4949
                                            ],
4950
                                            ]
4951
                                        ]
4952
                                        ,'feeds' => [
4953
                                            'type' => Literal::class,
4954
                                            'options' => [
11902 nelberth 4955
                                                'route' => '/feeds',
11908 nelberth 4956
 
11902 nelberth 4957
                                            ],
4958
                                            'may_terminate' => true,
4959
                                            'child_routes' => [
4960
                                                'timeline' => [
4961
                                                    'type' => Segment::class,
4962
                                                    'options' => [
11914 nelberth 4963
                                                        'route' => '/timeline[/urgent/:urgent][/topic_id/:topic_id]',
11902 nelberth 4964
                                                        'constraints' => [
4965
                                                            'hptg_id'=>'[A-Za-z0-9\-]+\=*',
4966
                                                            'topic_id' => '[A-Za-z0-9\-]+\=*',
4967
                                                            'urgent' => 'u',
4968
                                                        ],
4969
                                                        'defaults' => [
4970
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController',
4971
                                                            'action' => 'timeline'
4972
                                                        ]
4973
                                                    ]
4974
                                                ],
4975
                                                'onefeed' => [
4976
                                                    'type' => Segment::class,
4977
                                                    'options' => [
11997 nelberth 4978
                                                        'route' => '/onefeed[/:feed_id][/:topic_id]',
11902 nelberth 4979
                                                        'constraints' => [
4980
                                                            'group_id' => '[A-Za-z0-9\-]+\=*',
4981
                                                            'feed_id' => '[A-Za-z0-9\-]+\=*',
4982
                                                            'topic_id' => '[A-Za-z0-9\-]+\=*',
4983
                                                        ],
4984
                                                        'defaults' => [
4985
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController',
4986
                                                            'action' => 'oneFeed'
4987
                                                        ]
4988
                                                    ]
4989
                                                ],
4990
                                                'delete' => [
4991
                                                    'type' => Segment::class,
4992
                                                    'options' => [
4993
                                                        'route' => '/delete/:id',
4994
                                                        'constraints' => [
4995
                                                            'id' => '[A-Za-z0-9\-]+\=*',
4996
                                                        ],
4997
                                                        'defaults' => [
4998
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController',
4999
                                                            'action' => 'delete'
5000
                                                        ],
5001
                                                    ]
5002
                                                ],
5003
                                                'comments' => [
5004
                                                    'type' => Segment::class,
5005
                                                    'options' => [
5006
                                                        'route' => '/comments/:id',
5007
                                                        'constraints' => [
5008
                                                            'id' => '[A-Za-z0-9\-]+\=*',
5009
                                                        ],
5010
                                                        'defaults' => [
5011
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController',
5012
                                                            'action' => 'comment'
5013
                                                        ],
5014
                                                    ],
5015
                                                    'may_terminate' => true,
5016
                                                    'child_routes' => [
5017
                                                        'delete' => [
5018
                                                            'type' => Segment::class,
5019
                                                            'options' => [
5020
                                                                'route' => '/delete/:comment',
5021
                                                                'constraints' => [
5022
                                                                    'comment' => '[A-Za-z0-9\-]+\=*',
5023
                                                                ],
5024
                                                                'defaults' => [
5025
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController',
5026
                                                                    'action' => 'commentDelete'
5027
                                                                ]
5028
                                                            ]
5029
                                                        ],
5030
 
5031
                                                        'answer' => [
5032
                                                            'type' => Segment::class,
5033
                                                            'options' => [
5034
                                                                'route' => '/answer/:comment',
5035
                                                                'constraints' => [
5036
                                                                    'comment' => '[A-Za-z0-9\-]+\=*',
5037
                                                                ],
5038
                                                                'defaults' => [
5039
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController',
5040
                                                                    'action' => 'answer'
5041
                                                                ]
5042
                                                            ]
5043
                                                        ],
5044
                                                    ]
5045
                                                ],
5046
                                                'add' => [
5047
                                                    'type' => Segment::class,
5048
                                                    'options' => [
13857 nelberth 5049
                                                        'route' => '/add[/group/:group_id][/encoding/:encoding][/topic_id/:topic_id]',
11902 nelberth 5050
                                                        'constraints' => [
5051
                                                            'group_id' => '[A-Za-z0-9\-]+\=*',
5052
                                                            'topic_id' => '[A-Za-z0-9\-]+\=*',
5053
                                                            'encoding' => 'base64'
5054
                                                        ],
5055
                                                        'defaults' => [
5056
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController',
5057
                                                            'action' => 'add'
5058
                                                        ]
5059
                                                    ]
5060
                                                ],
5061
                                            ],
5062
                                        ],
7811 nelberth 5063
                                        'members' => [
7823 nelberth 5064
                                            'type' => Literal::class,
7811 nelberth 5065
                                            'options' => [
5066
                                                'route' => '/members',
5067
                                                'defaults' => [
5068
                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController',
5069
                                                    'action' => 'index'
5070
                                                ]
8012 nelberth 5071
                                            ],'may_terminate' => true,
5072
                                            'child_routes' => [
5073
                                                'invite' => [
5074
                                                    'type' => Segment::class,
5075
                                                    'options' => [
11083 nelberth 5076
                                                        'route' => '/invite/:user_id',
8054 nelberth 5077
                                                        'constraints' => [
11083 nelberth 5078
                                                            'user_id' => '[A-Za-z0-9\-]+\=*'
8054 nelberth 5079
                                                        ],
8012 nelberth 5080
                                                        'defaults' => [
5081
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController',
5082
                                                            'action' => 'invite'
5083
                                                        ]
5084
                                                    ]
5085
                                                ],
5086
                                                'edit' => [
5087
                                                    'type' => Segment::class,
5088
                                                    'options' => [
11083 nelberth 5089
                                                        'route' => '/edit/:user_id',
8012 nelberth 5090
                                                        'constraints' => [
11083 nelberth 5091
                                                            'user_id' => '[A-Za-z0-9\-]+\=*'
8012 nelberth 5092
                                                        ],
5093
                                                        'defaults' => [
5094
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController',
5095
                                                            'action' => 'edit'
5096
                                                        ]
5097
                                                    ]
5098
                                                ],
8054 nelberth 5099
                                                'delete' => [
8012 nelberth 5100
                                                    'type' => Segment::class,
5101
                                                    'options' => [
11083 nelberth 5102
                                                        'route' => '/delete[/:user_id]',
8012 nelberth 5103
                                                        'constraints' => [
11083 nelberth 5104
                                                            'user_id' => '[A-Za-z0-9\-]+\=*'
8012 nelberth 5105
                                                        ],
5106
                                                        'defaults' => [
5107
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController',
8054 nelberth 5108
                                                            'action' => 'delete'
8012 nelberth 5109
                                                        ]
5110
                                                    ]
5111
                                                ],
5112
                                            ]
7811 nelberth 5113
                                        ],
8686 nelberth 5114
                                        'urgent' => [
8702 nelberth 5115
                                            'type' => Segment::class,
5116
                                            'options' => [
5117
                                                'route' => '/urgent[/:urgent]',
5118
                                                'constraints' => [
5119
                                                    'urgent' => 'u'
8686 nelberth 5120
                                                ],
8702 nelberth 5121
                                                'defaults' => [
5122
                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewController',
5123
                                                    'action' => 'index'
5124
                                                ]
5125
                                            ]
5126
                                        ],
9095 nelberth 5127
                                        'calendar' => [
9924 nelberth 5128
                                            'type' => Literal::class,
9095 nelberth 5129
                                            'options' => [
9924 nelberth 5130
                                                'route' => '/calendar',
5131
 
9095 nelberth 5132
                                                'defaults' => [
5133
                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewCalendarController',
5134
                                                    'action' => 'index'
5135
                                                ]
9923 nelberth 5136
                                            ],'may_terminate' => true,
5137
                                            'child_routes' => [
5138
                                                'view' => [
9924 nelberth 5139
                                                    'type' => Segment::class,
9923 nelberth 5140
                                                    'options' => [
11083 nelberth 5141
                                                        'route' => '/view[/:feed_id]',
9924 nelberth 5142
                                                        'constraints' => [
11083 nelberth 5143
                                                            'feed_id' => '[A-Za-z0-9\-]+\=*'
9924 nelberth 5144
                                                        ],
9923 nelberth 5145
                                                        'defaults' => [
5146
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewCalendarController',
5147
                                                            'action' => 'view'
5148
                                                        ]
5149
                                                    ]
5150
                                                ],
9095 nelberth 5151
                                            ]
5152
                                        ],
9631 nelberth 5153
                                        'foro' => [
9621 nelberth 5154
                                            'type' => Literal::class,
9424 nelberth 5155
                                            'options' => [
9631 nelberth 5156
                                                'route' => '/foro',
10143 nelberth 5157
                                                'defaults' => [
5158
                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoController',
5159
                                                    'action' => 'index'
5160
                                                ]
9644 nelberth 5161
                                            ],
5162
                                            'may_terminate' => true,
9631 nelberth 5163
                                            'child_routes' => [
10150 nelberth 5164
                                                'view' => [
5165
                                                    'type' => Literal::class,
5166
                                                    'options' => [
5167
                                                        'route' => '/view',
5168
                                                        'defaults' => [
5169
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoController',
5170
                                                            'action' => 'view'
5171
                                                        ]
5172
                                                    ]
5173
                                                ],
9631 nelberth 5174
                                                'categories' => [
5175
                                                    'type' => Literal::class,
5176
                                                    'options' => [
5177
                                                        'route' => '/categories',
5178
                                                        'defaults' => [
5179
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController',
5180
                                                            'action' => 'index'
5181
                                                        ]
9638 nelberth 5182
                                                    ],
9644 nelberth 5183
                                                    'may_terminate' => true,
9640 nelberth 5184
                                                    'child_routes' => [
9720 nelberth 5185
                                                        'view' => [
5186
                                                            'type' => Literal::class,
5187
                                                            'options' => [
5188
                                                                'route' => '/view',
5189
                                                                'defaults' => [
5190
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController',
5191
                                                                    'action' => 'view'
5192
                                                                ]
5193
                                                            ]
5194
                                                        ],
9644 nelberth 5195
                                                        'add' => [
5196
                                                            'type' => Literal::class,
5197
                                                            'options' => [
5198
                                                                'route' => '/add',
5199
                                                                'defaults' => [
5200
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController',
5201
                                                                    'action' => 'add'
5202
                                                                ]
5203
                                                            ]
5204
                                                        ],
9643 nelberth 5205
                                                        'edit' => [
5206
                                                            'type' => Segment::class,
9640 nelberth 5207
                                                            'options' => [
11083 nelberth 5208
                                                                'route' => '/edit/:category_id',
9643 nelberth 5209
                                                                'constraints' => [
11083 nelberth 5210
                                                                    'category_id' => '[A-Za-z0-9\-]+\=*'
9643 nelberth 5211
                                                                ],
9640 nelberth 5212
                                                                'defaults' => [
5213
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController',
9643 nelberth 5214
                                                                    'action' => 'edit'
9640 nelberth 5215
                                                                ]
5216
                                                            ]
5217
                                                        ],
9643 nelberth 5218
                                                        'delete' => [
5219
                                                            'type' => Segment::class,
5220
                                                            'options' => [
11083 nelberth 5221
                                                                'route' => '/delete/:category_id',
9643 nelberth 5222
                                                                'constraints' => [
11083 nelberth 5223
                                                                    'category_id' => '[A-Za-z0-9\-]+\=*'
9643 nelberth 5224
                                                                ],
5225
                                                                'defaults' => [
5226
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController',
5227
                                                                    'action' => 'delete'
5228
                                                                ]
5229
                                                            ]
5230
                                                        ],
9760 nelberth 5231
                                                        'articles' => [
5232
                                                            'type' => Segment::class,
5233
                                                            'options' => [
11083 nelberth 5234
                                                                'route' => '/:category_id/articles',
9760 nelberth 5235
                                                                'constraints' => [
11083 nelberth 5236
                                                                    'category_id' => '[A-Za-z0-9\-]+\=*'
9760 nelberth 5237
                                                                ],
5238
                                                                'defaults' => [
5239
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesController',
5240
                                                                    'action' => 'index'
5241
                                                                ]
9845 nelberth 5242
                                                            ],
5243
                                                            'may_terminate' => true,
5244
                                                            'child_routes' => [
5245
                                                                'add' => [
5246
                                                                    'type' => Literal::class,
5247
                                                                    'options' => [
5248
                                                                        'route' => '/add',
5249
                                                                        'defaults' => [
5250
                                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesController',
5251
                                                                            'action' => 'add'
5252
                                                                        ]
5253
                                                                    ]
5254
                                                                ],
5255
                                                                'edit' => [
5256
                                                                    'type' => Segment::class,
5257
                                                                    'options' => [
11083 nelberth 5258
                                                                        'route' => '/edit/:article_id',
9845 nelberth 5259
                                                                        'constraints' => [
11083 nelberth 5260
                                                                            'articles_id' => '[A-Za-z0-9\-]+\=*'
9845 nelberth 5261
                                                                        ],
5262
                                                                        'defaults' => [
5263
                                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesController',
5264
                                                                            'action' => 'edit'
5265
                                                                        ]
5266
                                                                    ]
5267
                                                                ],
5268
 
5269
                                                                'delete' => [
5270
                                                                    'type' => Segment::class,
5271
                                                                    'options' => [
11083 nelberth 5272
                                                                        'route' => '/delete/:article_id',
9845 nelberth 5273
                                                                        'constraints' => [
11083 nelberth 5274
                                                                            'articles_id' => '[A-Za-z0-9\-]+\=*'
9845 nelberth 5275
                                                                        ],
5276
                                                                        'defaults' => [
5277
                                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesController',
5278
                                                                            'action' => 'delete'
5279
                                                                        ]
5280
                                                                    ]
5281
                                                                ],
5282
                                                                'view' => [
5283
                                                                    'type' => Segment::class,
5284
                                                                    'options' => [
11083 nelberth 5285
                                                                        'route' => '/view/:article_id',
9845 nelberth 5286
                                                                        'constraints' => [
11083 nelberth 5287
                                                                            'articles_id' => '[A-Za-z0-9\-]+\=*'
9845 nelberth 5288
                                                                        ],
5289
                                                                        'defaults' => [
9921 nelberth 5290
                                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesViewController',
5291
                                                                            'action' => 'index'
9845 nelberth 5292
                                                                        ]
5293
                                                                    ]
5294
                                                                ],
9760 nelberth 5295
                                                            ]
5296
                                                        ],
9640 nelberth 5297
                                                    ],
9424 nelberth 5298
                                                ],
5299
                                            ]
5300
                                        ],
7483 nelberth 5301
                                        'topic' => [
8649 nelberth 5302
                                            'type' => Literal::class,
7483 nelberth 5303
                                            'options' => [
8649 nelberth 5304
                                                'route' => '/topic',
7483 nelberth 5305
                                                'defaults' => [
7491 nelberth 5306
                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController',
7483 nelberth 5307
                                                    'action' => 'index'
5308
                                                ]
5309
                                            ],'may_terminate' => true,
5310
                                            'child_routes' => [
5311
                                                'add' => [
5312
                                                    'type' => Literal::class,
5313
                                                    'options' => [
5314
                                                        'route' => '/add',
5315
                                                        'defaults' => [
7506 nelberth 5316
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController',
7483 nelberth 5317
                                                            'action' => 'add'
5318
                                                        ]
5319
                                                    ]
5320
                                                ],
5321
                                                'edit' => [
5322
                                                    'type' => Segment::class,
5323
                                                    'options' => [
11083 nelberth 5324
                                                        'route' => '/edit/:topic_id',
7483 nelberth 5325
                                                        'constraints' => [
11083 nelberth 5326
                                                            'topic_id' => '[A-Za-z0-9\-]+\=*'
7483 nelberth 5327
                                                        ],
5328
                                                        'defaults' => [
7491 nelberth 5329
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController',
7483 nelberth 5330
                                                            'action' => 'edit'
5331
                                                        ]
5332
                                                    ]
5333
                                                ],
7636 nelberth 5334
                                                'view' => [
7629 nelberth 5335
                                                    'type' => Segment::class,
5336
                                                    'options' => [
11083 nelberth 5337
                                                        'route' => '/view[/:topic_id]',
7629 nelberth 5338
                                                        'constraints' => [
11083 nelberth 5339
                                                            'topic_id' => '[A-Za-z0-9\-]+\=*'
7629 nelberth 5340
                                                        ],
5341
                                                        'defaults' => [
7635 nelberth 5342
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewController',
7629 nelberth 5343
                                                            'action' => 'index'
5344
                                                        ]
5345
                                                    ]
5346
                                                ],
8686 nelberth 5347
 
7483 nelberth 5348
                                                'delete' => [
5349
                                                    'type' => Segment::class,
5350
                                                    'options' => [
11083 nelberth 5351
                                                        'route' => '/delete/:topic_id',
7483 nelberth 5352
                                                        'constraints' => [
11083 nelberth 5353
                                                            'topic_id' => '[A-Za-z0-9\-]+\=*'
7483 nelberth 5354
                                                        ],
5355
                                                        'defaults' => [
7491 nelberth 5356
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController',
7483 nelberth 5357
                                                            'action' => 'delete'
5358
                                                        ]
5359
                                                    ]
5360
                                                ]
5361
                                            ],
5362
                                        ],
5363
 
5364
                                    ],
5365
 
4411 nelberth 5366
                            ],
5367
                        ]
4388 nelberth 5368
                    ],
1333 efrain 5369
                ]
5370
            ],
7224 nelberth 5371
 
4588 nelberth 5372
 
1333 efrain 5373
            'my-trainer' => [
5374
                'type' => Literal::class,
5375
                'options' => [
5376
                    'route' => '/my-trainer',
5377
                    'defaults' => [
5378
                        'controller' => '\LeadersLinked\Controller\UnknownController',
5379
                        'action' => 'index'
5380
                    ]
5381
                ],
5382
                'may_terminate' => true,
5383
                'child_routes' => [
8462 eleazar 5384
                    'category' => [
5385
                        'type' => Literal::class,
5386
                        'options' => [
5387
                            'route' => '/category',
5388
                            'defaults' => [
8529 eleazar 5389
                                'controller' => '\LeadersLinked\Controller\MyTrainerCategoriesController',
8462 eleazar 5390
                                'action' => 'index'
5391
                            ]
5392
                        ],
5393
                        'may_terminate' => true,
5394
                        'child_routes' => [
5395
                            'add' => [
5396
                                'type' => Literal::class,
5397
                                'options' => [
5398
                                    'route' => '/add',
5399
                                    'defaults' => [
8529 eleazar 5400
                                        'controller' => '\LeadersLinked\Controller\MyTrainerCategoriesController',
8462 eleazar 5401
                                        'action' => 'add'
5402
                                    ]
5403
                                ]
5404
                            ],
5405
                            'edit' => [
5406
                                'type' => Segment::class,
5407
                                'options' => [
5408
                                    'route' => '/edit/:id',
5409
                                    'constraints' => [
5410
                                        'id' => '[A-Za-z0-9\-]+\=*'
5411
                                    ],
5412
                                    'defaults' => [
8529 eleazar 5413
                                        'controller' => '\LeadersLinked\Controller\MyTrainerCategoriesController',
8462 eleazar 5414
                                        'action' => 'edit'
5415
                                    ]
5416
                                ]
5417
                            ],
5418
                            'delete' => [
5419
                                'type' => Segment::class,
5420
                                'options' => [
5421
                                    'route' => '/delete/:id',
5422
                                    'constraints' => [
5423
                                        'id' => '[A-Za-z0-9\-]+\=*'
5424
                                    ],
5425
                                    'defaults' => [
8529 eleazar 5426
                                        'controller' => '\LeadersLinked\Controller\MyTrainerCategoriesController',
8462 eleazar 5427
                                        'action' => 'delete'
5428
                                    ]
5429
                                ]
5430
                            ]
5431
                        ]
5432
                    ],
5433
                    'question' => [
12250 eleazar 5434
                        'type' => segment::class,
8462 eleazar 5435
                        'options' => [
12260 eleazar 5436
                            'route' => '/question',
8462 eleazar 5437
                            'defaults' => [
9350 eleazar 5438
                                'controller' => '\LeadersLinked\Controller\MyTrainerQuestionController',
8462 eleazar 5439
                                'action' => 'index'
5440
                            ]
5441
                        ],
5442
                        'may_terminate' => true,
5443
                        'child_routes' => [
5444
                            'add' => [
5445
                                'type' => Literal::class,
5446
                                'options' => [
5447
                                    'route' => '/add',
5448
                                    'defaults' => [
9350 eleazar 5449
                                        'controller' => '\LeadersLinked\Controller\MyTrainerQuestionController',
8462 eleazar 5450
                                        'action' => 'add'
5451
                                    ]
5452
                                ]
5453
                            ],
5454
                            'edit' => [
5455
                                'type' => Segment::class,
5456
                                'options' => [
5457
                                    'route' => '/edit/:id',
5458
                                    'constraints' => [
5459
                                        'id' => '[A-Za-z0-9\-]+\=*'
5460
                                    ],
5461
                                    'defaults' => [
9350 eleazar 5462
                                        'controller' => '\LeadersLinked\Controller\MyTrainerQuestionController',
8462 eleazar 5463
                                        'action' => 'edit'
5464
                                    ]
5465
                                ]
5466
                            ],
5467
                            'delete' => [
5468
                                'type' => Segment::class,
5469
                                'options' => [
12193 eleazar 5470
                                    'route' => '/delete/:id',
5471
                                    'constraints' => [
5472
                                        'id' => '[A-Za-z0-9\-]+\=*'
5473
                                    ],
8462 eleazar 5474
                                    'defaults' => [
9350 eleazar 5475
                                        'controller' => '\LeadersLinked\Controller\MyTrainerQuestionController',
8462 eleazar 5476
                                        'action' => 'delete'
5477
                                    ]
5478
                                ]
11195 eleazar 5479
                            ],
5480
                            'view' => [
5481
                                'type' => Segment::class,
5482
                                'options' => [
12280 eleazar 5483
                                    'route' => '/:id/view',
11195 eleazar 5484
                                    'constraints' => [
5485
                                        'id' => '[A-Za-z0-9\-]+\=*'
5486
                                    ],
5487
                                    'defaults' => [
12260 eleazar 5488
                                        'controller' => '\LeadersLinked\Controller\MyTrainerQuestionViewController',
5489
                                        'action' => 'index'
11195 eleazar 5490
                                    ]
5491
                                ]
11303 eleazar 5492
                            ],
11840 eleazar 5493
                            'answer' => [
11322 eleazar 5494
                                'type' => Segment::class,
8462 eleazar 5495
                                'options' => [
11852 eleazar 5496
                                    'route' => '/:id/answer',
11337 eleazar 5497
                                    'constraints' => [
5498
                                        'id' => '[A-Za-z0-9\-]+\=*'
5499
                                    ],
8462 eleazar 5500
                                    'defaults' => [
10602 eleazar 5501
                                        'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
11840 eleazar 5502
                                        'action' => 'index'
8462 eleazar 5503
                                    ]
11810 eleazar 5504
                                ],
5505
                                'may_terminate' => true,
5506
                                'child_routes' => [
11840 eleazar 5507
                                    'add' => [
5508
                                        'type' => Segment::class,
5509
                                        'options' => [
5510
                                            'route' => '/add[/:id]',
5511
                                            'constraints' => [
5512
                                                'id' => '[A-Za-z0-9\-]+\=*'
5513
                                            ],
5514
                                            'defaults' => [
5515
                                                'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
5516
                                                'action' => 'add'
5517
                                            ]
5518
                                        ]
5519
                                    ],
5520
                                    'edit' => [
5521
                                        'type' => Segment::class,
5522
                                        'options' => [
11860 eleazar 5523
                                            'route' => '/edit',
5524
 
11840 eleazar 5525
                                            'defaults' => [
5526
                                                'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
5527
                                                'action' => 'edit'
5528
                                            ]
5529
                                        ]
5530
                                    ],
11810 eleazar 5531
                                    'delete' => [
5532
                                        'type' => Segment::class,
5533
                                        'options' => [
11859 eleazar 5534
                                            'route' => '/delete',
11810 eleazar 5535
                                            'defaults' => [
11812 eleazar 5536
                                                'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
11840 eleazar 5537
                                                'action' => 'delete'
11810 eleazar 5538
                                            ]
5539
                                        ]
5540
                                    ],
11884 eleazar 5541
                                    'feed' => [
5542
                                        'type' => Segment::class,
5543
                                        'options' => [
5544
                                            'route' => '/feed',
5545
                                            'defaults' => [
5546
                                                'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
5547
                                                'action' => 'feed'
5548
                                            ],
5549
                                        ],
5550
                                    ],
11913 eleazar 5551
                                    'timeline' => [
5552
                                        'type' => Segment::class,
5553
                                        'options' => [
5554
                                            'route' => '/timeline',
5555
                                            'defaults' => [
11921 eleazar 5556
                                                'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
11913 eleazar 5557
                                                'action' => 'timeline'
11921 eleazar 5558
                                            ],
5559
                                        ],
11913 eleazar 5560
                                    ],
11840 eleazar 5561
                                    'comments' => [
5562
                                        'type' => Segment::class,
5563
                                        'options' => [
11860 eleazar 5564
                                            'route' => '/comments',
5565
 
11840 eleazar 5566
                                            'defaults' => [
5567
                                                'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
5568
                                                'action' => 'comment'
5569
                                            ],
5570
                                        ],
5571
                                        'may_terminate' => true,
5572
                                        'child_routes' => [
5573
                                            'delete' => [
5574
                                                'type' => Segment::class,
5575
                                                'options' => [
5576
                                                    'route' => '/delete/:comment',
5577
                                                    'constraints' => [
5578
                                                        'comment' => '[A-Za-z0-9\-]+\=*',
5579
                                                    ],
5580
                                                    'defaults' => [
5581
                                                        'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
5582
                                                        'action' => 'commentDelete'
5583
                                                    ]
5584
                                                ]
5585
                                            ],
11948 eleazar 5586
                                            'answer' => [
5587
                                                'type' => Segment::class,
5588
                                                'options' => [
5589
                                                    'route' => '/answer/:comment',
5590
                                                    'constraints' => [
5591
                                                        'comment' => '[A-Za-z0-9\-]+\=*',
5592
                                                    ],
5593
                                                    'defaults' => [
5594
                                                        'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
5595
                                                        'action' => 'answer'
5596
                                                    ]
5597
                                                ]
5598
                                            ],
11840 eleazar 5599
                                        ]
5600
                                    ],
5601
                                ],
11810 eleazar 5602
                            ],
11840 eleazar 5603
                        ],
8462 eleazar 5604
                    ],
1333 efrain 5605
                ]
5606
            ],
13354 eleazar 5607
 
5608
            'development-and-content' => [
15028 efrain 5609
                'type' => Literal::class,
13354 eleazar 5610
                'options' => [
15028 efrain 5611
                    'route' => '/development-and-content',
13354 eleazar 5612
                    'defaults' => [
5613
                        'controller' => '\LeadersLinked\Controller\DevelopmentContentController',
14992 kerby 5614
                        'action' => 'index',
13354 eleazar 5615
                    ]
5616
                ],
15028 efrain 5617
 
5618
 
13354 eleazar 5619
                'may_terminate' => true,
5620
                'child_routes' => [
15028 efrain 5621
                    'listing' => [
15014 efrain 5622
                        'type' => Segment::class,
14743 kerby 5623
                        'options' => [
15028 efrain 5624
                            'route' => '/listing[/:category_id]',
5625
                            'constraints' => [
5626
                                'category_id' => '[A-Za-z0-9\-]+\=*'
5627
                            ],
14743 kerby 5628
                            'defaults' => [
5629
                                'controller' => '\LeadersLinked\Controller\DevelopmentContentController',
15028 efrain 5630
                                'action' => 'listing'
14743 kerby 5631
                            ]
5632
                        ]
5633
                    ],
15028 efrain 5634
                    'add' => [
13354 eleazar 5635
                        'type' => Segment::class,
5636
                        'options' => [
15028 efrain 5637
                            'route' => '/add',
13354 eleazar 5638
                            'defaults' => [
5639
                                'controller' => '\LeadersLinked\Controller\DevelopmentContentController',
15028 efrain 5640
                                'action' => 'add'
13354 eleazar 5641
                            ]
5642
                        ]
5643
                    ],
5644
                    'edit' => [
5645
                        'type' => Segment::class,
5646
                        'options' => [
14972 kerby 5647
                            'route' => '/edit/:id',
14743 kerby 5648
                            'constraints' => [
5649
                                'id' => '[A-Za-z0-9\-]+\=*'
5650
                            ],
13354 eleazar 5651
                            'defaults' => [
5652
                                'controller' => '\LeadersLinked\Controller\DevelopmentContentController',
5653
                                'action' => 'edit'
5654
                            ]
5655
                        ]
5656
                    ],
14743 kerby 5657
                    'aproved' => [
5658
                        'type' => Segment::class,
5659
                        'options' => [
14972 kerby 5660
                            'route' => '/aproved/:id',
14743 kerby 5661
                            'constraints' => [
5662
                                'id' => '[A-Za-z0-9\-]+\=*'
5663
                            ],
5664
                            'defaults' => [
5665
                                'controller' => '\LeadersLinked\Controller\DevelopmentContentController',
5666
                                'action' => 'aproved'
5667
                            ]
5668
                        ]
5669
                    ],
13354 eleazar 5670
                    'delete' => [
5671
                        'type' => Segment::class,
5672
                        'options' => [
14972 kerby 5673
                            'route' => '/delete/:id',
14743 kerby 5674
                            'constraints' => [
5675
                                'id' => '[A-Za-z0-9\-]+\=*'
5676
                            ],
13354 eleazar 5677
                            'defaults' => [
5678
                                'controller' => '\LeadersLinked\Controller\DevelopmentContentController',
5679
                                'action' => 'delete'
5680
                            ]
5681
                        ]
5682
                    ],
15029 kerby 5683
                    'category' => [
5684
                        'type' => Literal::class,
14972 kerby 5685
                        'options' => [
15029 kerby 5686
                            'route' => '/category',
14972 kerby 5687
                            'defaults' => [
15029 kerby 5688
                                'controller' => '\LeadersLinked\Controller\DevelopmentContentCategoryController',
5689
                                'action' => 'index'
5690
                            ]
14972 kerby 5691
                        ],
5692
                        'may_terminate' => true,
5693
                        'child_routes' => [
15029 kerby 5694
                            'add' => [
5695
                                'type' => Literal::class,
5696
                                'options' => [
5697
                                    'route' => '/add',
5698
                                    'defaults' => [
5699
                                        'controller' => '\LeadersLinked\Controller\DevelopmentContentCategoryController',
5700
                                        'action' => 'add'
5701
                                    ]
5702
                                ]
5703
                            ],
5704
                            'edit' => [
14972 kerby 5705
                                'type' => Segment::class,
5706
                                'options' => [
15029 kerby 5707
                                    'route' => '/edit/:id',
14972 kerby 5708
                                    'constraints' => [
15029 kerby 5709
                                        'id' => '[A-Za-z0-9\-]+\=*'
14972 kerby 5710
                                    ],
5711
                                    'defaults' => [
15029 kerby 5712
                                        'controller' => '\LeadersLinked\Controller\DevelopmentContentCategoryController',
5713
                                        'action' => 'edit'
14972 kerby 5714
                                    ]
5715
                                ]
5716
                            ],
15029 kerby 5717
                            'delete' => [
14972 kerby 5718
                                'type' => Segment::class,
5719
                                'options' => [
15029 kerby 5720
                                    'route' => '/delete/:id',
14972 kerby 5721
                                    'constraints' => [
15029 kerby 5722
                                        'id' => '[A-Za-z0-9\-]+\=*'
14972 kerby 5723
                                    ],
5724
                                    'defaults' => [
15029 kerby 5725
                                        'controller' => '\LeadersLinked\Controller\DevelopmentContentCategoryController',
5726
                                        'action' => 'delete'
14972 kerby 5727
                                    ]
5728
                                ]
15029 kerby 5729
                            ]
14972 kerby 5730
                        ]
15029 kerby 5731
                    ]
13354 eleazar 5732
                ]
5733
            ],
1333 efrain 5734
 
1 www 5735
        ]
5736
    ],
5737
    'controllers' => [
5738
        'factories' => [
5739
            \LeadersLinked\Controller\AuthController::class => \LeadersLinked\Factory\Controller\AuthControllerFactory::class,
5740
            \LeadersLinked\Controller\FeedController::class => \LeadersLinked\Factory\Controller\FeedControllerFactory::class,
5741
            \LeadersLinked\Controller\FollowerController::class => \LeadersLinked\Factory\Controller\FollowerControllerFactory::class,
5742
            \LeadersLinked\Controller\JobController::class => \LeadersLinked\Factory\Controller\JobControllerFactory::class,
1469 eleazar 5743
            \LeadersLinked\Controller\RecruitmentSelectionController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionFactory::class,
1709 eleazar 5744
            \LeadersLinked\Controller\RecruitmentSelectionInterviewController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionInterviewFactory::class,
1712 eleazar 5745
            \LeadersLinked\Controller\RecruitmentSelectionInterviewFormController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionInterviewFormFactory::class,
8797 eleazar 5746
            \LeadersLinked\Controller\RecruitmentSelectionInterviewFileController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionInterviewFileControllerFactory::class,
1385 eleazar 5747
            \LeadersLinked\Controller\RecruitmentSelectionVacancyController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionVacancyFactory::class,
1459 eleazar 5748
            \LeadersLinked\Controller\RecruitmentSelectionCandidateController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionCandidateFactory::class,
1 www 5749
            \LeadersLinked\Controller\ProfileController::class => \LeadersLinked\Factory\Controller\ProfileControllerFactory::class,
5750
            \LeadersLinked\Controller\CompanyController::class => \LeadersLinked\Factory\Controller\CompanyControllerFactory::class,
5751
            \LeadersLinked\Controller\CompanySizeController::class => \LeadersLinked\Factory\Controller\CompanySizeControllerFactory::class,
1115 geraldo 5752
            \LeadersLinked\Controller\BehaviorsController::class => \LeadersLinked\Factory\Controller\BehaviorsControllerFactory::class,
1 www 5753
            \LeadersLinked\Controller\CompetencyTypeController::class => \LeadersLinked\Factory\Controller\CompetencyTypeControllerFactory::class,
5754
            \LeadersLinked\Controller\CompetencyController::class => \LeadersLinked\Factory\Controller\CompetencyControllerFactory::class,
5755
            \LeadersLinked\Controller\DegreeController::class => \LeadersLinked\Factory\Controller\DegreeControllerFactory::class,
13355 eleazar 5756
            \LeadersLinked\Controller\DevelopmentContentCategoryController::class => \LeadersLinked\Factory\Controller\DevelopmentContentCategoryControllerFactory::class,
5757
            \LeadersLinked\Controller\DevelopmentContentController::class => \LeadersLinked\Factory\Controller\DevelopmentContentControllerFactory::class,
1 www 5758
            \LeadersLinked\Controller\EmailTemplateController::class => \LeadersLinked\Factory\Controller\EmailTemplateControllerFactory::class,
5759
            \LeadersLinked\Controller\PushTemplateController::class => \LeadersLinked\Factory\Controller\PushTemplateControllerFactory::class,
5760
            \LeadersLinked\Controller\GroupTypeController::class => \LeadersLinked\Factory\Controller\GroupTypeControllerFactory::class,
5761
            \LeadersLinked\Controller\IndustryController::class => \LeadersLinked\Factory\Controller\IndustryControllerFactory::class,
5762
            \LeadersLinked\Controller\JobCategoryController::class => \LeadersLinked\Factory\Controller\JobCategoryControllerFactory::class,
28 efrain 5763
            \LeadersLinked\Controller\JobDescriptionController::class => \LeadersLinked\Factory\Controller\JobDescriptionControllerFactory::class,
1 www 5764
            \LeadersLinked\Controller\PageController::class => \LeadersLinked\Factory\Controller\PageControllerFactory::class,
67 efrain 5765
            \LeadersLinked\Controller\PositionController::class => \LeadersLinked\Factory\Controller\PositionControllerFactory::class,
1 www 5766
            \LeadersLinked\Controller\PostController::class => \LeadersLinked\Factory\Controller\PostControllerFactory::class,
5767
            \LeadersLinked\Controller\SkillController::class => \LeadersLinked\Factory\Controller\SkillControllerFactory::class,
5768
            \LeadersLinked\Controller\UserController::class => \LeadersLinked\Factory\Controller\UserControllerFactory::class,
5769
            \LeadersLinked\Controller\DashboardController::class => \LeadersLinked\Factory\Controller\DashboardControllerFactory::class,
115 efrain 5770
            \LeadersLinked\Controller\SelfEvaluationController::class => \LeadersLinked\Factory\Controller\SelfEvaluationControllerFactory::class,
5771
            \LeadersLinked\Controller\SelfEvaluationFormController::class => \LeadersLinked\Factory\Controller\SelfEvaluationFormControllerFactory::class,
1089 geraldo 5772
            \LeadersLinked\Controller\SelfEvaluationFormUserController::class => \LeadersLinked\Factory\Controller\SelfEvaluationFormUserControllerFactory::class,
247 geraldo 5773
            \LeadersLinked\Controller\SelfEvaluationReviewController::class => \LeadersLinked\Factory\Controller\SelfEvaluationReviewControllerFactory::class,
4375 eleazar 5774
            \LeadersLinked\Controller\SurveyController::class => \LeadersLinked\Factory\Controller\SurveyControllerFactory::class,
5775
            \LeadersLinked\Controller\SurveyFormController::class => \LeadersLinked\Factory\Controller\SurveyFormControllerFactory::class,
5868 eleazar 5776
            \LeadersLinked\Controller\SurveyReportController::class => \LeadersLinked\Factory\Controller\SurveyReportControllerFactory::class,
5287 eleazar 5777
            \LeadersLinked\Controller\SurveyTestController::class => \LeadersLinked\Factory\Controller\SurveyTestControllerFactory::class,
7218 eleazar 5778
            \LeadersLinked\Controller\OrganizationalClimateController::class => \LeadersLinked\Factory\Controller\OrganizationalClimateControllerFactory::class,
5779
            \LeadersLinked\Controller\OrganizationalClimateFormController::class => \LeadersLinked\Factory\Controller\OrganizationalClimateFormControllerFactory::class,
5780
            \LeadersLinked\Controller\OrganizationalClimateReportController::class => \LeadersLinked\Factory\Controller\OrganizationalClimateReportControllerFactory::class,
5781
            \LeadersLinked\Controller\OrganizationalClimateTestController::class => \LeadersLinked\Factory\Controller\OrganizationalClimateTestControllerFactory::class,
987 geraldo 5782
            \LeadersLinked\Controller\PerformanceEvaluationFormController::class => \LeadersLinked\Factory\Controller\PerformanceEvaluationFormControllerFactory::class,
9335 eleazar 5783
            \LeadersLinked\Controller\MyTrainerCategoriesController::class => \LeadersLinked\Factory\Controller\MyTrainerCategoriesControllerFactory::class,
12286 eleazar 5784
            \LeadersLinked\Controller\MyTrainerQuestionViewController::class => \LeadersLinked\Factory\Controller\MyTrainerQuestionViewControllerFactory::class,
9350 eleazar 5785
            \LeadersLinked\Controller\MyTrainerQuestionController::class => \LeadersLinked\Factory\Controller\MyTrainerQuestionControllerFactory::class,
10423 eleazar 5786
            \LeadersLinked\Controller\MyTrainerAnswerController::class => \LeadersLinked\Factory\Controller\MyTrainerAnswerControllerFactory::class,
1383 efrain 5787
            \LeadersLinked\Controller\PerformanceEvaluationEvaluationController::class => \LeadersLinked\Factory\Controller\PerformanceEvaluationEvaluationControllerFactory::class,
1 www 5788
            \LeadersLinked\Controller\MicrolearningController::class => \LeadersLinked\Factory\Controller\MicrolearningControllerFactory::class,
66 efrain 5789
            \LeadersLinked\Controller\MicrolearningQuizController::class => \LeadersLinked\Factory\Controller\MicrolearningQuizControllerFactory::class,
5790
            \LeadersLinked\Controller\MicrolearningQuestionController::class => \LeadersLinked\Factory\Controller\MicrolearningQuestionControllerFactory::class,
5791
            \LeadersLinked\Controller\MicrolearningAnswerController::class => \LeadersLinked\Factory\Controller\MicrolearningAnswerControllerFactory::class,
1 www 5792
            \LeadersLinked\Controller\MicrolearningTopicController::class => \LeadersLinked\Factory\Controller\MicrolearningTopicControllerFactory::class,
5793
            \LeadersLinked\Controller\MicrolearningCapsuleController::class => \LeadersLinked\Factory\Controller\MicrolearningCapsuleControllerFactory::class,
5794
            \LeadersLinked\Controller\MicrolearningSlideController::class => \LeadersLinked\Factory\Controller\MicrolearningSlideControllerFactory::class,
5795
            \LeadersLinked\Controller\MicrolearningAccessForStudentsController::class => \LeadersLinked\Factory\Controller\MicrolearningAccessForStudentsControllerFactory::class,
5796
            \LeadersLinked\Controller\MicrolearningStudentsController::class => \LeadersLinked\Factory\Controller\MicrolearningStudentsControllerFactory::class,
5797
            \LeadersLinked\Controller\MicrolearningReportsController::class => \LeadersLinked\Factory\Controller\MicrolearningReportsControllerFactory::class,
5798
            \LeadersLinked\Controller\MicrolearningExtendUserCompanyController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserCompanyControllerFactory::class,
5799
            \LeadersLinked\Controller\MicrolearningExtendUserFunctionController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserFunctionControllerFactory::class,
5800
            \LeadersLinked\Controller\MicrolearningExtendUserGroupController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserGroupControllerFactory::class,
5801
            \LeadersLinked\Controller\MicrolearningExtendUserInstitutionController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserInstitutionControllerFactory::class,
5802
            \LeadersLinked\Controller\MicrolearningExtendUserPartnerController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserPartnerControllerFactory::class,
5803
            \LeadersLinked\Controller\MicrolearningExtendUserProgramController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserProgramControllerFactory::class,
5804
            \LeadersLinked\Controller\MicrolearningExtendUserSectorController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserSectorControllerFactory::class,
5805
            \LeadersLinked\Controller\MicrolearningExtendUserStudentTypeController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserStudentTypeControllerFactory::class,
5806
            \LeadersLinked\Controller\StorageController::class => \LeadersLinked\Factory\Controller\StorageControllerFactory::class,
15336 efrain 5807
            \LeadersLinked\Controller\StorageNetworkController::class => \LeadersLinked\Factory\Controller\StorageNetworkControllerFactory::class,
2232 nelberth 5808
            \LeadersLinked\Controller\PlanningObjectivesAndGoalsController::class => \LeadersLinked\Factory\Controller\PlanningObjectivesAndGoalsControllerFactory::class,
2228 nelberth 5809
            \LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController::class => \LeadersLinked\Factory\Controller\PlanningObjectivesAndGoalsObjectivesControllerFactory::class,
2327 nelberth 5810
            \LeadersLinked\Controller\PlanningObjectivesAndGoalsGoalsController::class => \LeadersLinked\Factory\Controller\PlanningObjectivesAndGoalsGoalsControllerFactory::class,
2517 nelberth 5811
            \LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController::class => \LeadersLinked\Factory\Controller\PlanningObjectivesAndGoalsTaskControllerFactory::class,
15336 efrain 5812
            \LeadersLinked\Controller\PrivateNetworksController::class => \LeadersLinked\Factory\Controller\PrivateNetworksControllerFactory::class,
5813
            \LeadersLinked\Controller\MyPrivateNetworkController::class => \LeadersLinked\Factory\Controller\MyPrivateNetworkControllerFactory::class,
4377 nelberth 5814
            \LeadersLinked\Controller\HighPerformanceTeamsController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsControllerFactory::class,
7224 nelberth 5815
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsControllerFactory::class,
9095 nelberth 5816
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewCalendarController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewCalendarControllerFactory::class,
9619 nelberth 5817
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewForoCategoriesControllerFactory::class,
9764 nelberth 5818
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewForoArticlesControllerFactory::class,
10143 nelberth 5819
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewForoControllerFactory::class,
9921 nelberth 5820
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesViewController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewForoArticlesViewControllerFactory::class,
7308 nelberth 5821
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewControllerFactory::class,
12433 nelberth 5822
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewObjectivesControllerFactory::class,
12736 nelberth 5823
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewGoalsController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewGoalsControllerFactory::class,
12835 nelberth 5824
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewTaskControllerFactory::class,
11898 nelberth 5825
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewFeedControllerFactory::class,
7494 nelberth 5826
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewTopicControllerFactory::class,
7811 nelberth 5827
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsMembersControllerFactory::class,
13014 nelberth 5828
            \LeadersLinked\Controller\ChatController::class => \LeadersLinked\Factory\Controller\ChatControllerFactory::class,
13010 nelberth 5829
            \LeadersLinked\Controller\CommunicationController::class => \LeadersLinked\Factory\Controller\CommunicationControllerFactory::class,
13675 nelberth 5830
            \LeadersLinked\Controller\CommunicationInboxController::class => \LeadersLinked\Factory\Controller\CommunicationInboxControllerFactory::class,
13528 nelberth 5831
            \LeadersLinked\Controller\InMailController::class => \LeadersLinked\Factory\Controller\InMailControllerFactory::class,
1333 efrain 5832
 
5833
 
5834
            \LeadersLinked\Controller\UnknownController::class => \LeadersLinked\Factory\Controller\UnknownControllerFactory::class,
66 efrain 5835
            \LeadersLinked\Controller\TestController::class => \LeadersLinked\Factory\Controller\TestControllerFactory::class,
1 www 5836
        ],
5837
        'aliases' => [
5838
            '\LeadersLinked\Controller\AuthController' => \LeadersLinked\Controller\AuthController::class,
5839
            '\LeadersLinked\Controller\FollowerController' => \LeadersLinked\Controller\FollowerController::class,
5840
            '\LeadersLinked\Controller\FeedController' => \LeadersLinked\Controller\FeedController::class,
5841
            '\LeadersLinked\Controller\JobController' => \LeadersLinked\Controller\JobController::class,
1343 eleazar 5842
            '\LeadersLinked\Controller\RecruitmentSelectionController' => \LeadersLinked\Controller\RecruitmentSelectionController::class,
1385 eleazar 5843
            '\LeadersLinked\Controller\RecruitmentSelectionVacancyController' => \LeadersLinked\Controller\RecruitmentSelectionVacancyController::class,
1459 eleazar 5844
            '\LeadersLinked\Controller\RecruitmentSelectionCandidateController' => \LeadersLinked\Controller\RecruitmentSelectionCandidateController::class,
1712 eleazar 5845
            '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController' => \LeadersLinked\Controller\RecruitmentSelectionInterviewFormController::class,
8795 eleazar 5846
            '\LeadersLinked\Controller\RecruitmentSelectionInterviewFileController' => \LeadersLinked\Controller\RecruitmentSelectionInterviewFileController::class,
1 www 5847
            '\LeadersLinked\Controller\ProfileController' => \LeadersLinked\Controller\ProfileController::class,
5848
            '\LeadersLinked\Controller\CompanyController' => \LeadersLinked\Controller\CompanyController::class,
5849
            '\LeadersLinked\Controller\CompanySizeController' => \LeadersLinked\Controller\CompanySizeController::class,
5850
            '\LeadersLinked\Controller\CompetencyTypeController' => \LeadersLinked\Controller\CompetencyTypeController::class,
1102 geraldo 5851
            '\LeadersLinked\Controller\BehaviorsController' => \LeadersLinked\Controller\BehaviorsController::class,
1 www 5852
            '\LeadersLinked\Controller\CompetencyController' => \LeadersLinked\Controller\CompetencyController::class,
5853
            '\LeadersLinked\Controller\DegreeController' => \LeadersLinked\Controller\DegreeController::class,
13355 eleazar 5854
            '\LeadersLinked\Controller\DevelopmentContentCategoryController' => \LeadersLinked\Controller\DevelopmentContentCategoryController::class,
5855
            '\LeadersLinked\Controller\DevelopmentContentController' => \LeadersLinked\Controller\DevelopmentContentController::class,
1 www 5856
            '\LeadersLinked\Controller\EmailTemplateController' => \LeadersLinked\Controller\EmailTemplateController::class,
1089 geraldo 5857
            '\LeadersLinked\Controller\PushTemplateController' => \LeadersLinked\Controller\PushTemplateController::class,
1 www 5858
            '\LeadersLinked\Controller\GroupTypeController' => \LeadersLinked\Controller\GroupTypeController::class,
5859
            '\LeadersLinked\Controller\IndustryController' => \LeadersLinked\Controller\IndustryController::class,
5860
            '\LeadersLinked\Controller\JobCategoryController' => \LeadersLinked\Controller\JobCategoryController::class,
66 efrain 5861
            '\LeadersLinked\Controller\JobDescriptionController' => \LeadersLinked\Controller\JobDescriptionController::class,
1 www 5862
            '\LeadersLinked\Controller\PageController' => \LeadersLinked\Controller\PageController::class,
67 efrain 5863
            '\LeadersLinked\Controller\PositionController' => \LeadersLinked\Controller\PositionController::class,
1 www 5864
            '\LeadersLinked\Controller\PostController' => \LeadersLinked\Controller\PostController::class,
5865
            '\LeadersLinked\Controller\SkillController' => \LeadersLinked\Controller\SkillController::class,
5866
            '\LeadersLinked\Controller\UserController' => \LeadersLinked\Controller\UserController::class,
5867
            '\LeadersLinked\Controller\DashboardController' => \LeadersLinked\Controller\DashboardController::class,
115 efrain 5868
            '\LeadersLinked\Controller\SelfEvaluationController' => \LeadersLinked\Controller\SelfEvaluationController::class,
5869
            '\LeadersLinked\Controller\SelfEvaluationFormController' => \LeadersLinked\Controller\SelfEvaluationFormController::class,
5870
            '\LeadersLinked\Controller\SelfEvaluationFormUserController' => \LeadersLinked\Controller\SelfEvaluationFormUserController::class,
247 geraldo 5871
            '\LeadersLinked\Controller\SelfEvaluationReviewController' => \LeadersLinked\Controller\SelfEvaluationReviewController::class,
4375 eleazar 5872
            '\LeadersLinked\Controller\SurveyController' => \LeadersLinked\Controller\SurveyController::class,
5873
            '\LeadersLinked\Controller\SurveyFormController' => \LeadersLinked\Controller\SurveyFormController::class,
5868 eleazar 5874
            '\LeadersLinked\Controller\SurveyReportController' => \LeadersLinked\Controller\SurveyReportController::class,
5287 eleazar 5875
            '\LeadersLinked\Controller\SurveyTestController' => \LeadersLinked\Controller\SurveyTestController::class,
7218 eleazar 5876
            '\LeadersLinked\Controller\OrganizationalClimateController' => \LeadersLinked\Controller\OrganizationalClimateController::class,
5877
            '\LeadersLinked\Controller\OrganizationalClimateFormController' => \LeadersLinked\Controller\OrganizationalClimateFormController::class,
5878
            '\LeadersLinked\Controller\OrganizationalClimateReportController' => \LeadersLinked\Controller\OrganizationalClimateReportController::class,
5879
            '\LeadersLinked\Controller\OrganizationalClimateTestController' => \LeadersLinked\Controller\OrganizationalClimateTestController::class,
982 geraldo 5880
            '\LeadersLinked\Controller\PerformanceEvaluationFormController' => \LeadersLinked\Controller\PerformanceEvaluationFormController::class,
1383 efrain 5881
            '\LeadersLinked\Controller\PerformanceEvaluationEvaluationController' => \LeadersLinked\Controller\PerformanceEvaluationEvaluationController::class,
1 www 5882
            '\LeadersLinked\Controller\MicrolearningController' => \LeadersLinked\Controller\MicrolearningController::class,
66 efrain 5883
            '\LeadersLinked\Controller\MicrolearningQuizController' => \LeadersLinked\Controller\MicrolearningQuizController::class,
5884
            '\LeadersLinked\Controller\MicrolearningQuestionController' => \LeadersLinked\Controller\MicrolearningQuestionController::class,
5885
            '\LeadersLinked\Controller\MicrolearningAnswerController' => \LeadersLinked\Controller\MicrolearningAnswerController::class,
1 www 5886
            '\LeadersLinked\Controller\MicrolearningTopicController' => \LeadersLinked\Controller\MicrolearningTopicController::class,
5887
            '\LeadersLinked\Controller\MicrolearningCapsuleController' => \LeadersLinked\Controller\MicrolearningCapsuleController::class,
5888
            '\LeadersLinked\Controller\MicrolearningSlideController' => \LeadersLinked\Controller\MicrolearningSlideController::class,
5889
            '\LeadersLinked\Controller\MicrolearningStudentsController' => \LeadersLinked\Controller\MicrolearningStudentsController::class,
5890
            '\LeadersLinked\Controller\MicrolearningAccessForStudentsController' => \LeadersLinked\Controller\MicrolearningAccessForStudentsController::class,
5891
            '\LeadersLinked\Controller\MicrolearningReportsController' => \LeadersLinked\Controller\MicrolearningReportsController::class,
5892
            '\LeadersLinked\Controller\MicrolearningExtendUserCompanyController' => \LeadersLinked\Controller\MicrolearningExtendUserCompanyController::class,
5893
            '\LeadersLinked\Controller\MicrolearningExtendUserFunctionController' => \LeadersLinked\Controller\MicrolearningExtendUserFunctionController::class,
5894
            '\LeadersLinked\Controller\MicrolearningExtendUserGroupController' => \LeadersLinked\Controller\MicrolearningExtendUserGroupController::class,
5895
            '\LeadersLinked\Controller\MicrolearningExtendUserInstitutionController' => \LeadersLinked\Controller\MicrolearningExtendUserInstitutionController::class,
5896
            '\LeadersLinked\Controller\MicrolearningExtendUserPartnerController' => \LeadersLinked\Controller\MicrolearningExtendUserPartnerController::class,
12792 eleazar 5897
            '\LeadersLinked\Controller\MicrolearningExtendUserStudentTypeController' => \LeadersLinked\Controller\MicrolearningExtendUserStudentTypeController::class,
1 www 5898
            '\LeadersLinked\Controller\MicrolearningExtendUserProgramController' => \LeadersLinked\Controller\MicrolearningExtendUserProgramController::class,
5899
            '\LeadersLinked\Controller\MicrolearningExtendUserSectorController' => \LeadersLinked\Controller\MicrolearningExtendUserSectorController::class,
9335 eleazar 5900
            '\LeadersLinked\Controller\MicrolearningExtendUserSectorController' => \LeadersLinked\Controller\MicrolearningExtendUserSectorController::class,
5901
            '\LeadersLinked\Controller\MyTrainerCategoriesController' => \LeadersLinked\Controller\MyTrainerCategoriesController::class,
12286 eleazar 5902
            '\LeadersLinked\Controller\MyTrainerQuestionViewController' => \LeadersLinked\Controller\MyTrainerQuestionViewController::class,
9350 eleazar 5903
            '\LeadersLinked\Controller\MyTrainerQuestionController' => \LeadersLinked\Controller\MyTrainerQuestionController::class,
10423 eleazar 5904
            '\LeadersLinked\Controller\MyTrainerAnswerController' => \LeadersLinked\Controller\MyTrainerAnswerController::class,
1 www 5905
            '\LeadersLinked\Controller\StorageController' => \LeadersLinked\Controller\StorageController::class,
15336 efrain 5906
            '\LeadersLinked\Controller\StorageNetworkController' => \LeadersLinked\Controller\StorageNetworkController::class,
2232 nelberth 5907
            '\LeadersLinked\Controller\PlanningObjectivesAndGoalsController' => \LeadersLinked\Controller\PlanningObjectivesAndGoalsController::class,
2228 nelberth 5908
            '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController' => \LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController::class,
2517 nelberth 5909
            '\LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController' => \LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController::class,
4377 nelberth 5910
            '\LeadersLinked\Controller\PlanningObjectivesAndGoalsGoalsController' => \LeadersLinked\Controller\PlanningObjectivesAndGoalsGoalsController::class,
15336 efrain 5911
            '\LeadersLinked\Controller\MyPrivateNetworkController' => \LeadersLinked\Controller\MyPrivateNetworkController::class,
5912
            '\LeadersLinked\Controller\PrivateNetworksController' => \LeadersLinked\Controller\PrivateNetworksController::class,
4377 nelberth 5913
            '\LeadersLinked\Controller\HighPerformanceTeamsController' => \LeadersLinked\Controller\HighPerformanceTeamsController::class,
7224 nelberth 5914
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsController::class,
7308 nelberth 5915
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewController::class,
12435 nelberth 5916
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController::class,
12736 nelberth 5917
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewGoalsController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewGoalsController::class,
12835 nelberth 5918
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController::class,
11898 nelberth 5919
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController::class,
7494 nelberth 5920
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController::class,
9095 nelberth 5921
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewCalendarController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewCalendarController::class,
9619 nelberth 5922
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController::class,
9764 nelberth 5923
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesController::class,
10143 nelberth 5924
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoController::class,
9921 nelberth 5925
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesViewController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesViewController::class,
7811 nelberth 5926
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController::class,
11340 nelberth 5927
            '\LeadersLinked\Controller\ChatController' => \LeadersLinked\Controller\ChatController::class,
13010 nelberth 5928
            '\LeadersLinked\Controller\CommunicationController' => \LeadersLinked\Controller\CommunicationController::class,
13675 nelberth 5929
            '\LeadersLinked\Controller\CommunicationInboxController' => \LeadersLinked\Controller\CommunicationInboxController::class,
13528 nelberth 5930
            '\LeadersLinked\Controller\InMailController' => \LeadersLinked\Controller\InMailController::class,
1333 efrain 5931
            '\LeadersLinked\Controller\UnknownController' => \LeadersLinked\Controller\UnknownController::class,
13014 nelberth 5932
            '\LeadersLinked\Controller\TestController' => \LeadersLinked\Controller\TestController::class,
1 www 5933
        ]
5934
    ],
5935
    'laminas-cli' => [
5936
        'commands' => [
1089 geraldo 5937
        ]
1 www 5938
    ],
5939
    'service_manager' => [
5940
        'abstract_factories' => [
5941
            \Laminas\Db\Adapter\AdapterAbstractServiceFactory::class
5942
        ],
5943
        'factories' => [
5944
            'RenderingStrategy' => function ($container) {
5945
                $translator = $container->get('MvcTranslator');
5946
                return new \LeadersLinked\View\RenderingStrategy($translator);
5947
            },
5948
            'menuNavigation' => \LeadersLinked\Navigation\MenuNavigation::class,
5949
            'footerNavigation' => \LeadersLinked\Navigation\FooterNavigation::class,
1089 geraldo 5950
        ],
5951
        'aliases' => [// 'leaders-linked-storage' => \LeadersLinked\Service\StorageService::class
1 www 5952
        ]
5953
    ],
5954
    'view_helpers' => [
5955
        'factories' => [
11351 nelberth 5956
            \LeadersLinked\Helper\ChatHelper::class => \LeadersLinked\Factory\Helper\ChatHelperFactory::class,
1 www 5957
            \LeadersLinked\Helper\CurrentUserHelper::class => \LeadersLinked\Factory\Helper\CurrentUserHelperFactory::class,
15336 efrain 5958
            \LeadersLinked\Helper\CurrentNetworkHelper::class => \LeadersLinked\Factory\Helper\CurrentNetworkHelperFactory::class,
5959
            \LeadersLinked\Helper\NetworkFavicoHelper::class => \LeadersLinked\Factory\Helper\NetworkFavicoHelperFactory::class,
5960
            \LeadersLinked\Helper\NetworkIntroHelper::class => \LeadersLinked\Factory\Helper\NetworkIntroHelperFactory::class,
5961
            \LeadersLinked\Helper\NetworkLogoHelper::class => \LeadersLinked\Factory\Helper\NetworkLogoHelperFactory::class,
5962
            \LeadersLinked\Helper\NetworkNavbarHelper::class => \LeadersLinked\Factory\Helper\NetworkNavbarHelperFactory::class,
5963
            \LeadersLinked\Helper\NetworkStylesAndColorsHelper::class => \LeadersLinked\Factory\Helper\NetworkStylesAndColorsHelperFactory::class,
5964
 
1 www 5965
        ],
5966
        'invokables' => [
11527 nelberth 5967
            'chatHelper' => \LeadersLinked\Helper\ChatHelper::class,
1 www 5968
            'menuHelper' => \LeadersLinked\Helper\MenuHelper::class,
5969
        ],
5970
        'aliases' => [
11527 nelberth 5971
 
1 www 5972
            'currentUserHelper' => \LeadersLinked\Helper\CurrentUserHelper::class,
15336 efrain 5973
            'currentNetworkHelper' =>  \LeadersLinked\Helper\CurrentNetworkHelper::class,
5974
            'networkFavicoHelper'  => \LeadersLinked\Helper\NetworkFavicoHelper::class,
5975
            'networkIntroHelper' => \LeadersLinked\Helper\NetworkIntroHelper::class,
5976
            'networkLogoHelper'  => \LeadersLinked\Helper\NetworkLogoHelper::class,
5977
            'networkNavbarHelper'  => \LeadersLinked\Helper\NetworkNavbarHelper::class,
5978
            'networkStylesAndColorsHelper'  => \LeadersLinked\Helper\NetworkStylesAndColorsHelper::class,
4600 nelberth 5979
 
15336 efrain 5980
 
1 www 5981
        ]
5982
    ],
5983
    'controller_plugins' => [
5984
        'invokables' => [],
5985
        'factories' => [
15336 efrain 5986
            \LeadersLinked\Plugin\CurrentUserPlugin::class => \LeadersLinked\Factory\Plugin\CurrentUserPluginFactory::class,
5987
            \LeadersLinked\Plugin\CurrentNetworkPlugin::class => \LeadersLinked\Factory\Plugin\CurrentNetworkPluginFactory::class,
1 www 5988
        ],
5989
        'aliases' => [
15336 efrain 5990
            'currentUserPlugin' => \LeadersLinked\Plugin\CurrentUserPlugin::class,
5991
            'currentNetworkPlugin' => \LeadersLinked\Plugin\CurrentNetworkPlugin::class,
1 www 5992
        ]
5993
    ],
5994
    'view_manager' => [
5995
        'display_not_found_reason' => true,
5996
        'display_exceptions' => true,
5997
        'doctype' => 'HTML5',
5998
        'not_found_template' => 'error/404',
5999
        'exception_template' => 'error/index',
6000
        'template_map' => [
6001
            'layout/layout' => __DIR__ . '/../view/layout/layout.phtml',
6002
            'error/404' => __DIR__ . '/../view/error/404.phtml',
6003
            'error/index' => __DIR__ . '/../view/error/index.phtml'
6004
        ],
6005
        'template_path_stack' => [
6006
            __DIR__ . '/../view'
6007
        ],
6008
        'strategies' => [
6009
            'ViewJsonStrategy',
6010
            'RenderingStrategy'
6011
        ]
6012
    ]
6013
];
6014