Proyectos de Subversion LeadersLinked - Backend

Rev

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