Proyectos de Subversion LeadersLinked - Backend

Rev

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