Proyectos de Subversion LeadersLinked - Backend

Rev

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