Proyectos de Subversion LeadersLinked - Backend

Rev

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