Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16767 | Rev 16785 | 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' => [
16770 efrain 3063
                        'type' => Segment::class,
15336 efrain 3064
                        'options' => [
16770 efrain 3065
                            'route' => '/add[/:id]',
3066
                            'constraints' => [
3067
                                'id' => '[A-Za-z0-9\-]+\=*'
3068
                            ],
15336 efrain 3069
                            'defaults' => [
15442 efrain 3070
                                'controller' => '\LeadersLinked\Controller\JobDescriptionController',
3071
                                'action' => 'add'
15336 efrain 3072
                            ]
15442 efrain 3073
                        ]
3074
                    ],
3075
                    'edit' => [
3076
                        'type' => Segment::class,
3077
                        'options' => [
3078
                            'route' => '/edit/:id',
3079
                            'constraints' => [
3080
                                'id' => '[A-Za-z0-9\-]+\=*'
15336 efrain 3081
                            ],
15442 efrain 3082
                            'defaults' => [
3083
                                'controller' => '\LeadersLinked\Controller\JobDescriptionController',
3084
                                'action' => 'edit'
3085
                            ]
15336 efrain 3086
                        ]
3087
                    ],
15442 efrain 3088
                    'delete' => [
3089
                        'type' => Segment::class,
15336 efrain 3090
                        'options' => [
15442 efrain 3091
                            'route' => '/delete/:id',
3092
                            'constraints' => [
3093
                                'id' => '[A-Za-z0-9\-]+\=*'
3094
                            ],
15336 efrain 3095
                            'defaults' => [
15442 efrain 3096
                                'controller' => '\LeadersLinked\Controller\JobDescriptionController',
3097
                                'action' => 'delete'
15336 efrain 3098
                            ]
15442 efrain 3099
                        ]
3100
                    ],
3101
                    'report' => [
3102
                        'type' => Segment::class,
3103
                        'options' => [
3104
                            'route' => '/report/:id',
3105
                            'constraints' => [
3106
                                'id' => '[A-Za-z0-9\-]+\=*'
15336 efrain 3107
                            ],
15442 efrain 3108
                            'defaults' => [
3109
                                'controller' => '\LeadersLinked\Controller\JobDescriptionController',
3110
                                'action' => 'report'
15336 efrain 3111
                            ]
3112
                        ]
3113
                    ],
15442 efrain 3114
                    'import' => [
1 www 3115
                        'type' => Literal::class,
3116
                        'options' => [
15442 efrain 3117
                            'route' => '/import',
1 www 3118
                            'defaults' => [
15442 efrain 3119
                                'controller' => '\LeadersLinked\Controller\JobDescriptionController',
3120
                                'action' => 'import'
1 www 3121
                            ]
3122
                        ]
3123
                    ],
3124
                    'competency-types' => [
3125
                        'type' => Literal::class,
3126
                        'options' => [
3127
                            'route' => '/competency-types',
3128
                            'defaults' => [
3129
                                'controller' => '\LeadersLinked\Controller\CompetencyTypeController',
3130
                                'action' => 'index'
3131
                            ]
3132
                        ],
3133
                        'may_terminate' => true,
3134
                        'child_routes' => [
3135
                            'add' => [
3136
                                'type' => Literal::class,
3137
                                'options' => [
3138
                                    'route' => '/add',
3139
                                    'defaults' => [
3140
                                        'controller' => '\LeadersLinked\Controller\CompetencyTypeController',
3141
                                        'action' => 'add'
3142
                                    ]
3143
                                ]
3144
                            ],
3145
                            'edit' => [
3146
                                'type' => Segment::class,
3147
                                'options' => [
3148
                                    'route' => '/edit/:id',
3149
                                    'constraints' => [
3150
                                        'id' => '[A-Za-z0-9\-]+\=*'
3151
                                    ],
3152
                                    'defaults' => [
3153
                                        'controller' => '\LeadersLinked\Controller\CompetencyTypeController',
3154
                                        'action' => 'edit'
3155
                                    ]
3156
                                ]
3157
                            ],
3158
                            'delete' => [
3159
                                'type' => Segment::class,
3160
                                'options' => [
3161
                                    'route' => '/delete/:id',
3162
                                    'constraints' => [
3163
                                        'id' => '[A-Za-z0-9\-]+\=*'
3164
                                    ],
3165
                                    'defaults' => [
3166
                                        'controller' => '\LeadersLinked\Controller\CompetencyTypeController',
3167
                                        'action' => 'delete'
3168
                                    ]
3169
                                ]
28 efrain 3170
                            ],
3171
                            'import' => [
3172
                                'type' => Literal::class,
3173
                                'options' => [
3174
                                    'route' => '/import',
3175
                                    'defaults' => [
3176
                                        'controller' => '\LeadersLinked\Controller\CompetencyTypeController',
3177
                                        'action' => 'import'
3178
                                    ]
3179
                                ]
3180
                            ],
1 www 3181
                        ]
3182
                    ],
1104 geraldo 3183
                    'behaviors' => [
3184
                        'type' => Literal::class,
3185
                        'options' => [
3186
                            'route' => '/behaviors',
3187
                            'defaults' => [
3188
                                'controller' => '\LeadersLinked\Controller\BehaviorsController',
3189
                                'action' => 'index'
3190
                            ]
3191
                        ],
3192
                        'may_terminate' => true,
3193
                        'child_routes' => [
3194
                            'add' => [
3195
                                'type' => Literal::class,
3196
                                'options' => [
14989 efrain 3197
                                    'route' => '/add[/inline/:inline]',
3198
                                    'constraints' => [
3199
                                        'inline' => 'yes|no'
3200
                                    ],
1104 geraldo 3201
                                    'defaults' => [
3202
                                        'controller' => '\LeadersLinked\Controller\BehaviorsController',
3203
                                        'action' => 'add'
3204
                                    ]
3205
                                ]
1115 geraldo 3206
                            ],
3207
                            'edit' => [
3208
                                'type' => Segment::class,
3209
                                'options' => [
3210
                                    'route' => '/edit/:id',
3211
                                    'constraints' => [
3212
                                        'id' => '[A-Za-z0-9\-]+\=*'
3213
                                    ],
3214
                                    'defaults' => [
3215
                                        'controller' => '\LeadersLinked\Controller\BehaviorsController',
3216
                                        'action' => 'edit'
3217
                                    ]
3218
                                ]
3219
                            ],
14280 kerby 3220
                            'delete' => [
3221
                                'type' => Segment::class,
3222
                                'options' => [
14875 efrain 3223
                                    'route' => '/delete/:id',
14280 kerby 3224
                                    'constraints' => [
14292 kerby 3225
                                        'id' => '[A-Za-z0-9\-]+\=*'
14280 kerby 3226
                                    ],
3227
                                    'defaults' => [
3228
                                        'controller' => '\LeadersLinked\Controller\BehaviorsController',
3229
                                        'action' => 'delete'
3230
                                    ]
3231
                                ]
14875 efrain 3232
                            ],
3233
                            'import' => [
3234
                                'type' => Literal::class,
3235
                                'options' => [
3236
                                    'route' => '/import',
3237
                                    'defaults' => [
3238
                                        'controller' => '\LeadersLinked\Controller\BehaviorsController',
3239
                                        'action' => 'import'
3240
                                    ]
3241
                                ]
3242
                            ],
15607 anderson 3243
 
1104 geraldo 3244
                        ]
3245
                    ],
1 www 3246
                    'competencies' => [
3247
                        'type' => Literal::class,
3248
                        'options' => [
3249
                            'route' => '/competencies',
3250
                            'defaults' => [
3251
                                'controller' => '\LeadersLinked\Controller\CompetencyController',
3252
                                'action' => 'index'
3253
                            ]
3254
                        ],
3255
                        'may_terminate' => true,
3256
                        'child_routes' => [
3257
                            'add' => [
3258
                                'type' => Literal::class,
3259
                                'options' => [
3260
                                    'route' => '/add',
3261
                                    'defaults' => [
3262
                                        'controller' => '\LeadersLinked\Controller\CompetencyController',
3263
                                        'action' => 'add'
3264
                                    ]
3265
                                ]
3266
                            ],
3267
                            'edit' => [
3268
                                'type' => Segment::class,
3269
                                'options' => [
3270
                                    'route' => '/edit/:id',
3271
                                    'constraints' => [
3272
                                        'id' => '[A-Za-z0-9\-]+\=*'
3273
                                    ],
3274
                                    'defaults' => [
3275
                                        'controller' => '\LeadersLinked\Controller\CompetencyController',
3276
                                        'action' => 'edit'
3277
                                    ]
3278
                                ]
3279
                            ],
3280
                            'delete' => [
3281
                                'type' => Segment::class,
3282
                                'options' => [
3283
                                    'route' => '/delete/:id',
3284
                                    'constraints' => [
3285
                                        'id' => '[A-Za-z0-9\-]+\=*'
3286
                                    ],
3287
                                    'defaults' => [
3288
                                        'controller' => '\LeadersLinked\Controller\CompetencyController',
3289
                                        'action' => 'delete'
3290
                                    ]
3291
                                ]
28 efrain 3292
                            ],
3293
                            'import' => [
3294
                                'type' => Literal::class,
3295
                                'options' => [
3296
                                    'route' => '/import',
3297
                                    'defaults' => [
3298
                                        'controller' => '\LeadersLinked\Controller\CompetencyController',
3299
                                        'action' => 'import'
3300
                                    ]
3301
                                ]
3302
                            ],
14875 efrain 3303
                            'behaviors' => [
3304
                                'type' => Segment::class,
3305
                                'options' => [
3306
                                    'route' => '/behaviors/:id',
3307
                                    'constraints' => [
3308
                                        'id' => '[A-Za-z0-9\-]+\=*'
3309
                                    ],
3310
                                    'defaults' => [
3311
                                        'controller' => '\LeadersLinked\Controller\CompetencyController',
3312
                                        'action' => 'behaviors'
3313
                                    ]
3314
                                ],
3315
                                'child_routes' => [
3316
                                    'add' => [
3317
                                        'type' => Literal::class,
3318
                                        'options' => [
3319
                                            'route' => '/add',
3320
                                            'defaults' => [
3321
                                                'controller' => '\LeadersLinked\Controller\CompetencyController',
3322
                                                'action' => 'behaviorAdd'
3323
                                            ]
3324
                                        ]
3325
                                    ],
3326
                                    'set' => [
3327
                                        'type' => Segment::class,
3328
                                        'options' => [
3329
                                            'route' => '/set/:behavior_id',
3330
                                            'constraints' => [
3331
                                                'behavior_id' => '[A-Za-z0-9\-]+\=*'
3332
                                            ],
3333
                                            'defaults' => [
3334
                                                'controller' => '\LeadersLinked\Controller\CompetencyController',
3335
                                                'action' => 'behaviorSet'
3336
                                            ]
3337
                                        ]
3338
                                    ],
3339
                                    'unset' => [
3340
                                        'type' => Segment::class,
3341
                                        'options' => [
3342
                                            'route' => '/unset/:behavior_id',
3343
                                            'constraints' => [
3344
                                                'behavior_id' => '[A-Za-z0-9\-]+\=*'
3345
                                            ],
3346
                                            'defaults' => [
3347
                                                'controller' => '\LeadersLinked\Controller\CompetencyController',
3348
                                                'action' => 'behaviorUnset'
3349
                                            ]
3350
                                        ]
3351
                                    ],
3352
                                ]
3353
                            ],
1 www 3354
                        ]
3355
                    ],
16766 efrain 3356
 
3357
                ]
3358
            ],
3359
 
3360
            /* END JOBS DESCRIPTION */
3361
 
3362
 
16770 efrain 3363
            /**** ORGANIZATION  START ****/
3364
            'organization' => [
16766 efrain 3365
                'type' => Literal::class,
3366
                'options' => [
16770 efrain 3367
                    'route' => '/organization',
16766 efrain 3368
                    'defaults' => [
3369
                        'controller' => '\LeadersLinked\Controller\OrganizationChartController',
3370
                        'action' => 'index'
3371
                    ]
3372
                ],
3373
                'may_terminate' => true,
3374
                'child_routes' => [
15457 efrain 3375
                    'positions' => [
3376
                        'type' => Literal::class,
3377
                        'options' => [
3378
                            'route' => '/positions',
3379
                            'defaults' => [
16770 efrain 3380
                                'controller' => '\LeadersLinked\Controller\OrganizationPositionController',
15457 efrain 3381
                                'action' => 'index'
3382
                            ]
3383
                        ],
3384
                        'may_terminate' => true,
3385
                        'child_routes' => [
3386
                            'add' => [
16770 efrain 3387
                                'type' => Segment::class,
15457 efrain 3388
                                'options' => [
16770 efrain 3389
                                    'route' => '/add/:job_description_id',
3390
                                    'constraints' => [
3391
                                        'job_description_id' => '[A-Za-z0-9\-]+\=*'
3392
                                    ],
15457 efrain 3393
                                    'defaults' => [
16770 efrain 3394
                                        'controller' => '\LeadersLinked\Controller\OrganizationPositionController',
15457 efrain 3395
                                        'action' => 'add'
3396
                                    ]
3397
                                ]
3398
                            ],
3399
                            'edit' => [
3400
                                'type' => Segment::class,
3401
                                'options' => [
3402
                                    'route' => '/edit/:id',
3403
                                    'constraints' => [
3404
                                        'id' => '[A-Za-z0-9\-]+\=*'
3405
                                    ],
3406
                                    'defaults' => [
16770 efrain 3407
                                        'controller' => '\LeadersLinked\Controller\OrganizationPositionController',
15457 efrain 3408
                                        'action' => 'edit'
3409
                                    ]
3410
                                ]
3411
                            ],
3412
                            'delete' => [
3413
                                'type' => Segment::class,
3414
                                'options' => [
3415
                                    'route' => '/delete/:id',
3416
                                    'constraints' => [
3417
                                        'id' => '[A-Za-z0-9\-]+\=*'
3418
                                    ],
3419
                                    'defaults' => [
16770 efrain 3420
                                        'controller' => '\LeadersLinked\Controller\OrganizationPositionController',
15457 efrain 3421
                                        'action' => 'delete'
3422
                                    ]
3423
                                ]
3424
                            ],
3425
                            'subordinates' => [
3426
                                'type' => Segment::class,
3427
                                'options' => [
16766 efrain 3428
                                    'route' => '/subordinates/:id',
15457 efrain 3429
                                    'constraints' => [
16766 efrain 3430
                                        'id' => '[A-Za-z0-9\-]+\=*'
15457 efrain 3431
                                    ],
3432
                                    'defaults' => [
16770 efrain 3433
                                        'controller' => '\LeadersLinked\Controller\OrganizationPositionController',
15457 efrain 3434
                                        'action' => 'subordinates'
3435
                                    ]
16766 efrain 3436
                                ],
3437
                                'may_terminate' => true,
3438
                                'child_routes' => [
3439
                                ],
15457 efrain 3440
                            ],
3441
                        ]
3442
                    ],
16766 efrain 3443
                ]
15442 efrain 3444
            ],
16766 efrain 3445
 
3446
 
3447
            /**** ORIGANIZATION CHART END ****/
15607 anderson 3448
 
3449
 
15442 efrain 3450
            /*             * * START SETTINGS ** */
3451
            'settings' => [
3452
                'type' => Literal::class,
3453
                'options' => [
3454
                    'route' => '/settings',
3455
                    'defaults' => [
3456
                        'controller' => '\LeadersLinked\Controller\DashboardController',
3457
                        'action' => 'index'
3458
                    ]
3459
                ],
3460
                'may_terminate' => true,
3461
                'child_routes' => [
3462
                    'my-private-network' => [
3463
                        'type' => Literal::class,
3464
                        'options' => [
3465
                            'route' => '/my-private-network',
3466
                            'defaults' => [
3467
                                'controller' => '\LeadersLinked\Controller\MyPrivateNetworkController',
3468
                                'action' => 'index'
3469
                            ]
3470
                        ],
3471
                        'may_terminate' => true,
3472
                        'child_routes' => [
3473
                            'intro' => [
3474
                                'type' => Literal::class,
3475
                                'options' => [
3476
                                    'route' => '/intro',
3477
                                    'defaults' => [
3478
                                        'controller' =>  '\LeadersLinked\Controller\MyPrivateNetworkController',
3479
                                        'action' => 'intro'
3480
                                    ]
3481
                                ]
3482
                            ],
3483
                            'calendar' => [
3484
                                'type' => Literal::class,
3485
                                'options' => [
3486
                                    'route' => '/calendar',
3487
                                    'defaults' => [
3488
                                        'controller' =>  '\LeadersLinked\Controller\MyPrivateNetworkController',
3489
                                        'action' => 'calendar'
3490
                                    ]
3491
                                ]
3492
                            ],
3493
                            'styles-and-colors' => [
3494
                                'type' => Literal::class,
3495
                                'options' => [
3496
                                    'route' => '/styles-and-colors',
3497
                                    'defaults' => [
3498
                                        'controller' =>  '\LeadersLinked\Controller\MyPrivateNetworkController',
3499
                                        'action' => 'stylesAndColors'
3500
                                    ]
3501
                                ]
3502
                            ],
3503
                            'navbar' => [
3504
                                'type' => Literal::class,
3505
                                'options' => [
3506
                                    'route' => '/navbar',
3507
                                    'defaults' => [
3508
                                        'controller' =>  '\LeadersLinked\Controller\MyPrivateNetworkController',
3509
                                        'action' => 'navbar'
3510
                                    ]
3511
                                ]
3512
                            ],
3513
                            'favicon' => [
3514
                                'type' => Literal::class,
3515
                                'options' => [
3516
                                    'route' => '/favicon',
3517
                                    'defaults' => [
3518
                                        'controller' =>  '\LeadersLinked\Controller\MyPrivateNetworkController',
3519
                                        'action' => 'favicon'
3520
                                    ]
3521
                                ]
3522
                            ],
3523
                            'logo' => [
3524
                                'type' => Literal::class,
3525
                                'options' => [
3526
                                    'route' => '/logo',
3527
                                    'defaults' => [
3528
                                        'controller' =>  '\LeadersLinked\Controller\MyPrivateNetworkController',
3529
                                        'action' => 'logo'
3530
                                    ]
3531
                                ]
3532
                            ],
15831 efrain 3533
                            'moodle' => [
3534
                                'type' => Literal::class,
3535
                                'options' => [
3536
                                    'route' => '/moodle',
3537
                                    'defaults' => [
3538
                                        'controller' =>  '\LeadersLinked\Controller\MyPrivateNetworkController',
3539
                                        'action' => 'moodle'
3540
                                    ]
3541
                                ]
3542
                            ],
15607 anderson 3543
 
15442 efrain 3544
                        ]
3545
                    ],
15607 anderson 3546
 
15442 efrain 3547
                    'private-networks' => [
1 www 3548
                        'type' => Literal::class,
3549
                        'options' => [
15442 efrain 3550
                            'route' => '/private-networks',
1 www 3551
                            'defaults' => [
15442 efrain 3552
                                'controller' => '\LeadersLinked\Controller\PrivateNetworksController',
1 www 3553
                                'action' => 'index'
3554
                            ]
3555
                        ],
3556
                        'may_terminate' => true,
3557
                        'child_routes' => [
3558
                            'add' => [
3559
                                'type' => Literal::class,
3560
                                'options' => [
3561
                                    'route' => '/add',
3562
                                    'defaults' => [
15442 efrain 3563
                                        'controller' => '\LeadersLinked\Controller\PrivateNetworksController',
1 www 3564
                                        'action' => 'add'
3565
                                    ]
3566
                                ]
3567
                            ],
3568
                            'edit' => [
3569
                                'type' => Segment::class,
3570
                                'options' => [
3571
                                    'route' => '/edit/:id',
3572
                                    'constraints' => [
3573
                                        'id' => '[A-Za-z0-9\-]+\=*'
3574
                                    ],
3575
                                    'defaults' => [
15442 efrain 3576
                                        'controller' => '\LeadersLinked\Controller\PrivateNetworksController',
1 www 3577
                                        'action' => 'edit'
3578
                                    ]
3579
                                ]
3580
                            ],
3581
                            'delete' => [
3582
                                'type' => Segment::class,
3583
                                'options' => [
3584
                                    'route' => '/delete/:id',
3585
                                    'constraints' => [
3586
                                        'id' => '[A-Za-z0-9\-]+\=*'
3587
                                    ],
3588
                                    'defaults' => [
15442 efrain 3589
                                        'controller' => '\LeadersLinked\Controller\PrivateNetworksController',
1 www 3590
                                        'action' => 'delete'
3591
                                    ]
3592
                                ]
3593
                            ]
3594
                        ]
3595
                    ],
15442 efrain 3596
                    'company-sizes' => [
1 www 3597
                        'type' => Literal::class,
3598
                        'options' => [
15442 efrain 3599
                            'route' => '/company-sizes',
1 www 3600
                            'defaults' => [
15442 efrain 3601
                                'controller' => '\LeadersLinked\Controller\CompanySizeController',
1 www 3602
                                'action' => 'index'
3603
                            ]
3604
                        ],
3605
                        'may_terminate' => true,
3606
                        'child_routes' => [
3607
                            'add' => [
3608
                                'type' => Literal::class,
3609
                                'options' => [
3610
                                    'route' => '/add',
3611
                                    'defaults' => [
15442 efrain 3612
                                        'controller' => '\LeadersLinked\Controller\CompanySizeController',
1 www 3613
                                        'action' => 'add'
3614
                                    ]
3615
                                ]
3616
                            ],
3617
                            'edit' => [
3618
                                'type' => Segment::class,
3619
                                'options' => [
3620
                                    'route' => '/edit/:id',
3621
                                    'constraints' => [
3622
                                        'id' => '[A-Za-z0-9\-]+\=*'
3623
                                    ],
3624
                                    'defaults' => [
15442 efrain 3625
                                        'controller' => '\LeadersLinked\Controller\CompanySizeController',
1 www 3626
                                        'action' => 'edit'
3627
                                    ]
3628
                                ]
3629
                            ],
3630
                            'delete' => [
3631
                                'type' => Segment::class,
3632
                                'options' => [
3633
                                    'route' => '/delete/:id',
3634
                                    'constraints' => [
3635
                                        'id' => '[A-Za-z0-9\-]+\=*'
3636
                                    ],
3637
                                    'defaults' => [
15442 efrain 3638
                                        'controller' => '\LeadersLinked\Controller\CompanySizeController',
1 www 3639
                                        'action' => 'delete'
3640
                                    ]
3641
                                ]
3642
                            ]
3643
                        ]
3644
                    ],
15607 anderson 3645
 
3646
 
15460 efrain 3647
                    'countries' => [
3648
                        'type' => Literal::class,
3649
                        'options' => [
3650
                            'route' => '/countries',
3651
                            'defaults' => [
3652
                                'controller' => '\LeadersLinked\Controller\CountriesController',
3653
                                'action' => 'index'
3654
                            ]
3655
                        ],
3656
                        'may_terminate' => true,
3657
                        'child_routes' => [
3658
                            'add' => [
3659
                                'type' => Literal::class,
3660
                                'options' => [
3661
                                    'route' => '/add',
3662
                                    'defaults' => [
3663
                                        'controller' => '\LeadersLinked\Controller\CountriesController',
3664
                                        'action' => 'add'
3665
                                    ]
3666
                                ]
3667
                            ],
3668
                            'edit' => [
3669
                                'type' => Segment::class,
3670
                                'options' => [
3671
                                    'route' => '/edit/:id',
3672
                                    'constraints' => [
3673
                                        'id' => '[A-Za-z0-9\-]+\=*'
3674
                                    ],
3675
                                    'defaults' => [
3676
                                        'controller' => '\LeadersLinked\Controller\CountriesController',
3677
                                        'action' => 'edit'
3678
                                    ]
3679
                                ]
3680
                            ],
3681
                            'delete' => [
3682
                                'type' => Segment::class,
3683
                                'options' => [
3684
                                    'route' => '/delete/:id',
3685
                                    'constraints' => [
3686
                                        'id' => '[A-Za-z0-9\-]+\=*'
3687
                                    ],
3688
                                    'defaults' => [
3689
                                        'controller' => '\LeadersLinked\Controller\CountriesController',
3690
                                        'action' => 'delete'
3691
                                    ]
3692
                                ]
3693
                            ]
3694
                        ]
3695
                    ],
15607 anderson 3696
 
3697
 
15442 efrain 3698
                    'degrees' => [
1 www 3699
                        'type' => Literal::class,
3700
                        'options' => [
15442 efrain 3701
                            'route' => '/degrees',
1 www 3702
                            'defaults' => [
15442 efrain 3703
                                'controller' => '\LeadersLinked\Controller\DegreeController',
1 www 3704
                                'action' => 'index'
3705
                            ]
3706
                        ],
3707
                        'may_terminate' => true,
3708
                        'child_routes' => [
3709
                            'add' => [
3710
                                'type' => Literal::class,
3711
                                'options' => [
3712
                                    'route' => '/add',
3713
                                    'defaults' => [
15442 efrain 3714
                                        'controller' => '\LeadersLinked\Controller\DegreeController',
1 www 3715
                                        'action' => 'add'
3716
                                    ]
3717
                                ]
3718
                            ],
3719
                            'edit' => [
3720
                                'type' => Segment::class,
3721
                                'options' => [
3722
                                    'route' => '/edit/:id',
3723
                                    'constraints' => [
3724
                                        'id' => '[A-Za-z0-9\-]+\=*'
3725
                                    ],
3726
                                    'defaults' => [
15442 efrain 3727
                                        'controller' => '\LeadersLinked\Controller\DegreeController',
1 www 3728
                                        'action' => 'edit'
3729
                                    ]
3730
                                ]
3731
                            ],
3732
                            'delete' => [
3733
                                'type' => Segment::class,
3734
                                'options' => [
3735
                                    'route' => '/delete/:id',
3736
                                    'constraints' => [
3737
                                        'id' => '[A-Za-z0-9\-]+\=*'
3738
                                    ],
3739
                                    'defaults' => [
15442 efrain 3740
                                        'controller' => '\LeadersLinked\Controller\DegreeController',
1 www 3741
                                        'action' => 'delete'
3742
                                    ]
3743
                                ]
3744
                            ]
3745
                        ]
3746
                    ],
3747
                    'group-types' => [
3748
                        'type' => Literal::class,
3749
                        'options' => [
15442 efrain 3750
                            'route' => '/competency-types',
1 www 3751
                            'defaults' => [
3752
                                'controller' => '\LeadersLinked\Controller\GroupTypeController',
3753
                                'action' => 'index'
3754
                            ]
3755
                        ],
3756
                        'may_terminate' => true,
3757
                        'child_routes' => [
3758
                            'add' => [
3759
                                'type' => Literal::class,
3760
                                'options' => [
3761
                                    'route' => '/add',
3762
                                    'defaults' => [
3763
                                        'controller' => '\LeadersLinked\Controller\GroupTypeController',
3764
                                        'action' => 'add'
3765
                                    ]
3766
                                ]
3767
                            ],
3768
                            'edit' => [
3769
                                'type' => Segment::class,
3770
                                'options' => [
3771
                                    'route' => '/edit/:id',
3772
                                    'constraints' => [
3773
                                        'id' => '[A-Za-z0-9\-]+\=*'
3774
                                    ],
3775
                                    'defaults' => [
3776
                                        'controller' => '\LeadersLinked\Controller\GroupTypeController',
3777
                                        'action' => 'edit'
3778
                                    ]
3779
                                ]
3780
                            ],
3781
                            'delete' => [
3782
                                'type' => Segment::class,
3783
                                'options' => [
3784
                                    'route' => '/delete/:id',
3785
                                    'constraints' => [
3786
                                        'id' => '[A-Za-z0-9\-]+\=*'
3787
                                    ],
3788
                                    'defaults' => [
3789
                                        'controller' => '\LeadersLinked\Controller\GroupTypeController',
3790
                                        'action' => 'delete'
3791
                                    ]
3792
                                ]
3793
                            ]
3794
                        ]
3795
                    ],
15442 efrain 3796
                    'industries' => [
1 www 3797
                        'type' => Literal::class,
3798
                        'options' => [
15442 efrain 3799
                            'route' => '/industries',
1 www 3800
                            'defaults' => [
15442 efrain 3801
                                'controller' => '\LeadersLinked\Controller\IndustryController',
1 www 3802
                                'action' => 'index'
3803
                            ]
3804
                        ],
3805
                        'may_terminate' => true,
3806
                        'child_routes' => [
3807
                            'add' => [
3808
                                'type' => Literal::class,
3809
                                'options' => [
3810
                                    'route' => '/add',
3811
                                    'defaults' => [
15442 efrain 3812
                                        'controller' => '\LeadersLinked\Controller\IndustryController',
1 www 3813
                                        'action' => 'add'
3814
                                    ]
3815
                                ]
3816
                            ],
3817
                            'edit' => [
3818
                                'type' => Segment::class,
3819
                                'options' => [
3820
                                    'route' => '/edit/:id',
3821
                                    'constraints' => [
3822
                                        'id' => '[A-Za-z0-9\-]+\=*'
3823
                                    ],
3824
                                    'defaults' => [
15442 efrain 3825
                                        'controller' => '\LeadersLinked\Controller\IndustryController',
1 www 3826
                                        'action' => 'edit'
3827
                                    ]
3828
                                ]
3829
                            ],
3830
                            'delete' => [
3831
                                'type' => Segment::class,
3832
                                'options' => [
3833
                                    'route' => '/delete/:id',
3834
                                    'constraints' => [
3835
                                        'id' => '[A-Za-z0-9\-]+\=*'
3836
                                    ],
3837
                                    'defaults' => [
15442 efrain 3838
                                        'controller' => '\LeadersLinked\Controller\IndustryController',
1 www 3839
                                        'action' => 'delete'
3840
                                    ]
3841
                                ]
3842
                            ]
3843
                        ]
3844
                    ],
15442 efrain 3845
                    'group-types' => [
28 efrain 3846
                        'type' => Literal::class,
3847
                        'options' => [
15442 efrain 3848
                            'route' => '/group-types',
28 efrain 3849
                            'defaults' => [
15442 efrain 3850
                                'controller' => '\LeadersLinked\Controller\GroupTypeController',
28 efrain 3851
                                'action' => 'index'
3852
                            ]
3853
                        ],
3854
                        'may_terminate' => true,
3855
                        'child_routes' => [
3856
                            'add' => [
3857
                                'type' => Literal::class,
3858
                                'options' => [
3859
                                    'route' => '/add',
3860
                                    'defaults' => [
15442 efrain 3861
                                        'controller' => '\LeadersLinked\Controller\GroupTypeController',
28 efrain 3862
                                        'action' => 'add'
3863
                                    ]
3864
                                ]
3865
                            ],
3866
                            'edit' => [
3867
                                'type' => Segment::class,
3868
                                'options' => [
3869
                                    'route' => '/edit/:id',
3870
                                    'constraints' => [
3871
                                        'id' => '[A-Za-z0-9\-]+\=*'
3872
                                    ],
3873
                                    'defaults' => [
15442 efrain 3874
                                        'controller' => '\LeadersLinked\Controller\GroupTypeController',
28 efrain 3875
                                        'action' => 'edit'
3876
                                    ]
3877
                                ]
3878
                            ],
3879
                            'delete' => [
3880
                                'type' => Segment::class,
3881
                                'options' => [
3882
                                    'route' => '/delete/:id',
3883
                                    'constraints' => [
3884
                                        'id' => '[A-Za-z0-9\-]+\=*'
3885
                                    ],
3886
                                    'defaults' => [
15442 efrain 3887
                                        'controller' => '\LeadersLinked\Controller\GroupTypeController',
28 efrain 3888
                                        'action' => 'delete'
3889
                                    ]
3890
                                ]
15442 efrain 3891
                            ]
3892
                        ]
3893
                    ],
3894
                    'job-categories' => [
3895
                        'type' => Literal::class,
3896
                        'options' => [
3897
                            'route' => '/job-categories',
3898
                            'defaults' => [
3899
                                'controller' => '\LeadersLinked\Controller\JobCategoryController',
3900
                                'action' => 'index'
3901
                            ]
3902
                        ],
3903
                        'may_terminate' => true,
3904
                        'child_routes' => [
3905
                            'add' => [
3906
                                'type' => Literal::class,
3907
                                'options' => [
3908
                                    'route' => '/add',
3909
                                    'defaults' => [
3910
                                        'controller' => '\LeadersLinked\Controller\JobCategoryController',
3911
                                        'action' => 'add'
3912
                                    ]
3913
                                ]
559 geraldo 3914
                            ],
15442 efrain 3915
                            'edit' => [
559 geraldo 3916
                                'type' => Segment::class,
3917
                                'options' => [
15442 efrain 3918
                                    'route' => '/edit/:id',
559 geraldo 3919
                                    'constraints' => [
3920
                                        'id' => '[A-Za-z0-9\-]+\=*'
3921
                                    ],
3922
                                    'defaults' => [
15442 efrain 3923
                                        'controller' => '\LeadersLinked\Controller\JobCategoryController',
3924
                                        'action' => 'edit'
559 geraldo 3925
                                    ]
3926
                                ]
3927
                            ],
15442 efrain 3928
                            'delete' => [
3929
                                'type' => Segment::class,
846 geraldo 3930
                                'options' => [
15442 efrain 3931
                                    'route' => '/delete/:id',
3932
                                    'constraints' => [
3933
                                        'id' => '[A-Za-z0-9\-]+\=*'
3934
                                    ],
846 geraldo 3935
                                    'defaults' => [
15442 efrain 3936
                                        'controller' => '\LeadersLinked\Controller\JobCategoryController',
3937
                                        'action' => 'delete'
846 geraldo 3938
                                    ]
3939
                                ]
15442 efrain 3940
                            ]
28 efrain 3941
                        ]
3942
                    ],
15607 anderson 3943
 
1 www 3944
                    'email-templates' => [
3945
                        'type' => Literal::class,
3946
                        'options' => [
3947
                            'route' => '/email-templates',
3948
                            'defaults' => [
3949
                                'controller' => '\LeadersLinked\Controller\EmailTemplateController',
3950
                                'action' => 'index'
3951
                            ]
3952
                        ],
3953
                        'may_terminate' => true,
3954
                        'child_routes' => [
3955
                            'edit' => [
3956
                                'type' => Segment::class,
3957
                                'options' => [
3958
                                    'route' => '/edit/:id',
3959
                                    'constraints' => [
3960
                                        'id' => '[A-Za-z0-9\-]+\=*'
3961
                                    ],
3962
                                    'defaults' => [
3963
                                        'controller' => '\LeadersLinked\Controller\EmailTemplateController',
3964
                                        'action' => 'edit'
3965
                                    ]
3966
                                ]
3967
                            ],
3968
                        ]
3969
                    ],
15607 anderson 3970
 
1 www 3971
                    'push-templates' => [
3972
                        'type' => Literal::class,
3973
                        'options' => [
3974
                            'route' => '/push-templates',
3975
                            'defaults' => [
3976
                                'controller' => '\LeadersLinked\Controller\PushTemplateController',
3977
                                'action' => 'index'
3978
                            ]
3979
                        ],
3980
                        'may_terminate' => true,
3981
                        'child_routes' => [
3982
                            'edit' => [
3983
                                'type' => Segment::class,
3984
                                'options' => [
3985
                                    'route' => '/edit/:id',
3986
                                    'constraints' => [
3987
                                        'id' => '[A-Za-z0-9\-]+\=*'
3988
                                    ],
3989
                                    'defaults' => [
3990
                                        'controller' => '\LeadersLinked\Controller\PushTemplateController',
3991
                                        'action' => 'edit'
3992
                                    ]
3993
                                ]
3994
                            ],
15355 efrain 3995
                            'import' => [
3996
                                'type' => Literal::class,
3997
                                'options' => [
3998
                                    'route' => '/import',
3999
                                    'defaults' => [
4000
                                        'controller' => '\LeadersLinked\Controller\PushTemplateController',
4001
                                        'action' => 'import'
4002
                                    ]
4003
                                ]
4004
                            ],
1 www 4005
                        ]
4006
                    ],
4007
                    'skills' => [
4008
                        'type' => Literal::class,
4009
                        'options' => [
4010
                            'route' => '/skills',
4011
                            'defaults' => [
4012
                                'controller' => '\LeadersLinked\Controller\SkillController',
4013
                                'action' => 'index'
4014
                            ]
4015
                        ],
4016
                        'may_terminate' => true,
4017
                        'child_routes' => [
4018
                            'add' => [
4019
                                'type' => Literal::class,
4020
                                'options' => [
4021
                                    'route' => '/add',
4022
                                    'defaults' => [
4023
                                        'controller' => '\LeadersLinked\Controller\SkillController',
4024
                                        'action' => 'add'
4025
                                    ]
4026
                                ]
4027
                            ],
4028
                            'edit' => [
4029
                                'type' => Segment::class,
4030
                                'options' => [
4031
                                    'route' => '/edit/:id',
4032
                                    'constraints' => [
4033
                                        'id' => '[A-Za-z0-9\-]+\=*'
4034
                                    ],
4035
                                    'defaults' => [
4036
                                        'controller' => '\LeadersLinked\Controller\SkillController',
4037
                                        'action' => 'edit'
4038
                                    ]
4039
                                ]
4040
                            ],
4041
                            'delete' => [
4042
                                'type' => Segment::class,
4043
                                'options' => [
4044
                                    'route' => '/delete/:id',
4045
                                    'constraints' => [
4046
                                        'id' => '[A-Za-z0-9\-]+\=*'
4047
                                    ],
4048
                                    'defaults' => [
4049
                                        'controller' => '\LeadersLinked\Controller\SkillController',
4050
                                        'action' => 'delete'
4051
                                    ]
4052
                                ]
4053
                            ]
4054
                        ]
4055
                    ],
15392 efrain 4056
                    'aptitudes' => [
4057
                        'type' => Literal::class,
4058
                        'options' => [
4059
                            'route' => '/aptitudes',
4060
                            'defaults' => [
4061
                                'controller' => '\LeadersLinked\Controller\AptitudeController',
4062
                                'action' => 'index'
4063
                            ]
4064
                        ],
4065
                        'may_terminate' => true,
4066
                        'child_routes' => [
4067
                            'add' => [
4068
                                'type' => Literal::class,
4069
                                'options' => [
4070
                                    'route' => '/add',
4071
                                    'defaults' => [
4072
                                        'controller' => '\LeadersLinked\Controller\AptitudeController',
4073
                                        'action' => 'add'
4074
                                    ]
4075
                                ]
4076
                            ],
4077
                            'edit' => [
4078
                                'type' => Segment::class,
4079
                                'options' => [
4080
                                    'route' => '/edit/:id',
4081
                                    'constraints' => [
4082
                                        'id' => '[A-Za-z0-9\-]+\=*'
4083
                                    ],
4084
                                    'defaults' => [
4085
                                        'controller' => '\LeadersLinked\Controller\AptitudeController',
4086
                                        'action' => 'edit'
4087
                                    ]
4088
                                ]
4089
                            ],
4090
                            'delete' => [
4091
                                'type' => Segment::class,
4092
                                'options' => [
4093
                                    'route' => '/delete/:id',
4094
                                    'constraints' => [
4095
                                        'id' => '[A-Za-z0-9\-]+\=*'
4096
                                    ],
4097
                                    'defaults' => [
4098
                                        'controller' => '\LeadersLinked\Controller\AptitudeController',
4099
                                        'action' => 'delete'
4100
                                    ]
4101
                                ]
4102
                            ]
4103
                        ]
4104
                    ],
4105
                    'hobbies-and-interests' => [
4106
                        'type' => Literal::class,
4107
                        'options' => [
4108
                            'route' => '/hobbies-and-interests',
4109
                            'defaults' => [
4110
                                'controller' => '\LeadersLinked\Controller\HobbyAndInterestController',
4111
                                'action' => 'index'
4112
                            ]
4113
                        ],
4114
                        'may_terminate' => true,
4115
                        'child_routes' => [
4116
                            'add' => [
4117
                                'type' => Literal::class,
4118
                                'options' => [
4119
                                    'route' => '/add',
4120
                                    'defaults' => [
4121
                                        'controller' => '\LeadersLinked\Controller\HobbyAndInterestController',
4122
                                        'action' => 'add'
4123
                                    ]
4124
                                ]
4125
                            ],
4126
                            'edit' => [
4127
                                'type' => Segment::class,
4128
                                'options' => [
4129
                                    'route' => '/edit/:id',
4130
                                    'constraints' => [
4131
                                        'id' => '[A-Za-z0-9\-]+\=*'
4132
                                    ],
4133
                                    'defaults' => [
4134
                                        'controller' => '\LeadersLinked\Controller\HobbyAndInterestController',
4135
                                        'action' => 'edit'
4136
                                    ]
4137
                                ]
4138
                            ],
4139
                            'delete' => [
4140
                                'type' => Segment::class,
4141
                                'options' => [
4142
                                    'route' => '/delete/:id',
4143
                                    'constraints' => [
4144
                                        'id' => '[A-Za-z0-9\-]+\=*'
4145
                                    ],
4146
                                    'defaults' => [
4147
                                        'controller' => '\LeadersLinked\Controller\HobbyAndInterestController',
4148
                                        'action' => 'delete'
4149
                                    ]
4150
                                ]
4151
                            ]
4152
                        ]
4153
                    ],
1089 geraldo 4154
                ]
1 www 4155
            ],
15607 anderson 4156
            /*         * * FIN SETTINGS ** */
4157
 
1333 efrain 4158
            'own-professional-network' => [
4159
                'type' => Literal::class,
4160
                'options' => [
4161
                    'route' => '/own-professional-network',
4162
                    'defaults' => [
4163
                        'controller' => '\LeadersLinked\Controller\UnknownController',
4164
                        'action' => 'index'
4165
                    ]
4166
                ],
4167
                'may_terminate' => true,
15607 anderson 4168
                'child_routes' => []
1333 efrain 4169
            ],
15607 anderson 4170
 
1333 efrain 4171
            'organizational-design' => [
4172
                'type' => Literal::class,
4173
                'options' => [
4174
                    'route' => '/organizational-design',
4175
                    'defaults' => [
4176
                        'controller' => '\LeadersLinked\Controller\UnknownController',
4177
                        'action' => 'index'
4178
                    ]
4179
                ],
4180
                'may_terminate' => true,
15607 anderson 4181
                'child_routes' => []
1333 efrain 4182
            ],
15607 anderson 4183
 
16766 efrain 4184
            'planning' => [
1333 efrain 4185
                'type' => Literal::class,
4186
                'options' => [
16766 efrain 4187
                    'route' => '/planning',
1333 efrain 4188
                    'defaults' => [
16766 efrain 4189
                        'controller' => '\LeadersLinked\Controller\PlanningController',
1951 nelberth 4190
                        'action' => 'index'
1333 efrain 4191
                    ]
4192
                ],
4193
                'may_terminate' => true,
4194
                'child_routes' => [
2238 nelberth 4195
                    'objectives' => [
2250 nelberth 4196
                        'type' => Literal::class,
1914 nelberth 4197
                        'options' => [
2248 nelberth 4198
                            'route' => '/objectives',
1914 nelberth 4199
                            'defaults' => [
16766 efrain 4200
                                'controller' => '\LeadersLinked\Controller\PlanningObjectivesController',
2238 nelberth 4201
                                'action' => 'index'
1914 nelberth 4202
                            ]
2251 nelberth 4203
                        ],
15607 anderson 4204
 
2251 nelberth 4205
                        'may_terminate' => true,
4206
                        'child_routes' => [
2324 nelberth 4207
 
2251 nelberth 4208
                            'add' => [
4209
                                'type' => Literal::class,
4210
                                'options' => [
4211
                                    'route' => '/add',
4212
                                    'defaults' => [
16766 efrain 4213
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesController',
2251 nelberth 4214
                                        'action' => 'add'
4215
                                    ]
4216
                                ]
4217
                            ],
4218
                            'edit' => [
4219
                                'type' => Segment::class,
4220
                                'options' => [
4221
                                    'route' => '/edit/:id',
4222
                                    'constraints' => [
4223
                                        'id' => '[A-Za-z0-9\-]+\=*'
4224
                                    ],
4225
                                    'defaults' => [
16766 efrain 4226
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesController',
2251 nelberth 4227
                                        'action' => 'edit'
4228
                                    ]
4229
                                ]
4230
                            ],
4231
                            'delete' => [
4232
                                'type' => Segment::class,
4233
                                'options' => [
4234
                                    'route' => '/delete/:id',
4235
                                    'constraints' => [
4236
                                        'id' => '[A-Za-z0-9\-]+\=*'
4237
                                    ],
4238
                                    'defaults' => [
16766 efrain 4239
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectiveController',
2251 nelberth 4240
                                        'action' => 'delete'
4241
                                    ]
4242
                                ]
2324 nelberth 4243
                            ],
3462 nelberth 4244
                            'report' => [
4245
                                'type' => Segment::class,
4246
                                'options' => [
4247
                                    'route' => '/report/:id',
4248
                                    'constraints' => [
4249
                                        'id' => '[A-Za-z0-9\-]+\=*'
4250
                                    ],
4251
                                    'defaults' => [
16766 efrain 4252
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesController',
3462 nelberth 4253
                                        'action' => 'report'
4254
                                    ]
4255
                                ]
15607 anderson 4256
                            ],
3986 nelberth 4257
                            'reportall' => [
4258
                                'type' => Literal::class,
4259
                                'options' => [
4260
                                    'route' => '/reportall',
4261
                                    'defaults' => [
16766 efrain 4262
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesController',
3986 nelberth 4263
                                        'action' => 'reportall'
4264
                                    ]
4265
                                ]
3462 nelberth 4266
                            ],
15607 anderson 4267
 
4041 nelberth 4268
                            'matriz' => [
4269
                                'type' => Literal::class,
4270
                                'options' => [
4271
                                    'route' => '/matriz',
4272
                                    'defaults' => [
16766 efrain 4273
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesController',
4041 nelberth 4274
                                        'action' => 'matriz'
4275
                                    ]
4276
                                ]
4277
                            ],
2324 nelberth 4278
                            'goals' => [
2336 nelberth 4279
                                'type' => Segment::class,
2324 nelberth 4280
                                'options' => [
11092 nelberth 4281
                                    'route' => '/:objective_id/goals',
2324 nelberth 4282
                                    'constraints' => [
11092 nelberth 4283
                                        'objective_id' => '[A-Za-z0-9\-]+\=*'
2324 nelberth 4284
                                    ],
4285
                                    'defaults' => [
16766 efrain 4286
                                        'controller' => '\LeadersLinked\Controller\PlanningGoalsController',
2324 nelberth 4287
                                        'action' => 'index'
4288
                                    ]
2369 nelberth 4289
                                ],
15607 anderson 4290
 
2370 nelberth 4291
                                'may_terminate' => true,
4292
                                'child_routes' => [
4293
                                    'add' => [
4294
                                        'type' => Literal::class,
4295
                                        'options' => [
4296
                                            'route' => '/add',
4297
                                            'defaults' => [
16766 efrain 4298
                                                'controller' => '\LeadersLinked\Controller\PlanningGoalsController',
2370 nelberth 4299
                                                'action' => 'add'
4300
                                            ]
2369 nelberth 4301
                                        ]
2370 nelberth 4302
                                    ],
4303
                                    'edit' => [
4304
                                        'type' => Segment::class,
4305
                                        'options' => [
4306
                                            'route' => '/edit/:id',
4307
                                            'constraints' => [
4308
                                                'id' => '[A-Za-z0-9\-]+\=*'
4309
                                            ],
4310
                                            'defaults' => [
16766 efrain 4311
                                                'controller' => '\LeadersLinked\Controller\PlanningGoalsController',
2370 nelberth 4312
                                                'action' => 'edit'
4313
                                            ]
2369 nelberth 4314
                                        ]
2370 nelberth 4315
                                    ],
4316
                                    'delete' => [
4317
                                        'type' => Segment::class,
4318
                                        'options' => [
4319
                                            'route' => '/delete/:id',
4320
                                            'constraints' => [
4321
                                                'id' => '[A-Za-z0-9\-]+\=*'
4322
                                            ],
4323
                                            'defaults' => [
16766 efrain 4324
                                                'controller' => '\LeadersLinked\Controller\PlanningGoalsController',
2370 nelberth 4325
                                                'action' => 'delete'
4326
                                            ]
4327
                                        ]
4328
                                    ],
2517 nelberth 4329
                                    'task' => [
4330
                                        'type' => Segment::class,
4331
                                        'options' => [
11092 nelberth 4332
                                            'route' => '/:goal_id/task',
2517 nelberth 4333
                                            'constraints' => [
11092 nelberth 4334
                                                'goal_id' => '[A-Za-z0-9\-]+\=*'
2517 nelberth 4335
                                            ],
4336
                                            'defaults' => [
16766 efrain 4337
                                                'controller' => '\LeadersLinked\Controller\PlanningTaskController',
2517 nelberth 4338
                                                'action' => 'index'
4339
                                            ]
4340
                                        ],
15607 anderson 4341
 
2517 nelberth 4342
                                        'may_terminate' => true,
4343
                                        'child_routes' => [
4344
                                            'add' => [
4345
                                                'type' => Literal::class,
4346
                                                'options' => [
4347
                                                    'route' => '/add',
4348
                                                    'defaults' => [
16766 efrain 4349
                                                        'controller' => '\LeadersLinked\Controller\PlanningTaskController',
2517 nelberth 4350
                                                        'action' => 'add'
4351
                                                    ]
4352
                                                ]
4353
                                            ],
4354
                                            'edit' => [
4355
                                                'type' => Segment::class,
4356
                                                'options' => [
4357
                                                    'route' => '/edit/:id',
4358
                                                    'constraints' => [
4359
                                                        'id' => '[A-Za-z0-9\-]+\=*'
4360
                                                    ],
4361
                                                    'defaults' => [
16766 efrain 4362
                                                        'controller' => '\LeadersLinked\Controller\PlanningTaskController',
2517 nelberth 4363
                                                        'action' => 'edit'
4364
                                                    ]
4365
                                                ]
4366
                                            ],
4367
                                            'delete' => [
4368
                                                'type' => Segment::class,
4369
                                                'options' => [
4370
                                                    'route' => '/delete/:id',
4371
                                                    'constraints' => [
4372
                                                        'id' => '[A-Za-z0-9\-]+\=*'
4373
                                                    ],
4374
                                                    'defaults' => [
16766 efrain 4375
                                                        'controller' => '\LeadersLinked\Controller\PlanningTaskController',
2517 nelberth 4376
                                                        'action' => 'delete'
4377
                                                    ]
4378
                                                ]
4379
                                            ],
2822 nelberth 4380
                                            'view' => [
4381
                                                'type' => Segment::class,
4382
                                                'options' => [
4383
                                                    'route' => '/view/:id',
4384
                                                    'constraints' => [
4385
                                                        'id' => '[A-Za-z0-9\-]+\=*'
4386
                                                    ],
4387
                                                    'defaults' => [
16766 efrain 4388
                                                        'controller' => '\LeadersLinked\Controller\PlanningTaskController',
2822 nelberth 4389
                                                        'action' => 'view'
4390
                                                    ]
4391
                                                ]
4392
                                            ],
15607 anderson 4393
                                        ]
4394
                                    ],
4395
                                ]
4396
                            ],
1914 nelberth 4397
                        ]
2246 nelberth 4398
                    ]
15607 anderson 4399
 
1333 efrain 4400
                ]
4401
            ],
15607 anderson 4402
 
4403
 
15401 efrain 4404
            'discovery-contacts' => [
4405
                'type' => Literal::class,
4406
                'options' => [
4407
                    'route' => '/discovery-contacts',
4408
                    'defaults' => [
4409
                        'controller' => '\LeadersLinked\Controller\DiscoveryContactController',
4410
                        'action' => 'index'
4411
                    ]
4412
                ],
4413
                'may_terminate' => true,
4414
                'child_routes' => [
4415
                    'add' => [
4416
                        'type' => Literal::class,
4417
                        'options' => [
4418
                            'route' => '/add',
4419
                            'defaults' => [
4420
                                'controller' => '\LeadersLinked\Controller\DiscoveryContactController',
4421
                                'action' => 'add'
4422
                            ]
4423
                        ]
4424
                    ],
4425
                    'edit' => [
4426
                        'type' => Segment::class,
4427
                        'options' => [
4428
                            'route' => '/edit/:id',
4429
                            'constraints' => [
4430
                                'id' => '[A-Za-z0-9\-]+\=*'
4431
                            ],
4432
                            'defaults' => [
4433
                                'controller' => '\LeadersLinked\Controller\DiscoveryContactController',
4434
                                'action' => 'edit'
4435
                            ]
4436
                        ]
4437
                    ],
4438
                    'delete' => [
4439
                        'type' => Segment::class,
4440
                        'options' => [
4441
                            'route' => '/delete/:id',
4442
                            'constraints' => [
4443
                                'id' => '[A-Za-z0-9\-]+\=*'
4444
                            ],
4445
                            'defaults' => [
4446
                                'controller' => '\LeadersLinked\Controller\DiscoveryContactController',
4447
                                'action' => 'delete'
4448
                            ]
4449
                        ]
4450
                    ],
4451
                    'view' => [
4452
                        'type' => Segment::class,
4453
                        'options' => [
4454
                            'route' => '/view/:id',
4455
                            'constraints' => [
4456
                                'id' => '[A-Za-z0-9\-]+\=*'
4457
                            ],
4458
                            'defaults' => [
4459
                                'controller' => '\LeadersLinked\Controller\DiscoveryContactController',
4460
                                'action' => 'view'
4461
                            ]
4462
                        ]
4463
                    ],
15546 efrain 4464
                    'upload' => [
4465
                        'type' => Segment::class,
4466
                        'options' => [
4467
                            'route' => '/upload',
4468
                            'defaults' => [
4469
                                'controller' => '\LeadersLinked\Controller\DiscoveryContactController',
4470
                                'action' => 'upload'
4471
                            ]
4472
                        ]
4473
                    ],
15634 anderson 4474
                    'interaction-types' => [
4475
                        'type' => Literal::class,
4476
                        'options' => [
4477
                            'route' => '/interaction-types',
4478
                            'defaults' => [
4479
                                'controller' => '\LeadersLinked\Controller\DiscoveryContactInteractionTypeController',
4480
                                'action' => 'index'
4481
                            ]
4482
                        ],
4483
                        'may_terminate' => true,
4484
                        'child_routes' => [
4485
                            'add' => [
4486
                                'type' => Literal::class,
4487
                                'options' => [
4488
                                    'route' => '/add',
4489
                                    'defaults' => [
4490
                                        'controller' => '\LeadersLinked\Controller\DiscoveryContactInteractionTypeController',
4491
                                        'action' => 'add'
4492
                                    ]
4493
                                ]
4494
                            ],
4495
                            'edit' => [
4496
                                'type' => Segment::class,
4497
                                'options' => [
4498
                                    'route' => '/edit/:id',
4499
                                    'constraints' => [
4500
                                        'id' => '[A-Za-z0-9\-]+\=*'
4501
                                    ],
4502
                                    'defaults' => [
4503
                                        'controller' => '\LeadersLinked\Controller\DiscoveryContactInteractionTypeController',
4504
                                        'action' => 'edit'
4505
                                    ]
4506
                                ]
4507
                            ],
4508
                            'delete' => [
4509
                                'type' => Segment::class,
4510
                                'options' => [
4511
                                    'route' => '/delete/:id',
4512
                                    'constraints' => [
4513
                                        'id' => '[A-Za-z0-9\-]+\=*'
4514
                                    ],
4515
                                    'defaults' => [
4516
                                        'controller' => '\LeadersLinked\Controller\DiscoveryContactInteractionTypeController',
4517
                                        'action' => 'delete'
4518
                                    ]
4519
                                ]
4520
                            ],
15401 efrain 4521
 
15607 anderson 4522
 
4523
 
15634 anderson 4524
                        ]
4525
                    ],
15401 efrain 4526
                    'interactions' => [
4527
                        'type' => Segment::class,
4528
                        'options' => [
4529
                            'route' => '/interactions/:id',
4530
                            'constraints' => [
4531
                                'id' => '[A-Za-z0-9\-]+\=*'
4532
                            ],
4533
                            'defaults' => [
4534
                                'controller' => '\LeadersLinked\Controller\DiscoveryContactInteractionController',
4535
                                'action' => 'index'
4536
                            ]
4537
                        ],
4538
                        'may_terminate' => true,
4539
                        'child_routes' => [
4540
                            'add' => [
4541
                                'type' => Segment::class,
4542
                                'options' => [
4543
                                    'route' => '/add',
4544
                                    'defaults' => [
4545
                                        'controller' => '\LeadersLinked\Controller\DiscoveryContactInteractionController',
4546
                                        'action' => 'add'
4547
                                    ]
4548
                                ]
4549
                            ],
4550
                            'delete' => [
4551
                                'type' => Segment::class,
4552
                                'options' => [
4553
                                    'route' => '/delete/:interaction',
4554
                                    'constraints' => [
4555
                                        'interaction' => '[A-Za-z0-9\-]+\=*'
4556
                                    ],
4557
                                    'defaults' => [
4558
                                        'controller' => '\LeadersLinked\Controller\DiscoveryContactInteractionController',
4559
                                        'action' => 'delete'
4560
                                    ]
4561
                                ]
4562
                            ],
15607 anderson 4563
 
4564
 
4565
 
15401 efrain 4566
                        ]
4567
                    ],
4568
                    'logs' => [
15644 anderson 4569
                        'type' => Literal::class,
15401 efrain 4570
                        'options' => [
4571
                            'route' => '/log/:id',
4572
                            'constraints' => [
4573
                                'id' => '[A-Za-z0-9\-]+\=*'
4574
                            ],
4575
                            'defaults' => [
4576
                                'controller' => '\LeadersLinked\Controller\DiscoveryContactLogController',
4577
                                'action' => 'index'
4578
                            ]
4579
                        ],
4580
                        'may_terminate' => true,
15607 anderson 4581
                        'child_routes' => []
15401 efrain 4582
                    ],
15607 anderson 4583
 
16758 efrain 4584
 
15637 anderson 4585
                    'progress-by-day' => [
16758 efrain 4586
                        'type' => Literal::class,
15637 anderson 4587
                        'options' => [
16758 efrain 4588
                            'route' => '/progress-by-day',
15637 anderson 4589
                            'defaults' => [
16758 efrain 4590
                                'controller' => '\LeadersLinked\Controller\DiscoveryContactProgressController',
15637 anderson 4591
                                'action'     => 'index',
4592
                            ],
4593
                        ],
16758 efrain 4594
                        'may_terminate' => true,
4595
                        'child_routes' => [
4596
                            'download' => [
4597
                                'type' => Literal::class,
4598
                                'options' => [
4599
                                    'route' => '/download',
4600
                                    'defaults' => [
4601
                                        'controller' => '\LeadersLinked\Controller\DiscoveryContactProgressController',
4602
                                        'action'     => 'download',
4603
                                    ],
4604
                                ],
4605
                            ],
4606
                        ]
15637 anderson 4607
                    ],
16758 efrain 4608
 
4609
                    'report' => [
4610
                        'type' => Literal::class,
4611
                        'options' => [
4612
                            'route' => '/report',
4613
                            'defaults' => [
4614
                                'controller' => '\LeadersLinked\Controller\DiscoveryContactReportController',
4615
                                'action'     => 'index',
4616
                            ],
4617
                        ],
4618
                        'may_terminate' => true,
4619
                        'child_routes' => [
4620
                            'download' => [
4621
                                'type' => Literal::class,
4622
                                'options' => [
4623
                                    'route' => '/download',
4624
                                    'defaults' => [
4625
                                        'controller' => '\LeadersLinked\Controller\DiscoveryContactReportController',
4626
                                        'action'     => 'download',
4627
                                    ],
4628
                                ],
4629
                            ],
4630
                        ]
4631
                    ],
4632
 
15637 anderson 4633
 
15401 efrain 4634
                ]
4635
            ],
4636
 
15607 anderson 4637
 
4638
 
1333 efrain 4639
            'development-and-training' => [
4640
                'type' => Literal::class,
4641
                'options' => [
4642
                    'route' => '/development-and-training',
4643
                    'defaults' => [
4644
                        'controller' => '\LeadersLinked\Controller\UnknownController',
4645
                        'action' => 'index'
4646
                    ]
4647
                ],
4648
                'may_terminate' => true,
15607 anderson 4649
                'child_routes' => []
1333 efrain 4650
            ],
1477 efrain 4651
 
15607 anderson 4652
 
1477 efrain 4653
            'recruitment-and-selection' => [
1333 efrain 4654
                'type' => Literal::class,
4655
                'options' => [
1477 efrain 4656
                    'route' => '/recruitment-and-selection',
1333 efrain 4657
                    'defaults' => [
1477 efrain 4658
                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionController',
1333 efrain 4659
                        'action' => 'index'
4660
                    ]
4661
                ],
4662
                'may_terminate' => true,
4663
                'child_routes' => [
1477 efrain 4664
                    'vacancies' => [
1345 eleazar 4665
                        'type' => Literal::class,
4666
                        'options' => [
1477 efrain 4667
                            'route' => '/vacancies',
1345 eleazar 4668
                            'defaults' => [
1385 eleazar 4669
                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionVacancyController',
1345 eleazar 4670
                                'action' => 'index'
4671
                            ]
4672
                        ],
4673
                        'may_terminate' => true,
4674
                        'child_routes' => [
4675
                            'add' => [
4676
                                'type' => Literal::class,
4677
                                'options' => [
4678
                                    'route' => '/add',
4679
                                    'defaults' => [
1385 eleazar 4680
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionVacancyController',
1345 eleazar 4681
                                        'action' => 'add'
4682
                                    ]
4683
                                ]
4684
                            ],
4685
                            'edit' => [
4686
                                'type' => Segment::class,
4687
                                'options' => [
4688
                                    'route' => '/edit/:id',
4689
                                    'constraints' => [
4690
                                        'id' => '[A-Za-z0-9\-]+\=*'
4691
                                    ],
4692
                                    'defaults' => [
1385 eleazar 4693
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionVacancyController',
1345 eleazar 4694
                                        'action' => 'edit'
4695
                                    ]
4696
                                ]
4697
                            ],
4698
                            'delete' => [
4699
                                'type' => Segment::class,
4700
                                'options' => [
4701
                                    'route' => '/delete/:id',
4702
                                    'constraints' => [
4703
                                        'id' => '[A-Za-z0-9\-]+\=*'
4704
                                    ],
4705
                                    'defaults' => [
1385 eleazar 4706
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionVacancyController',
1345 eleazar 4707
                                        'action' => 'delete'
4708
                                    ]
4709
                                ]
4710
                            ]
4711
                        ]
4712
                    ],
15461 efrain 4713
                    'applications' => [
4714
                        'type' =>  Literal::class,
4715
                        'options' => [
4716
                            'route' => '/applications',
4717
                            'defaults' => [
4718
                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionApplicationController',
4719
                                'action' => 'index'
4720
                            ]
4721
                        ],
4722
                        'may_terminate' => true,
4723
                        'child_routes' => [
4724
                            'add' => [
4725
                                'type' => Segment::class,
4726
                                'options' => [
4727
                                    'route' => '/add/vacancy/:vacancy_id',
4728
                                    'constraints' => [
4729
                                        'vacancy_id' => '[A-Za-z0-9\-]+\=*'
4730
                                    ],
4731
                                    'defaults' => [
4732
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionApplicationController',
4733
                                        'action' => 'add'
4734
                                    ]
4735
                                ]
4736
                            ],
4737
                            'delete' => [
4738
                                'type' => Segment::class,
4739
                                'options' => [
4740
                                    'route' => '/delete/vacancy/:vacancy_id/application/:application_id',
4741
                                    'constraints' => [
4742
                                        'vacancy_id' => '[A-Za-z0-9\-]+\=*',
4743
                                        'application_id' => '[A-Za-z0-9\-]+\=*'
4744
                                    ],
4745
                                    'defaults' => [
4746
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionApplicationController',
4747
                                        'action' => 'delete'
4748
                                    ]
4749
                                ]
4750
                            ],
4751
                            'user-by-email' => [
4752
                                'type' => Literal::class,
4753
                                'options' => [
4754
                                    'route' => '/user-by-email',
4755
                                    'defaults' => [
4756
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionApplicationController',
4757
                                        'action' => 'userByEmail'
4758
                                    ]
4759
                                ]
4760
                            ],
4761
                            'view' => [
4762
                                'type' => Segment::class,
4763
                                'options' => [
4764
                                    'route' => '/view/vacancy/:vacancy_id/application/:application_id',
4765
                                    'constraints' => [
4766
                                        'vacancy_id' => '[A-Za-z0-9\-]+\=*',
4767
                                        'application_id' => '[A-Za-z0-9\-]+\=*'
4768
                                    ],
4769
                                    'defaults' => [
4770
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionApplicationController',
4771
                                        'action' => 'view'
4772
                                    ]
4773
                                ]
4774
                            ],
4775
                            'comment' => [
4776
                                'type' => Segment::class,
4777
                                'options' => [
4778
                                    'route' => '/comment/vacancy/:vacancy_id/application/:application_id',
4779
                                    'constraints' => [
4780
                                        'vacancy_id' => '[A-Za-z0-9\-]+\=*',
4781
                                        'application_id' => '[A-Za-z0-9\-]+\=*'
4782
                                    ],
4783
                                    'defaults' => [
4784
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionApplicationController',
4785
                                        'action' => 'comment'
4786
                                    ]
4787
                                ]
4788
                            ],
4789
                            'status' => [
4790
                                'type' => Segment::class,
4791
                                'options' => [
4792
                                    'route' => '/status/vacancy/:vacancy_id/application/:application_id',
4793
                                    'constraints' => [
4794
                                        'vacancy_id' => '[A-Za-z0-9\-]+\=*',
4795
                                        'iapplication_id' => '[A-Za-z0-9\-]+\=*'
4796
                                    ],
4797
                                    'defaults' => [
4798
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionApplicationController',
4799
                                        'action' => 'status'
4800
                                    ]
4801
                                ]
4802
                            ],
4803
                            'level' => [
4804
                                'type' => Segment::class,
4805
                                'options' => [
4806
                                    'route' => '/level/vacancy/:vacancy_id/application/:application_id',
4807
                                    'constraints' => [
4808
                                        'vacancy_id' => '[A-Za-z0-9\-]+\=*',
4809
                                        'application_id' => '[A-Za-z0-9\-]+\=*'
4810
                                    ],
4811
                                    'defaults' => [
4812
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionApplicationController',
4813
                                        'action' => 'level'
4814
                                    ]
4815
                                ]
4816
                            ],
4817
                            'files' => [
4818
                                'type' => Segment::class,
4819
                                'options' => [
4820
                                    'route' => '/files/vacancy/:vacancy_id/application/:application_id',
4821
                                    'constraints' => [
4822
                                        'vacancy_id' => '[A-Za-z0-9\-]+\=*',
4823
                                        'application_id' => '[A-Za-z0-9\-]+\=*'
4824
                                    ],
4825
                                    'defaults' => [
4826
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionFileController',
4827
                                        'action' => 'index'
4828
                                    ]
4829
                                ],
4830
                                'may_terminate' => true,
4831
                                'child_routes' => [
4832
                                    'add' => [
4833
                                        'type' => Segment::class,
4834
                                        'options' => [
4835
                                            'route' => '/add',
4836
                                            'defaults' => [
4837
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionFileController',
4838
                                                'action' => 'add'
4839
                                            ]
4840
                                        ]
4841
                                    ],
4842
                                    'delete' => [
4843
                                        'type' => Segment::class,
4844
                                        'options' => [
4845
                                            'route' => '/delete/:id',
4846
                                            'constraints' => [
4847
                                                'id' => '[A-Za-z0-9\-]+\=*'
4848
                                            ],
4849
                                            'defaults' => [
4850
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionFileController',
4851
                                                'action' => 'delete'
4852
                                            ]
4853
                                        ]
4854
                                    ],
4855
                                    'view' => [
4856
                                        'type' => Segment::class,
4857
                                        'options' => [
4858
                                            'route' => '/view/:id',
4859
                                            'constraints' => [
4860
                                                'id' => '[A-Za-z0-9\-]+\=*'
4861
                                            ],
4862
                                            'defaults' => [
4863
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionFileController',
4864
                                                'action' => 'view'
4865
                                            ]
4866
                                        ]
4867
                                    ],
15607 anderson 4868
                                ]
15461 efrain 4869
                            ],
4870
                            'interviews' => [
4871
                                'type' => Segment::class,
4872
                                'options' => [
4873
                                    'route' => '/interviews/vacancy/:vacancy_id/application/:application_id',
4874
                                    'constraints' => [
4875
                                        'vacancy_id' => '[A-Za-z0-9\-]+\=*',
4876
                                        'application_id' => '[A-Za-z0-9\-]+\=*'
4877
                                    ],
4878
                                    'defaults' => [
4879
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewController',
4880
                                        'action' => 'index'
4881
                                    ]
4882
                                ],
4883
                                'may_terminate' => true,
4884
                                'child_routes' => [
4885
                                    'add' => [
4886
                                        'type' => Segment::class,
4887
                                        'options' => [
4888
                                            'route' => '/add',
4889
                                            'defaults' => [
4890
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewController',
4891
                                                'action' => 'add'
4892
                                            ]
4893
                                        ]
4894
                                    ],
4895
                                    'delete' => [
4896
                                        'type' => Segment::class,
4897
                                        'options' => [
4898
                                            'route' => '/delete/:id',
4899
                                            'constraints' => [
4900
                                                'id' => '[A-Za-z0-9\-]+\=*'
4901
                                            ],
4902
                                            'defaults' => [
4903
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewController',
4904
                                                'action' => 'delete'
4905
                                            ]
4906
                                        ]
4907
                                    ],
4908
                                    'report' => [
4909
                                        'type' => Segment::class,
4910
                                        'options' => [
4911
                                            'route' => '/report/:id',
4912
                                            'constraints' => [
4913
                                                'id' => '[A-Za-z0-9\-]+\=*'
4914
                                            ],
4915
                                            'defaults' => [
4916
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewController',
4917
                                                'action' => 'report'
4918
                                            ]
4919
                                        ]
4920
                                    ],
4921
                                    'edit' => [
4922
                                        'type' => Segment::class,
4923
                                        'options' => [
4924
                                            'route' => '/edit/:id',
4925
                                            'constraints' => [
4926
                                                'id' => '[A-Za-z0-9\-]+\=*'
4927
                                            ],
4928
                                            'defaults' => [
4929
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewController',
4930
                                                'action' => 'edit'
4931
                                            ]
4932
                                        ]
4933
                                    ],
4934
                                ]
4935
                            ],
4936
                        ]
4937
 
15607 anderson 4938
 
4939
                    ],
15461 efrain 4940
                    /*
1459 eleazar 4941
                    'candidates' => [
4942
                        'type' => Segment::class,
4943
                        'options' => [
1501 eleazar 4944
                            'route' => '/candidates[/:vacancy_uuid]',
1459 eleazar 4945
                            'constraints' => [
1508 eleazar 4946
                                'vacancy_uuid' => '[A-Za-z0-9\-]+\=*'
1459 eleazar 4947
                            ],
4948
                            'defaults' => [
4949
                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
1502 eleazar 4950
                                'action' => 'index',
1503 eleazar 4951
                                'vacancy_uuid' => '',
1459 eleazar 4952
                            ]
4953
                        ],
4954
                        'may_terminate' => true,
4955
                        'child_routes' => [
4956
                            'add' => [
4957
                                'type' => Literal::class,
4958
                                'options' => [
1506 eleazar 4959
                                    'route' => '/add',
1459 eleazar 4960
                                    'defaults' => [
4961
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
4962
                                        'action' => 'add'
4963
                                    ]
4964
                                ]
4965
                            ],
4966
                            'edit' => [
4967
                                'type' => Segment::class,
4968
                                'options' => [
4969
                                    'route' => '/edit/:id',
4970
                                    'constraints' => [
4971
                                        'id' => '[A-Za-z0-9\-]+\=*'
4972
                                    ],
4973
                                    'defaults' => [
4974
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
4975
                                        'action' => 'edit'
4976
                                    ]
4977
                                ]
4978
                            ],
4979
                            'delete' => [
4980
                                'type' => Segment::class,
4981
                                'options' => [
4982
                                    'route' => '/delete/:id',
4983
                                    'constraints' => [
4984
                                        'id' => '[A-Za-z0-9\-]+\=*'
4985
                                    ],
4986
                                    'defaults' => [
4987
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
4988
                                        'action' => 'delete'
4989
                                    ]
4990
                                ]
1630 eleazar 4991
                            ],
4992
                            'email' => [
4993
                                'type' => Literal::class,
4994
                                'options' => [
4995
                                    'route' => '/email',
4996
                                    'defaults' => [
4997
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
4998
                                        'action' => 'email'
4999
                                    ]
5000
                                ]
5001
                            ],
1459 eleazar 5002
                        ]
5003
                    ],
1635 eleazar 5004
                    'user-by-email' => [
5005
                        'type' => Literal::class,
5006
                        'options' => [
5007
                            'route' => '/user-by-email',
5008
                            'defaults' => [
5009
                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
5010
                                'action' => 'email'
5011
                            ]
5012
                        ]
1709 eleazar 5013
                    ],
5014
                    'interview' => [
5015
                        'type' => Segment::class,
5016
                        'options' => [
5017
                            'route' => '/interview',
5018
                            'defaults' => [
5019
                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewController',
5020
                                'action' => 'index',
5021
                            ],
5022
                        ],
5023
                        'may_terminate' => true,
5024
                        'child_routes' => [
5025
                            'form' => [
4351 eleazar 5026
                                'type' => Segment::class,
1709 eleazar 5027
                                'options' => [
4349 eleazar 5028
                                    'route' => '/form[/:vacancy_uuid]',
5029
                                    'constraints' => [
5030
                                        'vacancy_uuid' => '[A-Za-z0-9\-]+\=*'
5031
                                    ],
1709 eleazar 5032
                                    'defaults' => [
1711 eleazar 5033
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
2029 eleazar 5034
                                        'action' => 'index',
4352 eleazar 5035
                                        'vacancy_uuid' => '',
1709 eleazar 5036
                                    ],
5037
                                ],
5038
                                'may_terminate' => true,
5039
                                'child_routes' => [
5040
                                    'add' => [
2059 eleazar 5041
                                        'type' => Segment::class,
1709 eleazar 5042
                                        'options' => [
3563 eleazar 5043
                                            'route' => '/add',
1709 eleazar 5044
                                            'defaults' => [
1899 eleazar 5045
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
1709 eleazar 5046
                                                'action' => 'add'
5047
                                            ],
5048
                                        ],
5049
                                    ],
5050
                                    'edit' => [
2775 eleazar 5051
                                        'type' => Segment::class,
1709 eleazar 5052
                                        'options' => [
2764 eleazar 5053
                                            'route' => '/edit/:interview_uuid',
2765 eleazar 5054
                                            'constraints' => [
5055
                                                'interview_uuid' => '[A-Za-z0-9\-]+\=*'
5056
                                            ],
1709 eleazar 5057
                                            'defaults' => [
1944 eleazar 5058
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
1709 eleazar 5059
                                                'action' => 'edit'
5060
                                            ],
5061
                                        ],
5062
                                    ],
5063
                                    'delete' => [
2775 eleazar 5064
                                        'type' => Segment::class,
1709 eleazar 5065
                                        'options' => [
2764 eleazar 5066
                                            'route' => '/delete/:interview_uuid',
2765 eleazar 5067
                                            'constraints' => [
5068
                                                'interview_uuid' => '[A-Za-z0-9\-]+\=*'
5069
                                            ],
1709 eleazar 5070
                                            'defaults' => [
2766 eleazar 5071
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
1709 eleazar 5072
                                                'action' => 'delete'
5073
                                            ],
5074
                                        ],
5075
                                    ],
8781 eleazar 5076
                                ],
5077
                            ],
5078
                            'file' => [
5079
                                'type' => Segment::class,
5080
                                'options' => [
5081
                                    'route' => '/:interview_uuid/file',
5082
                                    'constraints' => [
5083
                                        'interview_uuid' => '[A-Za-z0-9\-]+\=*'
5084
                                    ],
5085
                                    'defaults' => [
5086
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFileController',
5087
                                        'action' => 'index'
5088
                                    ],
5089
                                ],
5090
                                'may_terminate' => true,
5091
                                'child_routes' => [
5092
                                    'add' => [
5093
                                        'type' => Literal::class,
5094
                                        'options' => [
5095
                                            'route' => '/add',
5096
                                            'defaults' => [
5097
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFileController',
5098
                                                'action' => 'add'
5099
                                            ]
5100
                                        ]
5101
                                    ],
5102
                                    'edit' => [
8779 eleazar 5103
                                        'type' => Segment::class,
5104
                                        'options' => [
8874 eleazar 5105
                                            'route' => '/edit/:id',
8779 eleazar 5106
                                            'constraints' => [
8781 eleazar 5107
                                                'id' => '[A-Za-z0-9\-]+\=*'
8779 eleazar 5108
                                            ],
5109
                                            'defaults' => [
5110
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFileController',
8781 eleazar 5111
                                                'action' => 'edit'
5112
                                            ]
5113
                                        ]
5114
                                    ],
5115
                                    'delete' => [
5116
                                        'type' => Segment::class,
5117
                                        'options' => [
8874 eleazar 5118
                                            'route' => '/delete/:id',
8781 eleazar 5119
                                            'constraints' => [
5120
                                                'id' => '[A-Za-z0-9\-]+\=*'
8779 eleazar 5121
                                            ],
8781 eleazar 5122
                                            'defaults' => [
5123
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFileController',
5124
                                                'action' => 'delete'
8779 eleazar 5125
                                            ]
5126
                                        ]
8874 eleazar 5127
                                    ],
8781 eleazar 5128
                                ]
1709 eleazar 5129
                            ],
5130
                            'report' =>[
5131
                                'type' => Segment::class,
5132
                                'options' => [
2864 eleazar 5133
                                    'route' => '/report/:interview_uuid',
5134
                                    'constraints' => [
5135
                                        'interview_uuid' => '[A-Za-z0-9\-]+\=*'
5136
                                    ],
1709 eleazar 5137
                                    'defaults' => [
2864 eleazar 5138
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
5139
                                        'action' => 'report',
1709 eleazar 5140
                                    ],
5141
                                ],
5142
                            ],
3571 eleazar 5143
                            'vacancy' =>[
5144
                                'type' => Segment::class,
5145
                                'options' => [
5146
                                    'route' => '/vacancy/:vacancy_uuid',
5147
                                    'constraints' => [
5148
                                        'vacancy_uuid' => '[A-Za-z0-9\-]+\=*'
5149
                                    ],
5150
                                    'defaults' => [
5151
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
5152
                                        'action' => 'vacancy',
5153
                                    ],
5154
                                ],
5155
                            ],
4367 eleazar 5156
                            'type' =>[
4365 eleazar 5157
                                'type' => Segment::class,
5158
                                'options' => [
4367 eleazar 5159
                                    'route' => '/type/:candidate_uuid',
4365 eleazar 5160
                                    'constraints' => [
5161
                                        'candidate_uuid' => '[A-Za-z0-9\-]+\=*'
5162
                                    ],
5163
                                    'defaults' => [
5164
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
4367 eleazar 5165
                                        'action' => 'type',
4365 eleazar 5166
                                    ],
5167
                                ],
5168
                            ],
1709 eleazar 5169
                        ],
15607 anderson 5170
                    ], */
1459 eleazar 5171
                ],
1333 efrain 5172
            ],
15607 anderson 5173
 
1333 efrain 5174
            'induction' => [
5175
                'type' => Literal::class,
5176
                'options' => [
5177
                    'route' => '/induction',
5178
                    'defaults' => [
5179
                        'controller' => '\LeadersLinked\Controller\UnknownController',
5180
                        'action' => 'index'
5181
                    ]
5182
                ],
5183
                'may_terminate' => true,
15607 anderson 5184
                'child_routes' => []
1333 efrain 5185
            ],
15607 anderson 5186
 
1333 efrain 5187
            'organizational-climate' => [
5188
                'type' => Literal::class,
5189
                'options' => [
5190
                    'route' => '/organizational-climate',
5191
                    'defaults' => [
7218 eleazar 5192
                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateController',
1333 efrain 5193
                        'action' => 'index'
5194
                    ]
5195
                ],
5196
                'may_terminate' => true,
5197
                'child_routes' => [
7218 eleazar 5198
                    'add' => [
5199
                        'type' => Segment::class,
5200
                        'options' => [
5201
                            'route' => '/add',
5202
                            'defaults' => [
7295 eleazar 5203
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateController',
7218 eleazar 5204
                                'action' => 'add'
5205
                            ],
5206
                        ],
5207
                    ],
5208
                    'edit' => [
5209
                        'type' => Segment::class,
5210
                        'options' => [
5211
                            'route' => '/edit/:id',
5212
                            'defaults' => [
7295 eleazar 5213
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateController',
7218 eleazar 5214
                                'action' => 'edit'
5215
                            ],
5216
                        ],
5217
                    ],
5218
                    'delete' => [
5219
                        'type' => Segment::class,
5220
                        'options' => [
5221
                            'route' => '/delete/:id',
5222
                            'defaults' => [
7295 eleazar 5223
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateController',
7218 eleazar 5224
                                'action' => 'delete'
5225
                            ],
5226
                        ],
5227
                    ],
5228
                    'segment' => [
5229
                        'type' => Segment::class,
5230
                        'options' => [
5231
                            'route' => '/segment/:id',
8536 efrain 5232
                            'constraints' => [
5233
                                'id' => '[A-Za-z0-9\-]+\=*'
5234
                            ],
7218 eleazar 5235
                            'defaults' => [
7295 eleazar 5236
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateController',
7218 eleazar 5237
                                'action' => 'segment'
5238
                            ],
5239
                        ],
5240
                    ],
5241
                    'form' => [
5242
                        'type' => Segment::class,
5243
                        'options' => [
5244
                            'route' => '/form',
5245
                            'defaults' => [
7295 eleazar 5246
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateFormController',
7218 eleazar 5247
                                'action' => 'index',
5248
                            ],
5249
                        ],
5250
                        'may_terminate' => true,
5251
                        'child_routes' => [
5252
                            'add' => [
5253
                                'type' => Segment::class,
5254
                                'options' => [
5255
                                    'route' => '/add',
5256
                                    'defaults' => [
7295 eleazar 5257
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateFormController',
7218 eleazar 5258
                                        'action' => 'add'
5259
                                    ],
5260
                                ],
5261
                            ],
5262
                            'edit' => [
5263
                                'type' => Segment::class,
5264
                                'options' => [
5265
                                    'route' => '/edit/:id',
5266
                                    'constraints' => [
5267
                                        'id' => '[A-Za-z0-9\-]+\=*'
5268
                                    ],
5269
                                    'defaults' => [
7295 eleazar 5270
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateFormController',
7218 eleazar 5271
                                        'action' => 'edit'
5272
                                    ]
5273
                                ]
5274
                            ],
5275
                            'delete' => [
5276
                                'type' => Segment::class,
5277
                                'options' => [
5278
                                    'route' => '/delete/:id',
5279
                                    'constraints' => [
5280
                                        'id' => '[A-Za-z0-9\-]+\=*'
5281
                                    ],
5282
                                    'defaults' => [
7295 eleazar 5283
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateFormController',
7218 eleazar 5284
                                        'action' => 'delete'
5285
                                    ]
5286
                                ]
5287
                            ]
5288
                        ],
5289
                    ],
5290
                    'test' => [
5291
                        'type' => Segment::class,
5292
                        'options' => [
14187 efrain 5293
                            'route' => '/test[/:organizational_climate_id]',
7218 eleazar 5294
                            'constraints' => [
14187 efrain 5295
                                'organizational_climate_id' => '[A-Za-z0-9\-]+\=*'
7218 eleazar 5296
                            ],
5297
                            'defaults' => [
7295 eleazar 5298
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateTestController',
7218 eleazar 5299
                                'action' => 'index',
14187 efrain 5300
                                'organizational_climate_id' => '',
7218 eleazar 5301
                            ],
5302
                        ],
5303
                        'may_terminate' => true,
5304
                        'child_routes' => [
5305
                            'add' => [
5306
                                'type' => Segment::class,
5307
                                'options' => [
5308
                                    'route' => '/add',
5309
                                    'defaults' => [
7295 eleazar 5310
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateTestController',
7218 eleazar 5311
                                        'action' => 'add',
5312
                                    ],
5313
                                ],
5314
                            ],
5315
                            'report' => [
5316
                                'type' => Segment::class,
5317
                                'options' => [
5318
                                    'route' => '/report/:uuid',
5319
                                    'defaults' => [
7295 eleazar 5320
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateTestController',
7218 eleazar 5321
                                        'action' => 'report',
5322
                                    ],
5323
                                ],
5324
                            ],
5325
                            'delete' => [
5326
                                'type' => Segment::class,
5327
                                'options' => [
5328
                                    'route' => '/delete/:id',
5329
                                    'defaults' => [
7295 eleazar 5330
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateTestController',
7218 eleazar 5331
                                        'action' => 'delete'
5332
                                    ]
5333
                                ]
5334
                            ]
5335
                        ],
5336
                    ],
5337
                    'report' => [
5338
                        'type' => Segment::class,
5339
                        'options' => [
14187 efrain 5340
                            'route' => '/report[/:organizational_climate_id]',
7218 eleazar 5341
                            'constraints' => [
14187 efrain 5342
                                'organizational_climate_id' => '[A-Za-z0-9\-]+\=*'
7218 eleazar 5343
                            ],
5344
                            'defaults' => [
7295 eleazar 5345
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateReportController',
7218 eleazar 5346
                                'action' => 'index',
14187 efrain 5347
                                'organizational_climate_id' => '',
7218 eleazar 5348
                            ],
5349
                        ],
5350
                        'may_terminate' => true,
5351
                        'child_routes' => [
5352
                            'all' => [
5353
                                'type' => Segment::class,
5354
                                'options' => [
5355
                                    'route' => '/all',
5356
                                    'defaults' => [
7295 eleazar 5357
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateReportController',
7218 eleazar 5358
                                        'action' => 'all',
5359
                                    ]
5360
                                ]
5361
                            ],
5362
                            'overview' => [
5363
                                'type' => Segment::class,
5364
                                'options' => [
5365
                                    'route' => '/overview',
5366
                                    'defaults' => [
7295 eleazar 5367
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateReportController',
7218 eleazar 5368
                                        'action' => 'overview',
5369
                                    ]
5370
                                ]
5371
                            ],
15149 efrain 5372
                            'excel' => [
7218 eleazar 5373
                                'type' => Segment::class,
5374
                                'options' => [
15149 efrain 5375
                                    'route' => '/excel',
7218 eleazar 5376
                                    'defaults' => [
7295 eleazar 5377
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateReportController',
15149 efrain 5378
                                        'action' => 'excel',
7218 eleazar 5379
                                    ]
5380
                                ]
5381
                            ],
5382
                        ],
5383
                    ],
5384
                ],
1333 efrain 5385
            ],
15607 anderson 5386
 
1333 efrain 5387
            'culture' => [
5388
                'type' => Literal::class,
5389
                'options' => [
5390
                    'route' => '/culture',
5391
                    'defaults' => [
5392
                        'controller' => '\LeadersLinked\Controller\UnknownController',
5393
                        'action' => 'index'
5394
                    ]
5395
                ],
5396
                'may_terminate' => true,
15607 anderson 5397
                'child_routes' => []
1333 efrain 5398
            ],
16766 efrain 5399
 
5400
 
5401
            'helpers' => [
13553 nelberth 5402
                'type' => Literal::class,
1333 efrain 5403
                'options' => [
16766 efrain 5404
                    'route' => '/helpers',
1333 efrain 5405
                    'defaults' => [
16766 efrain 5406
                        'controller' => '\LeadersLinked\Controller\HelperController',
13170 nelberth 5407
                        'action' => 'index'
1333 efrain 5408
                    ]
5409
                ],
5410
                'may_terminate' => true,
5411
                'child_routes' => [
16766 efrain 5412
 
5413
 
5414
                    'search-people' => [
13760 nelberth 5415
                        'type' => Literal::class,
5416
                        'options' => [
16766 efrain 5417
                            'route' => '/search-people',
13760 nelberth 5418
                            'defaults' => [
16766 efrain 5419
                                'controller' =>  '\LeadersLinked\Controller\HelperController',
5420
                                'action' => 'searchPeople'
13760 nelberth 5421
                            ]
5422
                        ]
5423
                    ],
16766 efrain 5424
                ],
5425
            ],
5426
 
5427
            'inmail-personal' => [
5428
                'type' =>  Literal::class,
5429
                'options' => [
5430
                    'route' => '/inmail-personal',
5431
                    'defaults' => [
5432
                        'controller' => '\LeadersLinked\Controller\InMailPersonalController',
5433
                        'action' => 'index'
5434
                    ]
5435
                ],
5436
                'may_terminate' => true,
5437
                'child_routes' => [
5438
 
5439
                    'start-conversation' => [
13524 nelberth 5440
                        'type' => Literal::class,
13013 nelberth 5441
                        'options' => [
16766 efrain 5442
                            'route' => '/start-conversation',
13013 nelberth 5443
                            'defaults' => [
16766 efrain 5444
                                'controller' =>  '\LeadersLinked\Controller\InMailPersonalController',
5445
                                'action' => 'startConversation'
13028 nelberth 5446
                            ]
13524 nelberth 5447
                        ]
5448
                    ],
16766 efrain 5449
 
5450
                    'delete' => [
13553 nelberth 5451
                        'type' => Segment::class,
13524 nelberth 5452
                        'options' => [
16766 efrain 5453
                            'route' => '/:id/delete',
13553 nelberth 5454
                            'constraints' => [
5455
                                'id' => '[A-Za-z0-9\-]+\=*',
5456
                            ],
13524 nelberth 5457
                            'defaults' => [
16766 efrain 5458
                                'controller' =>  '\LeadersLinked\Controller\InMailPersonalController',
5459
                                'action' => 'delete'
13524 nelberth 5460
                            ]
16766 efrain 5461
                        ]
5462
                    ],
5463
                    'messages' => [
5464
                        'type' => Segment::class,
5465
                        'options' => [
5466
                            'route' => '/:id/messages',
5467
                            'constraints' => [
5468
                                'id' => '[A-Za-z0-9\-]+\=*',
5469
                            ],
5470
                            'defaults' => [
5471
                                'controller' =>  '\LeadersLinked\Controller\InMailPersonalController',
5472
                                'action' => 'message'
5473
                            ]
13028 nelberth 5474
                        ],
5475
                        'may_terminate' => true,
5476
                        'child_routes' => [
16766 efrain 5477
                            'send' => [
5478
                                'type' => Segment::class,
13028 nelberth 5479
                                'options' => [
16766 efrain 5480
                                    'route' => '/send[/encoding/:encoding]',
5481
                                    'constraints' => [
5482
                                        'encoding' => 'base64'
5483
                                    ],
13028 nelberth 5484
                                    'defaults' => [
16766 efrain 5485
                                        'controller' =>  '\LeadersLinked\Controller\InMailPersonalController',
5486
                                        'action' => 'sendMessage'
13028 nelberth 5487
                                    ]
16766 efrain 5488
                                ]
5489
                            ],
5490
                            'delete' => [
5491
                                'type' => Segment::class,
5492
                                'options' => [
5493
                                    'route' => '/delete/:message',
5494
                                    'constraints' => [
5495
                                        'message' => '[A-Za-z0-9\-]+\=*',
13553 nelberth 5496
                                    ],
16766 efrain 5497
                                    'defaults' => [
5498
                                        'controller' =>  '\LeadersLinked\Controller\InMailPersonalController',
5499
                                        'action' => 'delete'
5500
                                    ]
5501
                                ]
13013 nelberth 5502
                            ],
16766 efrain 5503
                        ],
5504
                    ],
5505
                ],
5506
            ],
5507
 
5508
 
5509
            'inmail-company' => [
5510
                'type' => Literal::class,
5511
                'options' => [
5512
                    'route' => '/inmail-company',
5513
 
5514
                    'defaults' => [
5515
                        'controller' => '\LeadersLinked\Controller\InMailCompanyController',
5516
                        'action' => 'index'
5517
                    ]
5518
                ],
5519
                'may_terminate' => true,
5520
                'child_routes' => [
5521
                    'start-conversation' => [
5522
                        'type' => Literal::class,
5523
                        'options' => [
5524
                            'route' => '/start-conversation',
5525
                            'defaults' => [
5526
                                'controller' =>  '\LeadersLinked\Controller\InMailPersonalController',
5527
                                'action' => 'startConversation'
5528
                            ]
13553 nelberth 5529
                        ]
13013 nelberth 5530
                    ],
16766 efrain 5531
                    'delete' => [
13778 nelberth 5532
                        'type' => Segment::class,
5533
                        'options' => [
16766 efrain 5534
                            'route' => '/:id/delete',
5535
                            'defaults' => [
5536
                                'controller' => '\LeadersLinked\Controller\InMailCompanyController',
5537
                                'action' => 'delete'
5538
                            ]
5539
                        ]
5540
                    ],
5541
                    'messages' => [
5542
                        'type' => Segment::class,
5543
                        'options' => [
5544
                            'route' => '/:id/messages',
13778 nelberth 5545
                            'constraints' => [
5546
                                'id' => '[A-Za-z0-9\-]+\=*',
5547
                            ],
5548
                            'defaults' => [
16766 efrain 5549
                                'controller' => '\LeadersLinked\Controller\InMailCompanyController',
5550
                                'action' => 'message'
13778 nelberth 5551
                            ]
5552
                        ],
5553
                        'may_terminate' => true,
5554
                        'child_routes' => [
16766 efrain 5555
                            'send' => [
5556
                                'type' => Segment::class,
13778 nelberth 5557
                                'options' => [
16766 efrain 5558
                                    'route' => '/send[/encoding/:encoding]',
5559
                                    'constraints' => [
5560
                                        'encoding' => 'base64'
5561
                                    ],
13778 nelberth 5562
                                    'defaults' => [
16766 efrain 5563
                                        'controller' => '\LeadersLinked\Controller\InMailCompanyController',
5564
                                        'action' => 'sendMessage'
13778 nelberth 5565
                                    ]
16766 efrain 5566
                                ]
5567
                            ],
5568
                            'delete' => [
5569
                                'type' => Segment::class,
5570
                                'options' => [
5571
                                    'route' => '/delete/:message',
5572
                                    'constraints' => [
5573
                                        'message' => '[A-Za-z0-9\-]+\=*',
13778 nelberth 5574
                                    ],
16766 efrain 5575
                                    'defaults' => [
5576
                                        'controller' => '\LeadersLinked\Controller\InMailCompanyController',
5577
                                        'action' => 'delete'
5578
                                    ]
5579
                                ]
13778 nelberth 5580
                            ],
16766 efrain 5581
                        ],
13778 nelberth 5582
                    ],
13524 nelberth 5583
                ],
5584
            ],
15607 anderson 5585
 
5586
 
13524 nelberth 5587
            'communication' => [
5588
                'type' => Literal::class,
5589
                'options' => [
5590
                    'route' => '/communication',
5591
                    'defaults' => [
5592
                        'controller' => '\LeadersLinked\Controller\CommunicationController',
5593
                        'action' => 'index'
5594
                    ]
5595
                ],
5596
                'may_terminate' => true,
5597
                'child_routes' => [
13672 nelberth 5598
                    'inbox' => [
13652 nelberth 5599
                        'type' => Literal::class,
5600
                        'options' => [
13672 nelberth 5601
                            'route' => '/inbox',
15607 anderson 5602
 
13652 nelberth 5603
                            'defaults' => [
13672 nelberth 5604
                                'controller' => '\LeadersLinked\Controller\CommunicationInboxController',
13652 nelberth 5605
                                'action' => 'index'
5606
                            ]
5607
                        ],
5608
                        'may_terminate' => true,
5609
                        'child_routes' => [
13732 nelberth 5610
                            'sendall' => [
5611
                                'type' => Literal::class,
5612
                                'options' => [
5613
                                    'route' => '/sendall',
5614
                                    'defaults' => [
5615
                                        'controller' => '\LeadersLinked\Controller\CommunicationInboxController',
5616
                                        'action' => 'sendAll'
5617
                                    ]
5618
                                ]
5619
                            ],
13652 nelberth 5620
                            'search-people' => [
5621
                                'type' => Literal::class,
5622
                                'options' => [
5623
                                    'route' => '/search-people',
5624
                                    'defaults' => [
13672 nelberth 5625
                                        'controller' => '\LeadersLinked\Controller\CommunicationInboxController',
13652 nelberth 5626
                                        'action' => 'searchPeople'
5627
                                    ]
5628
                                ]
5629
                            ],
5630
                            'view' => [
5631
                                'type' => Segment::class,
5632
                                'options' => [
5633
                                    'route' => '/view[/:id]',
5634
                                    'constraints' => [
5635
                                        'id' => '[A-Za-z0-9\-]+\=*',
5636
                                    ],
5637
                                    'defaults' => [
13672 nelberth 5638
                                        'controller' => '\LeadersLinked\Controller\CommunicationInboxController',
13652 nelberth 5639
                                        'action' => 'view'
5640
                                    ]
5641
                                ],
5642
                                'may_terminate' => true,
5643
                                'child_routes' => [
5644
                                    'message' => [
5645
                                        'type' => Literal::class,
5646
                                        'options' => [
5647
                                            'route' => '/message',
5648
                                            'defaults' => [
13672 nelberth 5649
                                                'controller' => '\LeadersLinked\Controller\CommunicationInboxController',
13652 nelberth 5650
                                                'action' => 'message'
5651
                                            ]
5652
                                        ],
5653
                                        'may_terminate' => true,
5654
                                        'child_routes' => [
5655
                                            'send' => [
5656
                                                'type' => Segment::class,
5657
                                                'options' => [
5658
                                                    'route' => '/send[/encoding/:encoding]',
5659
                                                    'constraints' => [
5660
                                                        'encoding' => 'base64'
5661
                                                    ],
5662
                                                    'defaults' => [
13672 nelberth 5663
                                                        'controller' => '\LeadersLinked\Controller\CommunicationInboxController',
13652 nelberth 5664
                                                        'action' => 'sendMessage'
5665
                                                    ]
5666
                                                ]
5667
                                            ],
5668
                                        ],
5669
                                    ],
5670
                                ]
5671
                            ],
15607 anderson 5672
 
13652 nelberth 5673
                        ],
5674
                    ],
15607 anderson 5675
 
1333 efrain 5676
                ]
5677
            ],
15607 anderson 5678
 
16701 efrain 5679
 
5680
            'fast-survey' => [
5681
                'type' => Literal::class,
5682
                'options' => [
5683
                    'route' => '/fast-survey',
5684
                    'defaults' => [
5685
                        'controller' => '\LeadersLinked\Controller\FastSurveyController',
5686
                        'action' => 'index'
5687
                    ]
5688
                ],
5689
                'may_terminate' => true,
5690
                'child_routes' => [
5691
                    'add' => [
5692
                        'type' => Segment::class,
5693
                        'options' => [
5694
                            'route' => '/add',
5695
                            'defaults' => [
5696
                                'controller' => '\LeadersLinked\Controller\FastSurveyController',
5697
                                'action' => 'add'
5698
                            ],
5699
                        ],
5700
                    ],
5701
                    'edit' => [
5702
                        'type' => Segment::class,
5703
                        'options' => [
5704
                            'route' => '/edit/:id',
5705
                            'defaults' => [
5706
                                'controller' => '\LeadersLinked\Controller\FastSurveyController',
5707
                                'action' => 'edit'
5708
                            ],
5709
                        ],
5710
                    ],
5711
                    'delete' => [
5712
                        'type' => Segment::class,
5713
                        'options' => [
5714
                            'route' => '/delete/:id',
5715
                            'defaults' => [
5716
                                'controller' => '\LeadersLinked\Controller\FastSurveyController',
5717
                                'action' => 'delete'
5718
                            ],
5719
                        ],
5720
                    ],
16747 efrain 5721
                    'chart' => [
16701 efrain 5722
                        'type' => Segment::class,
5723
                        'options' => [
16747 efrain 5724
                            'route' => '/chart/:id',
16701 efrain 5725
                            'defaults' => [
5726
                                'controller' => '\LeadersLinked\Controller\FastSurveyController',
16747 efrain 5727
                                'action' => 'chart'
16701 efrain 5728
                            ],
5729
                        ],
5730
                    ],
5731
                    'download' => [
5732
                        'type' => Segment::class,
5733
                        'options' => [
5734
                            'route' => '/download/:id',
5735
                            'defaults' => [
5736
                                'controller' => '\LeadersLinked\Controller\FastSurveyController',
5737
                                'action' => 'download'
5738
                            ],
5739
                        ],
5740
                    ],
5741
 
5742
                ]
5743
            ],
15607 anderson 5744
 
4386 eleazar 5745
            'survey' => [
1333 efrain 5746
                'type' => Literal::class,
5747
                'options' => [
4397 eleazar 5748
                    'route' => '/survey',
1333 efrain 5749
                    'defaults' => [
4375 eleazar 5750
                        'controller' => '\LeadersLinked\Controller\SurveyController',
1333 efrain 5751
                        'action' => 'index'
5752
                    ]
5753
                ],
5754
                'may_terminate' => true,
5755
                'child_routes' => [
4579 eleazar 5756
                    'add' => [
5757
                        'type' => Segment::class,
5758
                        'options' => [
5759
                            'route' => '/add',
5760
                            'defaults' => [
5761
                                'controller' => '\LeadersLinked\Controller\SurveyController',
5762
                                'action' => 'add'
5763
                            ],
5764
                        ],
5765
                    ],
5766
                    'edit' => [
5767
                        'type' => Segment::class,
5768
                        'options' => [
5769
                            'route' => '/edit/:id',
5770
                            'defaults' => [
5771
                                'controller' => '\LeadersLinked\Controller\SurveyController',
5772
                                'action' => 'edit'
5773
                            ],
5774
                        ],
5775
                    ],
5776
                    'delete' => [
5777
                        'type' => Segment::class,
5778
                        'options' => [
5779
                            'route' => '/delete/:id',
5780
                            'defaults' => [
5781
                                'controller' => '\LeadersLinked\Controller\SurveyController',
5782
                                'action' => 'delete'
5783
                            ],
5784
                        ],
5785
                    ],
5786
                    'segment' => [
5787
                        'type' => Segment::class,
5788
                        'options' => [
5789
                            'route' => '/segment/:id',
5790
                            'defaults' => [
5791
                                'controller' => '\LeadersLinked\Controller\SurveyController',
5792
                                'action' => 'segment'
5793
                            ],
5794
                        ],
5795
                    ],
4374 eleazar 5796
                    'form' => [
5797
                        'type' => Segment::class,
5798
                        'options' => [
5799
                            'route' => '/form',
5800
                            'defaults' => [
4375 eleazar 5801
                                'controller' => '\LeadersLinked\Controller\SurveyFormController',
4374 eleazar 5802
                                'action' => 'index',
5803
                            ],
5804
                        ],
5805
                        'may_terminate' => true,
5806
                        'child_routes' => [
5807
                            'add' => [
5808
                                'type' => Segment::class,
5809
                                'options' => [
5810
                                    'route' => '/add',
5811
                                    'defaults' => [
4375 eleazar 5812
                                        'controller' => '\LeadersLinked\Controller\SurveyFormController',
4374 eleazar 5813
                                        'action' => 'add'
5814
                                    ],
5815
                                ],
5816
                            ],
5817
                            'edit' => [
5818
                                'type' => Segment::class,
5819
                                'options' => [
5820
                                    'route' => '/edit/:id',
5821
                                    'constraints' => [
5822
                                        'id' => '[A-Za-z0-9\-]+\=*'
5823
                                    ],
5824
                                    'defaults' => [
4375 eleazar 5825
                                        'controller' => '\LeadersLinked\Controller\SurveyFormController',
4374 eleazar 5826
                                        'action' => 'edit'
5827
                                    ]
5828
                                ]
5829
                            ],
5830
                            'delete' => [
5831
                                'type' => Segment::class,
5832
                                'options' => [
5833
                                    'route' => '/delete/:id',
5834
                                    'constraints' => [
5835
                                        'id' => '[A-Za-z0-9\-]+\=*'
5836
                                    ],
5837
                                    'defaults' => [
4375 eleazar 5838
                                        'controller' => '\LeadersLinked\Controller\SurveyFormController',
4374 eleazar 5839
                                        'action' => 'delete'
5840
                                    ]
5841
                                ]
5842
                            ]
5843
                        ],
5844
                    ],
5287 eleazar 5845
                    'test' => [
5846
                        'type' => Segment::class,
5847
                        'options' => [
5884 eleazar 5848
                            'route' => '/test[/:survey_id]',
5849
                            'constraints' => [
5850
                                'survey_id' => '[A-Za-z0-9\-]+\=*'
5851
                            ],
5287 eleazar 5852
                            'defaults' => [
5853
                                'controller' => '\LeadersLinked\Controller\SurveyTestController',
5854
                                'action' => 'index',
5884 eleazar 5855
                                'survey_id' => '',
5287 eleazar 5856
                            ],
5857
                        ],
5858
                        'may_terminate' => true,
5859
                        'child_routes' => [
5860
                            'add' => [
5861
                                'type' => Segment::class,
5862
                                'options' => [
6036 eleazar 5863
                                    'route' => '/add',
5287 eleazar 5864
                                    'defaults' => [
5865
                                        'controller' => '\LeadersLinked\Controller\SurveyTestController',
5732 eleazar 5866
                                        'action' => 'add',
5287 eleazar 5867
                                    ],
5868
                                ],
5869
                            ],
6662 eleazar 5870
                            'report' => [
5871
                                'type' => Segment::class,
5872
                                'options' => [
6882 eleazar 5873
                                    'route' => '/report/:uuid',
6662 eleazar 5874
                                    'defaults' => [
5875
                                        'controller' => '\LeadersLinked\Controller\SurveyTestController',
5876
                                        'action' => 'report',
5877
                                    ],
5878
                                ],
5879
                            ],
5287 eleazar 5880
                            'delete' => [
5881
                                'type' => Segment::class,
5882
                                'options' => [
6882 eleazar 5883
                                    'route' => '/delete/:id',
5287 eleazar 5884
                                    'defaults' => [
5885
                                        'controller' => '\LeadersLinked\Controller\SurveyTestController',
5886
                                        'action' => 'delete'
5887
                                    ]
5888
                                ]
5889
                            ]
5890
                        ],
5891
                    ],
5823 eleazar 5892
                    'report' => [
5893
                        'type' => Segment::class,
5894
                        'options' => [
5911 eleazar 5895
                            'route' => '/report[/:survey_id]',
5896
                            'constraints' => [
5897
                                'survey_id' => '[A-Za-z0-9\-]+\=*'
5898
                            ],
5823 eleazar 5899
                            'defaults' => [
5900
                                'controller' => '\LeadersLinked\Controller\SurveyReportController',
5901
                                'action' => 'index',
5911 eleazar 5902
                                'survey_id' => '',
5823 eleazar 5903
                            ],
5904
                        ],
5905
                        'may_terminate' => true,
5906
                        'child_routes' => [
5907
                            'all' => [
5908
                                'type' => Segment::class,
5909
                                'options' => [
5868 eleazar 5910
                                    'route' => '/all',
5823 eleazar 5911
                                    'defaults' => [
5912
                                        'controller' => '\LeadersLinked\Controller\SurveyReportController',
5868 eleazar 5913
                                        'action' => 'all',
5823 eleazar 5914
                                    ]
5915
                                ]
5916
                            ],
6496 eleazar 5917
                            'overview' => [
5918
                                'type' => Segment::class,
5919
                                'options' => [
5920
                                    'route' => '/overview',
5921
                                    'defaults' => [
5922
                                        'controller' => '\LeadersLinked\Controller\SurveyReportController',
5923
                                        'action' => 'overview',
5924
                                    ]
5925
                                ]
5926
                            ],
15149 efrain 5927
                            'excel' => [
7024 eleazar 5928
                                'type' => Segment::class,
5929
                                'options' => [
15149 efrain 5930
                                    'route' => '/excel',
7024 eleazar 5931
                                    'defaults' => [
5932
                                        'controller' => '\LeadersLinked\Controller\SurveyReportController',
15149 efrain 5933
                                        'action' => 'excel',
7024 eleazar 5934
                                    ]
5935
                                ]
5936
                            ],
5823 eleazar 5937
                        ],
5938
                    ],
1333 efrain 5939
                ]
5940
            ],
15607 anderson 5941
 
1333 efrain 5942
            'building-my-future' => [
5943
                'type' => Literal::class,
5944
                'options' => [
5945
                    'route' => '/building-my-future',
5946
                    'defaults' => [
5947
                        'controller' => '\LeadersLinked\Controller\UnknownController',
5948
                        'action' => 'index'
5949
                    ]
5950
                ],
5951
                'may_terminate' => true,
15607 anderson 5952
                'child_routes' => []
1333 efrain 5953
            ],
11431 nelberth 5954
 
5955
            'csrf' => [
5956
                'type' => Literal::class,
5957
                'options' => [
5958
                    'route' => '/csrf',
5959
                    'defaults' => [
14692 efrain 5960
                        'controller' => '\LeadersLinked\Controller\DashboardController',
11431 nelberth 5961
                        'action' => 'csrf'
5962
                    ]
5963
                ]
5964
            ],
11340 nelberth 5965
            'chat' => [
5966
                'type' => Literal::class,
5967
                'options' => [
5968
                    'route' => '/chat',
5969
                    'defaults' => [
5970
                        'controller' => '\LeadersLinked\Controller\ChatController',
5971
                        'action' => 'index'
5972
                    ]
5973
                ],
5974
                'may_terminate' => true,
5975
                'child_routes' => [
5976
                    // Inicio de los Routes del Chat //
7184 nelberth 5977
 
11340 nelberth 5978
                    'heart-beat' => [
5979
                        'type' => Literal::class,
5980
                        'options' => [
5981
                            'route' => '/heart-beat',
5982
                            'defaults' => [
5983
                                'controller' => '\LeadersLinked\Controller\ChatController',
5984
                                'action' => 'heartBeat',
5985
                            ],
5986
                        ],
5987
                    ],
16260 anderson 5988
                    'users' => [
5989
                        'type' => Literal::class,
5990
                        'options' => [
5991
                            'route' => '/users',
5992
                            'defaults' => [
5993
                                'controller' => '\LeadersLinked\Controller\ChatController',
5994
                                'action' => 'users',
5995
                            ],
5996
                        ],
5997
                    ],
11340 nelberth 5998
                    'create-group' => [
5999
                        'type' => Literal::class,
6000
                        'options' => [
6001
                            'route' => '/create-group',
6002
                            'defaults' => [
6003
                                'controller' => '\LeadersLinked\Controller\ChatController',
6004
                                'action' => 'createGroup',
6005
                            ],
6006
                        ],
6007
                    ],
16180 anderson 6008
                    'zoom' => [
6009
                        'type' => Segment::class,
6010
                        'options' => [
6011
                            'route' => '/zoom/:id',
6012
                            'constraints' => [
6013
                                'id' => '[A-Za-z0-9\-]+\=*',
6014
                            ],
6015
                            'defaults' => [
6016
                                'controller' => '\LeadersLinked\Controller\ChatController',
6017
                                'action' => 'zoom',
6018
                            ],
6019
                        ],
6020
                    ],
16270 anderson 6021
                    'open-or-create' => [
6022
                        'type' => Segment::class,
6023
                        'options' => [
6024
                            'route' => '/open-or-create/:id',
6025
                            'constraints' => [
6026
                                'id' => '[A-Za-z0-9\-]+\=*',
6027
                            ],
6028
                            'defaults' => [
6029
                                'controller' => '\LeadersLinked\Controller\ChatController',
6030
                                'action' => 'openOrCreate',
6031
                            ],
6032
                        ],
6033
                    ],
11340 nelberth 6034
                    'add-user-to-group' => [
6035
                        'type' => Segment::class,
6036
                        'options' => [
6037
                            'route' => '/add-user-to-group/:group_id',
6038
                            'constraints' => [
6039
                                'group_id' => '[A-Za-z0-9\-]+\=*',
6040
                            ],
6041
                            'defaults' => [
6042
                                'controller' => '\LeadersLinked\Controller\ChatController',
6043
                                'action' => 'addUserToGroup',
6044
                            ],
6045
                        ],
6046
                    ],
6047
                    'mark-seen' => [
6048
                        'type' => Segment::class,
6049
                        'options' => [
6050
                            'route' => '/mark-seen/:id',
6051
                            'constraints' => [
6052
                                'id' => '[A-Za-z0-9\-]+\=*',
6053
                            ],
6054
                            'defaults' => [
6055
                                'controller' => '\LeadersLinked\Controller\ChatController',
6056
                                'action' => 'markSeen',
6057
                            ],
6058
                        ],
6059
                    ],
6060
                    'mark-received' => [
6061
                        'type' => Segment::class,
6062
                        'options' => [
6063
                            'route' => '/mark-received/:id',
6064
                            'constraints' => [
6065
                                'id' => '[A-Za-z0-9\-]+\=*',
6066
                            ],
6067
                            'defaults' => [
6068
                                'controller' => '\LeadersLinked\Controller\ChatController',
6069
                                'action' => 'markReceived',
6070
                            ],
6071
                        ],
6072
                    ],
6073
                    'remove-user-from-group' => [
6074
                        'type' => Segment::class,
6075
                        'options' => [
6076
                            'route' => '/remove-user-from-group/:group_id/:user_id',
6077
                            'constraints' => [
6078
                                'group_id' => '[A-Za-z0-9\-]+\=*',
6079
                                'user_id' => '[A-Za-z0-9\-]+\=*',
6080
                            ],
6081
                            'defaults' => [
6082
                                'controller' => '\LeadersLinked\Controller\ChatController',
6083
                                'action' => 'removeUserFromGroup',
6084
                            ],
6085
                        ],
6086
                    ],
6087
                    'get-all-messages' => [
6088
                        'type' => Segment::class,
6089
                        'options' => [
6090
                            'route' => '/get-all-messages/:id',
6091
                            'constraints' => [
6092
                                'id' => '[A-Za-z0-9\-]+\=*',
6093
                            ],
6094
                            'defaults' => [
6095
                                'controller' => '\LeadersLinked\Controller\ChatController',
6096
                                'action' => 'getAllMessages',
6097
                            ],
6098
                        ],
6099
                    ],
6100
                    'send' => [
6101
                        'type' => Segment::class,
6102
                        'options' => [
6103
                            'route' => '/send/:id',
6104
                            'constraints' => [
6105
                                'id' => '[A-Za-z0-9\-]+\=*',
6106
                            ],
6107
                            'defaults' => [
6108
                                'controller' => '\LeadersLinked\Controller\ChatController',
6109
                                'action' => 'send',
6110
                            ],
6111
                        ],
6112
                    ],
6113
                    'get-contacts-availables-for-group' => [
6114
                        'type' => Segment::class,
6115
                        'options' => [
6116
                            'route' => '/get-contacts-availables-for-group/:group_id',
6117
                            'constraints' => [
6118
                                'group_id' => '[A-Za-z0-9\-]+\=*',
6119
                            ],
6120
                            'defaults' => [
6121
                                'controller' => '\LeadersLinked\Controller\ChatController',
6122
                                'action' => 'contactAvailableGroupList',
6123
                            ],
6124
                        ],
6125
                    ],
6126
                    'get-contact-group-list' => [
6127
                        'type' => Segment::class,
6128
                        'options' => [
6129
                            'route' => '/get-contact-group-list/:group_id',
6130
                            'constraints' => [
6131
                                'group_id' => '[A-Za-z0-9\-]+\=*',
6132
                            ],
6133
                            'defaults' => [
6134
                                'controller' => '\LeadersLinked\Controller\ChatController',
6135
                                'action' => 'contactGroupList',
6136
                            ],
6137
                        ],
6138
                    ],
6139
                    'leave-group' => [
6140
                        'type' => Segment::class,
6141
                        'options' => [
6142
                            'route' => '/leave-group/:group_id',
6143
                            'constraints' => [
6144
                                'group_id' => '[A-Za-z0-9\-]+\=*',
6145
                            ],
6146
                            'defaults' => [
6147
                                'controller' => '\LeadersLinked\Controller\ChatController',
6148
                                'action' => 'leaveGroup',
6149
                            ],
6150
                        ],
6151
                    ],
6152
                    'delete-group' => [
6153
                        'type' => Segment::class,
6154
                        'options' => [
6155
                            'route' => '/delete-group/:group_id',
6156
                            'constraints' => [
6157
                                'group_id' => '[A-Za-z0-9\-]+\=*',
6158
                            ],
6159
                            'defaults' => [
6160
                                'controller' => '\LeadersLinked\Controller\ChatController',
6161
                                'action' => 'deleteGroup',
6162
                            ],
6163
                        ],
6164
                    ],
14692 efrain 6165
                    'open' => [
6166
                        'type' => Segment::class,
6167
                        'options' => [
6168
                            'route' => '/open/:id',
6169
                            'constraints' => [
6170
                                'id' => '[A-Za-z0-9\-]+\=*',
6171
                            ],
6172
                            'defaults' => [
6173
                                'controller' => '\LeadersLinked\Controller\ChatController',
6174
                                'action' => 'open',
6175
                            ],
6176
                        ],
6177
                    ],
11340 nelberth 6178
                    'close' => [
6179
                        'type' => Segment::class,
6180
                        'options' => [
6181
                            'route' => '/close/:id',
6182
                            'constraints' => [
6183
                                'id' => '[A-Za-z0-9\-]+\=*',
6184
                            ],
6185
                            'defaults' => [
6186
                                'controller' => '\LeadersLinked\Controller\ChatController',
6187
                                'action' => 'close',
6188
                            ],
6189
                        ],
6190
                    ],
6191
                    'clear' => [
6192
                        'type' => Segment::class,
6193
                        'options' => [
6194
                            'route' => '/clear/:id',
6195
                            'constraints' => [
6196
                                'id' => '[A-Za-z0-9\-]+\=*',
6197
                            ],
6198
                            'defaults' => [
6199
                                'controller' => '\LeadersLinked\Controller\ChatController',
6200
                                'action' => 'clear',
6201
                            ],
6202
                        ],
6203
                    ],
6204
                    'upload' => [
6205
                        'type' => Segment::class,
6206
                        'options' => [
6207
                            'route' => '/upload/:id',
6208
                            'constraints' => [
6209
                                'id' => '[A-Za-z0-9\-]+\=*',
6210
                            ],
6211
                            'defaults' => [
6212
                                'controller' => '\LeadersLinked\Controller\ChatController',
6213
                                'action' => 'upload',
6214
                            ],
6215
                        ],
6216
                    ],
6217
                ],
6218
            ],
15607 anderson 6219
 
1333 efrain 6220
            'high-performance-teams' => [
6221
                'type' => Literal::class,
6222
                'options' => [
4591 nelberth 6223
                    'route' => '/high-performance-teams',
4588 nelberth 6224
                    'defaults' => [
4376 nelberth 6225
                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsController',
1333 efrain 6226
                        'action' => 'index'
6227
                    ]
6228
                ],
6229
                'may_terminate' => true,
6230
                'child_routes' => [
7240 nelberth 6231
                    'groups' => [
4388 nelberth 6232
                        'type' => Literal::class,
6233
                        'options' => [
7224 nelberth 6234
                            'route' => '/groups',
4388 nelberth 6235
                            'defaults' => [
7224 nelberth 6236
                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsController',
4388 nelberth 6237
                                'action' => 'index'
6238
                            ]
15607 anderson 6239
                        ], 'may_terminate' => true,
4411 nelberth 6240
                        'child_routes' => [
6241
 
6242
                            'add' => [
6243
                                'type' => Literal::class,
6244
                                'options' => [
6245
                                    'route' => '/add',
6246
                                    'defaults' => [
7224 nelberth 6247
                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsController',
4411 nelberth 6248
                                        'action' => 'add'
6249
                                    ]
6250
                                ]
6251
                            ],
6252
                            'edit' => [
6253
                                'type' => Segment::class,
6254
                                'options' => [
11082 nelberth 6255
                                    'route' => '/edit/:group_id',
4411 nelberth 6256
                                    'constraints' => [
11082 nelberth 6257
                                        'group_id' => '[A-Za-z0-9\-]+\=*'
4411 nelberth 6258
                                    ],
6259
                                    'defaults' => [
7224 nelberth 6260
                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsController',
4411 nelberth 6261
                                        'action' => 'edit'
6262
                                    ]
6263
                                ]
6264
                            ],
6265
                            'delete' => [
6266
                                'type' => Segment::class,
6267
                                'options' => [
11082 nelberth 6268
                                    'route' => '/delete/:group_id',
4411 nelberth 6269
                                    'constraints' => [
11082 nelberth 6270
                                        'group_id' => '[A-Za-z0-9\-]+\=*'
4411 nelberth 6271
                                    ],
6272
                                    'defaults' => [
7224 nelberth 6273
                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsController',
4411 nelberth 6274
                                        'action' => 'delete'
6275
                                    ]
6276
                                ]
15607 anderson 6277
                            ], 'view' => [
4509 nelberth 6278
                                'type' => Segment::class,
6279
                                'options' => [
11082 nelberth 6280
                                    'route' => '/view/:group_id',
4509 nelberth 6281
                                    'constraints' => [
11082 nelberth 6282
                                        'group_id' => '[A-Za-z0-9\-]+\=*',
4509 nelberth 6283
                                    ],
6284
                                    'defaults' => [
7308 nelberth 6285
                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewController',
4571 nelberth 6286
                                        'action' => 'index'
4509 nelberth 6287
                                    ]
7483 nelberth 6288
                                ],
15607 anderson 6289
                                'may_terminate' => true,
6290
                                'child_routes' => [
6291
                                    'objectives' => [
6292
                                        'type' => Literal::class,
6293
                                        'options' => [
6294
                                            'route' => '/objectives',
6295
                                            'defaults' => [
6296
                                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController',
6297
                                                'action' => 'index'
6298
                                            ]
6299
                                        ],
6300
 
6301
                                        'may_terminate' => true,
6302
                                        'child_routes' => [
6303
 
6304
                                            'add' => [
6305
                                                'type' => Literal::class,
6306
                                                'options' => [
6307
                                                    'route' => '/add',
6308
                                                    'defaults' => [
6309
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController',
6310
                                                        'action' => 'add'
6311
                                                    ]
12408 nelberth 6312
                                                ]
6313
                                            ],
15607 anderson 6314
                                            'edit' => [
6315
                                                'type' => Segment::class,
6316
                                                'options' => [
6317
                                                    'route' => '/edit/:id',
6318
                                                    'constraints' => [
6319
                                                        'id' => '[A-Za-z0-9\-]+\=*'
6320
                                                    ],
6321
                                                    'defaults' => [
6322
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController',
6323
                                                        'action' => 'edit'
12408 nelberth 6324
                                                    ]
15607 anderson 6325
                                                ]
6326
                                            ],
6327
                                            'delete' => [
6328
                                                'type' => Segment::class,
6329
                                                'options' => [
6330
                                                    'route' => '/delete/:id',
6331
                                                    'constraints' => [
6332
                                                        'id' => '[A-Za-z0-9\-]+\=*'
6333
                                                    ],
6334
                                                    'defaults' => [
6335
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController',
6336
                                                        'action' => 'delete'
12408 nelberth 6337
                                                    ]
15607 anderson 6338
                                                ]
6339
                                            ],
6340
                                            'report' => [
6341
                                                'type' => Segment::class,
6342
                                                'options' => [
6343
                                                    'route' => '/report/:id',
6344
                                                    'constraints' => [
6345
                                                        'id' => '[A-Za-z0-9\-]+\=*'
6346
                                                    ],
6347
                                                    'defaults' => [
6348
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController',
6349
                                                        'action' => 'report'
12408 nelberth 6350
                                                    ]
15607 anderson 6351
                                                ]
6352
                                            ],
6353
                                            'reportall' => [
6354
                                                'type' => Literal::class,
6355
                                                'options' => [
6356
                                                    'route' => '/reportall',
6357
                                                    'defaults' => [
6358
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController',
6359
                                                        'action' => 'reportall'
12408 nelberth 6360
                                                    ]
15607 anderson 6361
                                                ]
6362
                                            ],
6363
 
6364
                                            'matriz' => [
6365
                                                'type' => Literal::class,
6366
                                                'options' => [
6367
                                                    'route' => '/matriz',
6368
                                                    'defaults' => [
6369
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController',
6370
                                                        'action' => 'matriz'
12408 nelberth 6371
                                                    ]
15607 anderson 6372
                                                ]
6373
                                            ],
6374
                                            'goals' => [
6375
                                                'type' => Segment::class,
6376
                                                'options' => [
6377
                                                    'route' => '/:objective_id/goals',
6378
                                                    'constraints' => [
6379
                                                        'objective_id' => '[A-Za-z0-9\-]+\=*'
6380
                                                    ],
6381
                                                    'defaults' => [
6382
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewGoalsController',
6383
                                                        'action' => 'index'
12408 nelberth 6384
                                                    ]
6385
                                                ],
15607 anderson 6386
 
6387
                                                'may_terminate' => true,
6388
                                                'child_routes' => [
6389
                                                    'add' => [
6390
                                                        'type' => Literal::class,
6391
                                                        'options' => [
6392
                                                            'route' => '/add',
6393
                                                            'defaults' => [
6394
                                                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewGoalsController',
6395
                                                                'action' => 'add'
6396
                                                            ]
12408 nelberth 6397
                                                        ]
6398
                                                    ],
15607 anderson 6399
                                                    'edit' => [
6400
                                                        'type' => Segment::class,
6401
                                                        'options' => [
6402
                                                            'route' => '/edit/:id',
6403
                                                            'constraints' => [
6404
                                                                'id' => '[A-Za-z0-9\-]+\=*'
6405
                                                            ],
6406
                                                            'defaults' => [
6407
                                                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewGoalsController',
6408
                                                                'action' => 'edit'
12408 nelberth 6409
                                                            ]
15607 anderson 6410
                                                        ]
6411
                                                    ],
6412
                                                    'delete' => [
6413
                                                        'type' => Segment::class,
6414
                                                        'options' => [
6415
                                                            'route' => '/delete/:id',
6416
                                                            'constraints' => [
6417
                                                                'id' => '[A-Za-z0-9\-]+\=*'
6418
                                                            ],
6419
                                                            'defaults' => [
6420
                                                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewGoalsController',
6421
                                                                'action' => 'delete'
12408 nelberth 6422
                                                            ]
15607 anderson 6423
                                                        ]
6424
                                                    ],
6425
                                                    'task' => [
6426
                                                        'type' => Segment::class,
6427
                                                        'options' => [
6428
                                                            'route' => '/:goal_id/task',
6429
                                                            'constraints' => [
6430
                                                                'goal_id' => '[A-Za-z0-9\-]+\=*'
6431
                                                            ],
6432
                                                            'defaults' => [
6433
                                                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController',
6434
                                                                'action' => 'index'
12408 nelberth 6435
                                                            ]
6436
                                                        ],
15607 anderson 6437
 
6438
                                                        'may_terminate' => true,
6439
                                                        'child_routes' => [
6440
                                                            'add' => [
6441
                                                                'type' => Literal::class,
6442
                                                                'options' => [
6443
                                                                    'route' => '/add',
6444
                                                                    'defaults' => [
6445
                                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController',
6446
                                                                        'action' => 'add'
6447
                                                                    ]
12408 nelberth 6448
                                                                ]
6449
                                                            ],
15607 anderson 6450
                                                            'edit' => [
6451
                                                                'type' => Segment::class,
6452
                                                                'options' => [
6453
                                                                    'route' => '/edit/:id',
6454
                                                                    'constraints' => [
6455
                                                                        'id' => '[A-Za-z0-9\-]+\=*'
6456
                                                                    ],
6457
                                                                    'defaults' => [
6458
                                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController',
6459
                                                                        'action' => 'edit'
12408 nelberth 6460
                                                                    ]
15607 anderson 6461
                                                                ]
6462
                                                            ],
6463
                                                            'delete' => [
6464
                                                                'type' => Segment::class,
6465
                                                                'options' => [
6466
                                                                    'route' => '/delete/:id',
6467
                                                                    'constraints' => [
6468
                                                                        'id' => '[A-Za-z0-9\-]+\=*'
6469
                                                                    ],
6470
                                                                    'defaults' => [
6471
                                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController',
6472
                                                                        'action' => 'delete'
12408 nelberth 6473
                                                                    ]
15607 anderson 6474
                                                                ]
6475
                                                            ],
6476
                                                            'view' => [
6477
                                                                'type' => Segment::class,
6478
                                                                'options' => [
6479
                                                                    'route' => '/view/:id',
6480
                                                                    'constraints' => [
6481
                                                                        'id' => '[A-Za-z0-9\-]+\=*'
6482
                                                                    ],
6483
                                                                    'defaults' => [
6484
                                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController',
6485
                                                                        'action' => 'view'
12408 nelberth 6486
                                                                    ]
15607 anderson 6487
                                                                ]
6488
                                                            ],
12408 nelberth 6489
                                                        ]
6490
                                                    ],
6491
                                                ]
6492
                                            ],
6493
                                        ]
15607 anderson 6494
                                    ], 'feeds' => [
6495
                                        'type' => Literal::class,
6496
                                        'options' => [
6497
                                            'route' => '/feeds',
6498
 
6499
                                        ],
6500
                                        'may_terminate' => true,
6501
                                        'child_routes' => [
6502
                                            'timeline' => [
6503
                                                'type' => Segment::class,
6504
                                                'options' => [
6505
                                                    'route' => '/timeline[/urgent/:urgent][/topic_id/:topic_id]',
6506
                                                    'constraints' => [
6507
                                                        'hptg_id' => '[A-Za-z0-9\-]+\=*',
6508
                                                        'topic_id' => '[A-Za-z0-9\-]+\=*',
6509
                                                        'urgent' => 'u',
6510
                                                    ],
6511
                                                    'defaults' => [
6512
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController',
6513
                                                        'action' => 'timeline'
6514
                                                    ]
6515
                                                ]
11902 nelberth 6516
                                            ],
15607 anderson 6517
                                            'onefeed' => [
6518
                                                'type' => Segment::class,
6519
                                                'options' => [
6520
                                                    'route' => '/onefeed[/:feed_id][/:topic_id]',
6521
                                                    'constraints' => [
6522
                                                        'group_id' => '[A-Za-z0-9\-]+\=*',
6523
                                                        'feed_id' => '[A-Za-z0-9\-]+\=*',
6524
                                                        'topic_id' => '[A-Za-z0-9\-]+\=*',
6525
                                                    ],
6526
                                                    'defaults' => [
6527
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController',
6528
                                                        'action' => 'oneFeed'
11902 nelberth 6529
                                                    ]
15607 anderson 6530
                                                ]
6531
                                            ],
6532
                                            'delete' => [
6533
                                                'type' => Segment::class,
6534
                                                'options' => [
6535
                                                    'route' => '/delete/:id',
6536
                                                    'constraints' => [
6537
                                                        'id' => '[A-Za-z0-9\-]+\=*',
6538
                                                    ],
6539
                                                    'defaults' => [
6540
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController',
6541
                                                        'action' => 'delete'
6542
                                                    ],
6543
                                                ]
6544
                                            ],
6545
                                            'comments' => [
6546
                                                'type' => Segment::class,
6547
                                                'options' => [
6548
                                                    'route' => '/comments/:id',
6549
                                                    'constraints' => [
6550
                                                        'id' => '[A-Za-z0-9\-]+\=*',
6551
                                                    ],
6552
                                                    'defaults' => [
6553
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController',
6554
                                                        'action' => 'comment'
6555
                                                    ],
11902 nelberth 6556
                                                ],
15607 anderson 6557
                                                'may_terminate' => true,
6558
                                                'child_routes' => [
6559
                                                    'delete' => [
6560
                                                        'type' => Segment::class,
6561
                                                        'options' => [
6562
                                                            'route' => '/delete/:comment',
6563
                                                            'constraints' => [
6564
                                                                'comment' => '[A-Za-z0-9\-]+\=*',
6565
                                                            ],
6566
                                                            'defaults' => [
6567
                                                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController',
6568
                                                                'action' => 'commentDelete'
6569
                                                            ]
11902 nelberth 6570
                                                        ]
6571
                                                    ],
15607 anderson 6572
 
6573
                                                    'answer' => [
6574
                                                        'type' => Segment::class,
6575
                                                        'options' => [
6576
                                                            'route' => '/answer/:comment',
6577
                                                            'constraints' => [
6578
                                                                'comment' => '[A-Za-z0-9\-]+\=*',
6579
                                                            ],
6580
                                                            'defaults' => [
6581
                                                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController',
6582
                                                                'action' => 'answer'
11902 nelberth 6583
                                                            ]
6584
                                                        ]
15607 anderson 6585
                                                    ],
6586
                                                ]
6587
                                            ],
6588
                                            'add' => [
6589
                                                'type' => Segment::class,
6590
                                                'options' => [
6591
                                                    'route' => '/add[/group/:group_id][/encoding/:encoding][/topic_id/:topic_id]',
6592
                                                    'constraints' => [
6593
                                                        'group_id' => '[A-Za-z0-9\-]+\=*',
6594
                                                        'topic_id' => '[A-Za-z0-9\-]+\=*',
6595
                                                        'encoding' => 'base64'
6596
                                                    ],
6597
                                                    'defaults' => [
6598
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController',
6599
                                                        'action' => 'add'
11902 nelberth 6600
                                                    ]
15607 anderson 6601
                                                ]
11902 nelberth 6602
                                            ],
6603
                                        ],
15607 anderson 6604
                                    ],
6605
                                    'members' => [
6606
                                        'type' => Literal::class,
6607
                                        'options' => [
6608
                                            'route' => '/members',
6609
                                            'defaults' => [
6610
                                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController',
6611
                                                'action' => 'index'
6612
                                            ]
6613
                                        ], 'may_terminate' => true,
6614
                                        'child_routes' => [
6615
                                            'invite' => [
6616
                                                'type' => Segment::class,
6617
                                                'options' => [
6618
                                                    'route' => '/invite/:user_id',
6619
                                                    'constraints' => [
6620
                                                        'user_id' => '[A-Za-z0-9\-]+\=*'
6621
                                                    ],
6622
                                                    'defaults' => [
6623
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController',
6624
                                                        'action' => 'invite'
6625
                                                    ]
7811 nelberth 6626
                                                ]
15607 anderson 6627
                                            ],
6628
                                            'edit' => [
6629
                                                'type' => Segment::class,
6630
                                                'options' => [
6631
                                                    'route' => '/edit/:user_id',
6632
                                                    'constraints' => [
6633
                                                        'user_id' => '[A-Za-z0-9\-]+\=*'
6634
                                                    ],
6635
                                                    'defaults' => [
6636
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController',
6637
                                                        'action' => 'edit'
8012 nelberth 6638
                                                    ]
15607 anderson 6639
                                                ]
6640
                                            ],
6641
                                            'delete' => [
6642
                                                'type' => Segment::class,
6643
                                                'options' => [
6644
                                                    'route' => '/delete[/:user_id]',
6645
                                                    'constraints' => [
6646
                                                        'user_id' => '[A-Za-z0-9\-]+\=*'
6647
                                                    ],
6648
                                                    'defaults' => [
6649
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController',
6650
                                                        'action' => 'delete'
8012 nelberth 6651
                                                    ]
15607 anderson 6652
                                                ]
6653
                                            ],
6654
                                        ]
6655
                                    ],
6656
                                    'urgent' => [
6657
                                        'type' => Segment::class,
6658
                                        'options' => [
6659
                                            'route' => '/urgent[/:urgent]',
6660
                                            'constraints' => [
6661
                                                'urgent' => 'u'
6662
                                            ],
6663
                                            'defaults' => [
6664
                                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewController',
6665
                                                'action' => 'index'
6666
                                            ]
6667
                                        ]
6668
                                    ],
6669
                                    'calendar' => [
6670
                                        'type' => Literal::class,
6671
                                        'options' => [
6672
                                            'route' => '/calendar',
6673
 
6674
                                            'defaults' => [
6675
                                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewCalendarController',
6676
                                                'action' => 'index'
6677
                                            ]
6678
                                        ], 'may_terminate' => true,
6679
                                        'child_routes' => [
6680
                                            'view' => [
6681
                                                'type' => Segment::class,
6682
                                                'options' => [
6683
                                                    'route' => '/view[/:feed_id]',
6684
                                                    'constraints' => [
6685
                                                        'feed_id' => '[A-Za-z0-9\-]+\=*'
6686
                                                    ],
6687
                                                    'defaults' => [
6688
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewCalendarController',
6689
                                                        'action' => 'view'
8012 nelberth 6690
                                                    ]
8702 nelberth 6691
                                                ]
15607 anderson 6692
                                            ],
6693
                                        ]
6694
                                    ],
6695
                                    'foro' => [
6696
                                        'type' => Literal::class,
6697
                                        'options' => [
6698
                                            'route' => '/foro',
6699
                                            'defaults' => [
6700
                                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoController',
6701
                                                'action' => 'index'
8702 nelberth 6702
                                            ]
6703
                                        ],
15607 anderson 6704
                                        'may_terminate' => true,
6705
                                        'child_routes' => [
6706
                                            'view' => [
6707
                                                'type' => Literal::class,
6708
                                                'options' => [
6709
                                                    'route' => '/view',
6710
                                                    'defaults' => [
6711
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoController',
6712
                                                        'action' => 'view'
9923 nelberth 6713
                                                    ]
10143 nelberth 6714
                                                ]
9644 nelberth 6715
                                            ],
15607 anderson 6716
                                            'categories' => [
6717
                                                'type' => Literal::class,
6718
                                                'options' => [
6719
                                                    'route' => '/categories',
6720
                                                    'defaults' => [
6721
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController',
6722
                                                        'action' => 'index'
10150 nelberth 6723
                                                    ]
6724
                                                ],
15607 anderson 6725
                                                'may_terminate' => true,
6726
                                                'child_routes' => [
6727
                                                    'view' => [
6728
                                                        'type' => Literal::class,
6729
                                                        'options' => [
6730
                                                            'route' => '/view',
6731
                                                            'defaults' => [
6732
                                                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController',
6733
                                                                'action' => 'view'
6734
                                                            ]
9631 nelberth 6735
                                                        ]
9638 nelberth 6736
                                                    ],
15607 anderson 6737
                                                    'add' => [
6738
                                                        'type' => Literal::class,
6739
                                                        'options' => [
6740
                                                            'route' => '/add',
6741
                                                            'defaults' => [
6742
                                                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController',
6743
                                                                'action' => 'add'
9720 nelberth 6744
                                                            ]
15607 anderson 6745
                                                        ]
6746
                                                    ],
6747
                                                    'edit' => [
6748
                                                        'type' => Segment::class,
6749
                                                        'options' => [
6750
                                                            'route' => '/edit/:category_id',
6751
                                                            'constraints' => [
6752
                                                                'category_id' => '[A-Za-z0-9\-]+\=*'
6753
                                                            ],
6754
                                                            'defaults' => [
6755
                                                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController',
6756
                                                                'action' => 'edit'
9644 nelberth 6757
                                                            ]
15607 anderson 6758
                                                        ]
6759
                                                    ],
6760
                                                    'delete' => [
6761
                                                        'type' => Segment::class,
6762
                                                        'options' => [
6763
                                                            'route' => '/delete/:category_id',
6764
                                                            'constraints' => [
6765
                                                                'category_id' => '[A-Za-z0-9\-]+\=*'
6766
                                                            ],
6767
                                                            'defaults' => [
6768
                                                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController',
6769
                                                                'action' => 'delete'
9640 nelberth 6770
                                                            ]
15607 anderson 6771
                                                        ]
6772
                                                    ],
6773
                                                    'articles' => [
6774
                                                        'type' => Segment::class,
6775
                                                        'options' => [
6776
                                                            'route' => '/:category_id/articles',
6777
                                                            'constraints' => [
6778
                                                                'category_id' => '[A-Za-z0-9\-]+\=*'
6779
                                                            ],
6780
                                                            'defaults' => [
6781
                                                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesController',
6782
                                                                'action' => 'index'
9643 nelberth 6783
                                                            ]
6784
                                                        ],
15607 anderson 6785
                                                        'may_terminate' => true,
6786
                                                        'child_routes' => [
6787
                                                            'add' => [
6788
                                                                'type' => Literal::class,
6789
                                                                'options' => [
6790
                                                                    'route' => '/add',
6791
                                                                    'defaults' => [
6792
                                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesController',
6793
                                                                        'action' => 'add'
6794
                                                                    ]
9760 nelberth 6795
                                                                ]
9845 nelberth 6796
                                                            ],
15607 anderson 6797
                                                            'edit' => [
6798
                                                                'type' => Segment::class,
6799
                                                                'options' => [
6800
                                                                    'route' => '/edit/:article_id',
6801
                                                                    'constraints' => [
6802
                                                                        'articles_id' => '[A-Za-z0-9\-]+\=*'
6803
                                                                    ],
6804
                                                                    'defaults' => [
6805
                                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesController',
6806
                                                                        'action' => 'edit'
9845 nelberth 6807
                                                                    ]
15607 anderson 6808
                                                                ]
6809
                                                            ],
6810
 
6811
                                                            'delete' => [
6812
                                                                'type' => Segment::class,
6813
                                                                'options' => [
6814
                                                                    'route' => '/delete/:article_id',
6815
                                                                    'constraints' => [
6816
                                                                        'articles_id' => '[A-Za-z0-9\-]+\=*'
6817
                                                                    ],
6818
                                                                    'defaults' => [
6819
                                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesController',
6820
                                                                        'action' => 'delete'
9845 nelberth 6821
                                                                    ]
15607 anderson 6822
                                                                ]
6823
                                                            ],
6824
                                                            'view' => [
6825
                                                                'type' => Segment::class,
6826
                                                                'options' => [
6827
                                                                    'route' => '/view/:article_id',
6828
                                                                    'constraints' => [
6829
                                                                        'articles_id' => '[A-Za-z0-9\-]+\=*'
6830
                                                                    ],
6831
                                                                    'defaults' => [
6832
                                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesViewController',
6833
                                                                        'action' => 'index'
9845 nelberth 6834
                                                                    ]
15607 anderson 6835
                                                                ]
6836
                                                            ],
6837
                                                        ]
9640 nelberth 6838
                                                    ],
9424 nelberth 6839
                                                ],
15607 anderson 6840
                                            ],
6841
                                        ]
6842
                                    ],
6843
                                    'topic' => [
6844
                                        'type' => Literal::class,
6845
                                        'options' => [
6846
                                            'route' => '/topic',
6847
                                            'defaults' => [
6848
                                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController',
6849
                                                'action' => 'index'
9424 nelberth 6850
                                            ]
16619 anderson 6851
                                        ],
16285 efrain 6852
                                        'may_terminate' => true,
15607 anderson 6853
                                        'child_routes' => [
6854
                                            'add' => [
6855
                                                'type' => Literal::class,
6856
                                                'options' => [
6857
                                                    'route' => '/add',
6858
                                                    'defaults' => [
6859
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController',
6860
                                                        'action' => 'add'
6861
                                                    ]
7483 nelberth 6862
                                                ]
15607 anderson 6863
                                            ],
6864
                                            'edit' => [
6865
                                                'type' => Segment::class,
6866
                                                'options' => [
6867
                                                    'route' => '/edit/:topic_id',
6868
                                                    'constraints' => [
6869
                                                        'topic_id' => '[A-Za-z0-9\-]+\=*'
6870
                                                    ],
6871
                                                    'defaults' => [
6872
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController',
6873
                                                        'action' => 'edit'
7483 nelberth 6874
                                                    ]
15607 anderson 6875
                                                ]
6876
                                            ],
6877
                                            'view' => [
6878
                                                'type' => Segment::class,
6879
                                                'options' => [
6880
                                                    'route' => '/view[/:topic_id]',
6881
                                                    'constraints' => [
6882
                                                        'topic_id' => '[A-Za-z0-9\-]+\=*'
6883
                                                    ],
6884
                                                    'defaults' => [
6885
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewController',
6886
                                                        'action' => 'index'
7483 nelberth 6887
                                                    ]
15607 anderson 6888
                                                ]
6889
                                            ],
6890
 
6891
                                            'delete' => [
6892
                                                'type' => Segment::class,
6893
                                                'options' => [
6894
                                                    'route' => '/delete/:topic_id',
6895
                                                    'constraints' => [
6896
                                                        'topic_id' => '[A-Za-z0-9\-]+\=*'
6897
                                                    ],
6898
                                                    'defaults' => [
6899
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController',
6900
                                                        'action' => 'delete'
7629 nelberth 6901
                                                    ]
7483 nelberth 6902
                                                ]
15607 anderson 6903
                                            ]
7483 nelberth 6904
                                        ],
6905
                                    ],
6906
 
15607 anderson 6907
                                ],
6908
 
4411 nelberth 6909
                            ],
6910
                        ]
4388 nelberth 6911
                    ],
1333 efrain 6912
                ]
6913
            ],
4588 nelberth 6914
 
16285 efrain 6915
            'tools' => [
6916
                'type' => Literal::class,
6917
                'options' => [
6918
                    'route' => '/tools',
6919
                    'constraints' => [
6920
                        'topic_id' => '[A-Za-z0-9\-]+\=*'
6921
                    ],
6922
                    'defaults' => [
6923
                        'controller' => '\LeadersLinked\Controller\ToolsController',
6924
                        'action' => 'index'
6925
                    ]
6926
                ],
6927
                'may_terminate' => true,
6928
                'child_routes' => [
6929
                    'userfile-password-generator' => [
6930
                        'type' => Literal::class,
6931
                        'options' => [
6932
                            'route' => '/userfile-password-generator',
6933
                            'defaults' => [
6934
                                'controller' => '\LeadersLinked\Controller\ToolsController',
6935
                                'action' => 'userfilePasswordGenerator'
6936
                            ]
6937
                        ]
6938
                    ],
16619 anderson 6939
                ],
16285 efrain 6940
            ]
15607 anderson 6941
 
6942
 
16270 anderson 6943
 
1 www 6944
        ]
6945
    ],
6946
    'controllers' => [
6947
        'factories' => [
6948
            \LeadersLinked\Controller\AuthController::class => \LeadersLinked\Factory\Controller\AuthControllerFactory::class,
6949
            \LeadersLinked\Controller\FeedController::class => \LeadersLinked\Factory\Controller\FeedControllerFactory::class,
6950
            \LeadersLinked\Controller\FollowerController::class => \LeadersLinked\Factory\Controller\FollowerControllerFactory::class,
6951
            \LeadersLinked\Controller\JobController::class => \LeadersLinked\Factory\Controller\JobControllerFactory::class,
1469 eleazar 6952
            \LeadersLinked\Controller\RecruitmentSelectionController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionFactory::class,
15461 efrain 6953
            \LeadersLinked\Controller\RecruitmentSelectionVacancyController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionVacancyFactory::class,
6954
            \LeadersLinked\Controller\RecruitmentSelectionApplicationController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionApplicationFactory::class,
6955
            \LeadersLinked\Controller\RecruitmentSelectionFileController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionFileControllerFactory::class,
1709 eleazar 6956
            \LeadersLinked\Controller\RecruitmentSelectionInterviewController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionInterviewFactory::class,
15607 anderson 6957
            /*
15461 efrain 6958
            \LeadersLinked\Controller\RecruitmentSelectionInterviewController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionInterviewFactory::class,
1712 eleazar 6959
            \LeadersLinked\Controller\RecruitmentSelectionInterviewFormController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionInterviewFormFactory::class,
8797 eleazar 6960
            \LeadersLinked\Controller\RecruitmentSelectionInterviewFileController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionInterviewFileControllerFactory::class,
1385 eleazar 6961
            \LeadersLinked\Controller\RecruitmentSelectionVacancyController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionVacancyFactory::class,
1459 eleazar 6962
            \LeadersLinked\Controller\RecruitmentSelectionCandidateController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionCandidateFactory::class,
15461 efrain 6963
            */
1 www 6964
            \LeadersLinked\Controller\ProfileController::class => \LeadersLinked\Factory\Controller\ProfileControllerFactory::class,
6965
            \LeadersLinked\Controller\CompanyController::class => \LeadersLinked\Factory\Controller\CompanyControllerFactory::class,
6966
            \LeadersLinked\Controller\CompanySizeController::class => \LeadersLinked\Factory\Controller\CompanySizeControllerFactory::class,
15460 efrain 6967
            \LeadersLinked\Controller\CountriesController::class => \LeadersLinked\Factory\Controller\CountriesControllerFactory::class,
15607 anderson 6968
 
1115 geraldo 6969
            \LeadersLinked\Controller\BehaviorsController::class => \LeadersLinked\Factory\Controller\BehaviorsControllerFactory::class,
1 www 6970
            \LeadersLinked\Controller\CompetencyTypeController::class => \LeadersLinked\Factory\Controller\CompetencyTypeControllerFactory::class,
6971
            \LeadersLinked\Controller\CompetencyController::class => \LeadersLinked\Factory\Controller\CompetencyControllerFactory::class,
6972
            \LeadersLinked\Controller\DegreeController::class => \LeadersLinked\Factory\Controller\DegreeControllerFactory::class,
6973
            \LeadersLinked\Controller\EmailTemplateController::class => \LeadersLinked\Factory\Controller\EmailTemplateControllerFactory::class,
6974
            \LeadersLinked\Controller\PushTemplateController::class => \LeadersLinked\Factory\Controller\PushTemplateControllerFactory::class,
6975
            \LeadersLinked\Controller\GroupTypeController::class => \LeadersLinked\Factory\Controller\GroupTypeControllerFactory::class,
6976
            \LeadersLinked\Controller\IndustryController::class => \LeadersLinked\Factory\Controller\IndustryControllerFactory::class,
6977
            \LeadersLinked\Controller\JobCategoryController::class => \LeadersLinked\Factory\Controller\JobCategoryControllerFactory::class,
28 efrain 6978
            \LeadersLinked\Controller\JobDescriptionController::class => \LeadersLinked\Factory\Controller\JobDescriptionControllerFactory::class,
1 www 6979
            \LeadersLinked\Controller\PageController::class => \LeadersLinked\Factory\Controller\PageControllerFactory::class,
16770 efrain 6980
            \LeadersLinked\Controller\OrganizationPositionController::class => \LeadersLinked\Factory\Controller\OrganizationPositionControllerFactory::class,
1 www 6981
            \LeadersLinked\Controller\PostController::class => \LeadersLinked\Factory\Controller\PostControllerFactory::class,
6982
            \LeadersLinked\Controller\SkillController::class => \LeadersLinked\Factory\Controller\SkillControllerFactory::class,
6983
            \LeadersLinked\Controller\UserController::class => \LeadersLinked\Factory\Controller\UserControllerFactory::class,
6984
            \LeadersLinked\Controller\DashboardController::class => \LeadersLinked\Factory\Controller\DashboardControllerFactory::class,
115 efrain 6985
            \LeadersLinked\Controller\SelfEvaluationController::class => \LeadersLinked\Factory\Controller\SelfEvaluationControllerFactory::class,
6986
            \LeadersLinked\Controller\SelfEvaluationFormController::class => \LeadersLinked\Factory\Controller\SelfEvaluationFormControllerFactory::class,
1089 geraldo 6987
            \LeadersLinked\Controller\SelfEvaluationFormUserController::class => \LeadersLinked\Factory\Controller\SelfEvaluationFormUserControllerFactory::class,
247 geraldo 6988
            \LeadersLinked\Controller\SelfEvaluationReviewController::class => \LeadersLinked\Factory\Controller\SelfEvaluationReviewControllerFactory::class,
4375 eleazar 6989
            \LeadersLinked\Controller\SurveyController::class => \LeadersLinked\Factory\Controller\SurveyControllerFactory::class,
6990
            \LeadersLinked\Controller\SurveyFormController::class => \LeadersLinked\Factory\Controller\SurveyFormControllerFactory::class,
5868 eleazar 6991
            \LeadersLinked\Controller\SurveyReportController::class => \LeadersLinked\Factory\Controller\SurveyReportControllerFactory::class,
5287 eleazar 6992
            \LeadersLinked\Controller\SurveyTestController::class => \LeadersLinked\Factory\Controller\SurveyTestControllerFactory::class,
7218 eleazar 6993
            \LeadersLinked\Controller\OrganizationalClimateController::class => \LeadersLinked\Factory\Controller\OrganizationalClimateControllerFactory::class,
6994
            \LeadersLinked\Controller\OrganizationalClimateFormController::class => \LeadersLinked\Factory\Controller\OrganizationalClimateFormControllerFactory::class,
6995
            \LeadersLinked\Controller\OrganizationalClimateReportController::class => \LeadersLinked\Factory\Controller\OrganizationalClimateReportControllerFactory::class,
6996
            \LeadersLinked\Controller\OrganizationalClimateTestController::class => \LeadersLinked\Factory\Controller\OrganizationalClimateTestControllerFactory::class,
15394 efrain 6997
            \LeadersLinked\Controller\PerformanceEvaluationController::class => \LeadersLinked\Factory\Controller\PerformanceEvaluationControllerFactory::class,
987 geraldo 6998
            \LeadersLinked\Controller\PerformanceEvaluationFormController::class => \LeadersLinked\Factory\Controller\PerformanceEvaluationFormControllerFactory::class,
15394 efrain 6999
            \LeadersLinked\Controller\PerformanceEvaluationTestController::class => \LeadersLinked\Factory\Controller\PerformanceEvaluationTestControllerFactory::class,
15607 anderson 7000
 
1 www 7001
            \LeadersLinked\Controller\MicrolearningController::class => \LeadersLinked\Factory\Controller\MicrolearningControllerFactory::class,
66 efrain 7002
            \LeadersLinked\Controller\MicrolearningQuizController::class => \LeadersLinked\Factory\Controller\MicrolearningQuizControllerFactory::class,
7003
            \LeadersLinked\Controller\MicrolearningQuestionController::class => \LeadersLinked\Factory\Controller\MicrolearningQuestionControllerFactory::class,
7004
            \LeadersLinked\Controller\MicrolearningAnswerController::class => \LeadersLinked\Factory\Controller\MicrolearningAnswerControllerFactory::class,
1 www 7005
            \LeadersLinked\Controller\MicrolearningTopicController::class => \LeadersLinked\Factory\Controller\MicrolearningTopicControllerFactory::class,
7006
            \LeadersLinked\Controller\MicrolearningCapsuleController::class => \LeadersLinked\Factory\Controller\MicrolearningCapsuleControllerFactory::class,
7007
            \LeadersLinked\Controller\MicrolearningSlideController::class => \LeadersLinked\Factory\Controller\MicrolearningSlideControllerFactory::class,
7008
            \LeadersLinked\Controller\MicrolearningAccessForStudentsController::class => \LeadersLinked\Factory\Controller\MicrolearningAccessForStudentsControllerFactory::class,
7009
            \LeadersLinked\Controller\MicrolearningStudentsController::class => \LeadersLinked\Factory\Controller\MicrolearningStudentsControllerFactory::class,
7010
            \LeadersLinked\Controller\MicrolearningReportsController::class => \LeadersLinked\Factory\Controller\MicrolearningReportsControllerFactory::class,
7011
            \LeadersLinked\Controller\MicrolearningExtendUserCompanyController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserCompanyControllerFactory::class,
7012
            \LeadersLinked\Controller\MicrolearningExtendUserFunctionController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserFunctionControllerFactory::class,
7013
            \LeadersLinked\Controller\MicrolearningExtendUserGroupController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserGroupControllerFactory::class,
7014
            \LeadersLinked\Controller\MicrolearningExtendUserInstitutionController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserInstitutionControllerFactory::class,
7015
            \LeadersLinked\Controller\MicrolearningExtendUserPartnerController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserPartnerControllerFactory::class,
7016
            \LeadersLinked\Controller\MicrolearningExtendUserProgramController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserProgramControllerFactory::class,
7017
            \LeadersLinked\Controller\MicrolearningExtendUserSectorController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserSectorControllerFactory::class,
7018
            \LeadersLinked\Controller\MicrolearningExtendUserStudentTypeController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserStudentTypeControllerFactory::class,
15394 efrain 7019
            \LeadersLinked\Controller\MicrolearningExtendUserCountryController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserCountryControllerFactory::class,
1 www 7020
            \LeadersLinked\Controller\StorageController::class => \LeadersLinked\Factory\Controller\StorageControllerFactory::class,
15336 efrain 7021
            \LeadersLinked\Controller\StorageNetworkController::class => \LeadersLinked\Factory\Controller\StorageNetworkControllerFactory::class,
16766 efrain 7022
 
7023
            \LeadersLinked\Controller\PlanningController::class => \LeadersLinked\Factory\Controller\PlanningControllerFactory::class,
7024
            \LeadersLinked\Controller\PlanningObjectivesController::class => \LeadersLinked\Factory\Controller\PlanningObjectivesControllerFactory::class,
7025
            \LeadersLinked\Controller\PlanningGoalsController::class => \LeadersLinked\Factory\Controller\PlanningGoalsControllerFactory::class,
7026
            \LeadersLinked\Controller\PlanningTaskController::class => \LeadersLinked\Factory\Controller\PlanningTaskControllerFactory::class,
7027
 
15336 efrain 7028
            \LeadersLinked\Controller\PrivateNetworksController::class => \LeadersLinked\Factory\Controller\PrivateNetworksControllerFactory::class,
7029
            \LeadersLinked\Controller\MyPrivateNetworkController::class => \LeadersLinked\Factory\Controller\MyPrivateNetworkControllerFactory::class,
4377 nelberth 7030
            \LeadersLinked\Controller\HighPerformanceTeamsController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsControllerFactory::class,
7224 nelberth 7031
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsControllerFactory::class,
9095 nelberth 7032
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewCalendarController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewCalendarControllerFactory::class,
9619 nelberth 7033
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewForoCategoriesControllerFactory::class,
9764 nelberth 7034
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewForoArticlesControllerFactory::class,
10143 nelberth 7035
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewForoControllerFactory::class,
9921 nelberth 7036
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesViewController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewForoArticlesViewControllerFactory::class,
7308 nelberth 7037
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewControllerFactory::class,
12433 nelberth 7038
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewObjectivesControllerFactory::class,
12736 nelberth 7039
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewGoalsController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewGoalsControllerFactory::class,
12835 nelberth 7040
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewTaskControllerFactory::class,
11898 nelberth 7041
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewFeedControllerFactory::class,
7494 nelberth 7042
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewTopicControllerFactory::class,
7811 nelberth 7043
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsMembersControllerFactory::class,
13014 nelberth 7044
            \LeadersLinked\Controller\ChatController::class => \LeadersLinked\Factory\Controller\ChatControllerFactory::class,
13010 nelberth 7045
            \LeadersLinked\Controller\CommunicationController::class => \LeadersLinked\Factory\Controller\CommunicationControllerFactory::class,
13675 nelberth 7046
            \LeadersLinked\Controller\CommunicationInboxController::class => \LeadersLinked\Factory\Controller\CommunicationInboxControllerFactory::class,
15607 anderson 7047
 
16766 efrain 7048
            \LeadersLinked\Controller\HelperController::class => \LeadersLinked\Factory\Controller\HelperControllerFactory::class,
7049
            \LeadersLinked\Controller\InMailCompanyController::class => \LeadersLinked\Factory\Controller\InMailCompanyControllerFactory::class,
7050
            \LeadersLinked\Controller\InMailPersonalController::class => \LeadersLinked\Factory\Controller\InMailPersonalControllerFactory::class,
7051
 
15607 anderson 7052
 
15387 efrain 7053
            \LeadersLinked\Controller\ReportController::class => \LeadersLinked\Factory\Controller\ReportControllerFactory::class,
1333 efrain 7054
            \LeadersLinked\Controller\UnknownController::class => \LeadersLinked\Factory\Controller\UnknownControllerFactory::class,
66 efrain 7055
            \LeadersLinked\Controller\TestController::class => \LeadersLinked\Factory\Controller\TestControllerFactory::class,
15607 anderson 7056
 
15392 efrain 7057
            \LeadersLinked\Controller\AptitudeController::class => \LeadersLinked\Factory\Controller\AptitudeControllerFactory::class,
7058
            \LeadersLinked\Controller\HobbyAndInterestController::class => \LeadersLinked\Factory\Controller\HobbyAndInterestControllerFactory::class,
15607 anderson 7059
 
15401 efrain 7060
            \LeadersLinked\Controller\DiscoveryContactController::class => \LeadersLinked\Factory\Controller\DiscoveryContactControllerFactory::class,
7061
            \LeadersLinked\Controller\DiscoveryContactLogController::class  => \LeadersLinked\Factory\Controller\DiscoveryContactLogControllerFactory::class,
7062
            \LeadersLinked\Controller\DiscoveryContactInteractionTypeController::class  => \LeadersLinked\Factory\Controller\DiscoveryContactInteractionTypeControllerFactory::class,
7063
            \LeadersLinked\Controller\DiscoveryContactInteractionController::class  => \LeadersLinked\Factory\Controller\DiscoveryContactInteractionControllerFactory::class,
15671 anderson 7064
            \LeadersLinked\Controller\DiscoveryContactProgressController::class => \LeadersLinked\Factory\Controller\DiscoveryContactProgressControllerFactory::class,
16758 efrain 7065
            \LeadersLinked\Controller\DiscoveryContactReportController::class => \LeadersLinked\Factory\Controller\DiscoveryContactReportControllerFactory::class,
15607 anderson 7066
 
15649 anderson 7067
 
15442 efrain 7068
            \LeadersLinked\Controller\ActivityCenterController::Class  => \LeadersLinked\Factory\Controller\ActivityCenterControllerFactory::class,
7069
            \LeadersLinked\Controller\ActivityCenterPerformanceEvaluationController::class  => \LeadersLinked\Factory\Controller\ActivityCenterPerformanceEvaluationControllerFactory::class,
15461 efrain 7070
            \LeadersLinked\Controller\ActivityCenterRecruitmentSelectionController::class  => \LeadersLinked\Factory\Controller\ActivityCenterRecruitmentSelectionControllerFactory::class,
15607 anderson 7071
 
15540 efrain 7072
            \LeadersLinked\Controller\EngagementController::class => \LeadersLinked\Factory\Controller\EngagementControllerFactory::class,
15543 efrain 7073
            \LeadersLinked\Controller\EngagementRewardController::class => \LeadersLinked\Factory\Controller\EngagementRewardControllerFactory::class,
15540 efrain 7074
            \LeadersLinked\Controller\EngagementReportsController::class => \LeadersLinked\Factory\Controller\EngagementReportsControllerFactory::class,
15607 anderson 7075
 
15540 efrain 7076
            \LeadersLinked\Controller\DailyPulseController::Class  => \LeadersLinked\Factory\Controller\DailyPulseControllerFactory::class,
7077
            \LeadersLinked\Controller\DailyPulseEmojiController::Class  => \LeadersLinked\Factory\Controller\DailyPulseEmojiControllerFactory::class,
7078
            \LeadersLinked\Controller\DailyPulseReportsController::Class  => \LeadersLinked\Factory\Controller\DailyPulseReportsControllerFactory::class,
15607 anderson 7079
 
7080
 
15451 efrain 7081
            \LeadersLinked\Controller\MyCoachController::Class  => \LeadersLinked\Factory\Controller\MyCoachControllerFactory::class,
7082
            \LeadersLinked\Controller\MyCoachCategoryController::class  => \LeadersLinked\Factory\Controller\MyCoachCategoryControllerFactory::class,
15831 efrain 7083
            \LeadersLinked\Controller\MyCoachCategoryUserController::class  => \LeadersLinked\Factory\Controller\MyCoachCategoryUserControllerFactory::class,
16180 anderson 7084
 
16270 anderson 7085
 
16248 efrain 7086
            \LeadersLinked\Controller\KnowledgeAreaController::Class  => \LeadersLinked\Factory\Controller\KnowledgeAreaControllerFactory::class,
7087
            \LeadersLinked\Controller\KnowledgeAreaCategoryController::class  => \LeadersLinked\Factory\Controller\KnowledgeAreaCategoryControllerFactory::class,
7088
            \LeadersLinked\Controller\KnowledgeAreaCategoryUserController::class  => \LeadersLinked\Factory\Controller\KnowledgeAreaCategoryUserControllerFactory::class,
16701 efrain 7089
 
7090
 
7091
            \LeadersLinked\Controller\FastSurveyController::class  => \LeadersLinked\Factory\Controller\FastSurveyControllerFactory::class,
16248 efrain 7092
 
16270 anderson 7093
 
15457 efrain 7094
            \LeadersLinked\Controller\UserRequestAccessController::class  => \LeadersLinked\Factory\Controller\UserRequestAccessControllerFactory::class,
16285 efrain 7095
            \LeadersLinked\Controller\ToolsController::class  => \LeadersLinked\Factory\Controller\ToolsControllerFactory::class,
15607 anderson 7096
 
7097
 
1 www 7098
        ],
7099
        'aliases' => [
7100
            '\LeadersLinked\Controller\AuthController' => \LeadersLinked\Controller\AuthController::class,
7101
            '\LeadersLinked\Controller\FollowerController' => \LeadersLinked\Controller\FollowerController::class,
7102
            '\LeadersLinked\Controller\FeedController' => \LeadersLinked\Controller\FeedController::class,
7103
            '\LeadersLinked\Controller\JobController' => \LeadersLinked\Controller\JobController::class,
1343 eleazar 7104
            '\LeadersLinked\Controller\RecruitmentSelectionController' => \LeadersLinked\Controller\RecruitmentSelectionController::class,
15461 efrain 7105
            '\LeadersLinked\Controller\RecruitmentSelectionApplicationController' => \LeadersLinked\Controller\RecruitmentSelectionApplicationController::class,
1385 eleazar 7106
            '\LeadersLinked\Controller\RecruitmentSelectionVacancyController' => \LeadersLinked\Controller\RecruitmentSelectionVacancyController::class,
15461 efrain 7107
            '\LeadersLinked\Controller\RecruitmentSelectionFileController' => \LeadersLinked\Controller\RecruitmentSelectionFileController::class,
7108
            '\LeadersLinked\Controller\RecruitmentSelectionInterviewController' => \LeadersLinked\Controller\RecruitmentSelectionInterviewController::class,
1 www 7109
            '\LeadersLinked\Controller\ProfileController' => \LeadersLinked\Controller\ProfileController::class,
7110
            '\LeadersLinked\Controller\CompanyController' => \LeadersLinked\Controller\CompanyController::class,
7111
            '\LeadersLinked\Controller\CompanySizeController' => \LeadersLinked\Controller\CompanySizeController::class,
7112
            '\LeadersLinked\Controller\CompetencyTypeController' => \LeadersLinked\Controller\CompetencyTypeController::class,
1102 geraldo 7113
            '\LeadersLinked\Controller\BehaviorsController' => \LeadersLinked\Controller\BehaviorsController::class,
1 www 7114
            '\LeadersLinked\Controller\CompetencyController' => \LeadersLinked\Controller\CompetencyController::class,
7115
            '\LeadersLinked\Controller\DegreeController' => \LeadersLinked\Controller\DegreeController::class,
7116
            '\LeadersLinked\Controller\EmailTemplateController' => \LeadersLinked\Controller\EmailTemplateController::class,
1089 geraldo 7117
            '\LeadersLinked\Controller\PushTemplateController' => \LeadersLinked\Controller\PushTemplateController::class,
1 www 7118
            '\LeadersLinked\Controller\GroupTypeController' => \LeadersLinked\Controller\GroupTypeController::class,
7119
            '\LeadersLinked\Controller\IndustryController' => \LeadersLinked\Controller\IndustryController::class,
7120
            '\LeadersLinked\Controller\JobCategoryController' => \LeadersLinked\Controller\JobCategoryController::class,
66 efrain 7121
            '\LeadersLinked\Controller\JobDescriptionController' => \LeadersLinked\Controller\JobDescriptionController::class,
1 www 7122
            '\LeadersLinked\Controller\PageController' => \LeadersLinked\Controller\PageController::class,
16770 efrain 7123
            '\LeadersLinked\Controller\OrganizationPositionController' => \LeadersLinked\Controller\OrganizationPositionController::class,
1 www 7124
            '\LeadersLinked\Controller\PostController' => \LeadersLinked\Controller\PostController::class,
7125
            '\LeadersLinked\Controller\SkillController' => \LeadersLinked\Controller\SkillController::class,
7126
            '\LeadersLinked\Controller\UserController' => \LeadersLinked\Controller\UserController::class,
7127
            '\LeadersLinked\Controller\DashboardController' => \LeadersLinked\Controller\DashboardController::class,
115 efrain 7128
            '\LeadersLinked\Controller\SelfEvaluationController' => \LeadersLinked\Controller\SelfEvaluationController::class,
7129
            '\LeadersLinked\Controller\SelfEvaluationFormController' => \LeadersLinked\Controller\SelfEvaluationFormController::class,
7130
            '\LeadersLinked\Controller\SelfEvaluationFormUserController' => \LeadersLinked\Controller\SelfEvaluationFormUserController::class,
247 geraldo 7131
            '\LeadersLinked\Controller\SelfEvaluationReviewController' => \LeadersLinked\Controller\SelfEvaluationReviewController::class,
4375 eleazar 7132
            '\LeadersLinked\Controller\SurveyController' => \LeadersLinked\Controller\SurveyController::class,
7133
            '\LeadersLinked\Controller\SurveyFormController' => \LeadersLinked\Controller\SurveyFormController::class,
5868 eleazar 7134
            '\LeadersLinked\Controller\SurveyReportController' => \LeadersLinked\Controller\SurveyReportController::class,
5287 eleazar 7135
            '\LeadersLinked\Controller\SurveyTestController' => \LeadersLinked\Controller\SurveyTestController::class,
7218 eleazar 7136
            '\LeadersLinked\Controller\OrganizationalClimateController' => \LeadersLinked\Controller\OrganizationalClimateController::class,
7137
            '\LeadersLinked\Controller\OrganizationalClimateFormController' => \LeadersLinked\Controller\OrganizationalClimateFormController::class,
7138
            '\LeadersLinked\Controller\OrganizationalClimateReportController' => \LeadersLinked\Controller\OrganizationalClimateReportController::class,
7139
            '\LeadersLinked\Controller\OrganizationalClimateTestController' => \LeadersLinked\Controller\OrganizationalClimateTestController::class,
15394 efrain 7140
            '\LeadersLinked\Controller\PerformanceEvaluationController' => \LeadersLinked\Controller\PerformanceEvaluationController::class,
982 geraldo 7141
            '\LeadersLinked\Controller\PerformanceEvaluationFormController' => \LeadersLinked\Controller\PerformanceEvaluationFormController::class,
15394 efrain 7142
            '\LeadersLinked\Controller\PerformanceEvaluationTestController' => \LeadersLinked\Controller\PerformanceEvaluationTestController::class,
1 www 7143
            '\LeadersLinked\Controller\MicrolearningController' => \LeadersLinked\Controller\MicrolearningController::class,
66 efrain 7144
            '\LeadersLinked\Controller\MicrolearningQuizController' => \LeadersLinked\Controller\MicrolearningQuizController::class,
7145
            '\LeadersLinked\Controller\MicrolearningQuestionController' => \LeadersLinked\Controller\MicrolearningQuestionController::class,
7146
            '\LeadersLinked\Controller\MicrolearningAnswerController' => \LeadersLinked\Controller\MicrolearningAnswerController::class,
1 www 7147
            '\LeadersLinked\Controller\MicrolearningTopicController' => \LeadersLinked\Controller\MicrolearningTopicController::class,
7148
            '\LeadersLinked\Controller\MicrolearningCapsuleController' => \LeadersLinked\Controller\MicrolearningCapsuleController::class,
7149
            '\LeadersLinked\Controller\MicrolearningSlideController' => \LeadersLinked\Controller\MicrolearningSlideController::class,
7150
            '\LeadersLinked\Controller\MicrolearningStudentsController' => \LeadersLinked\Controller\MicrolearningStudentsController::class,
7151
            '\LeadersLinked\Controller\MicrolearningAccessForStudentsController' => \LeadersLinked\Controller\MicrolearningAccessForStudentsController::class,
7152
            '\LeadersLinked\Controller\MicrolearningReportsController' => \LeadersLinked\Controller\MicrolearningReportsController::class,
7153
            '\LeadersLinked\Controller\MicrolearningExtendUserCompanyController' => \LeadersLinked\Controller\MicrolearningExtendUserCompanyController::class,
7154
            '\LeadersLinked\Controller\MicrolearningExtendUserFunctionController' => \LeadersLinked\Controller\MicrolearningExtendUserFunctionController::class,
7155
            '\LeadersLinked\Controller\MicrolearningExtendUserGroupController' => \LeadersLinked\Controller\MicrolearningExtendUserGroupController::class,
7156
            '\LeadersLinked\Controller\MicrolearningExtendUserInstitutionController' => \LeadersLinked\Controller\MicrolearningExtendUserInstitutionController::class,
7157
            '\LeadersLinked\Controller\MicrolearningExtendUserPartnerController' => \LeadersLinked\Controller\MicrolearningExtendUserPartnerController::class,
12792 eleazar 7158
            '\LeadersLinked\Controller\MicrolearningExtendUserStudentTypeController' => \LeadersLinked\Controller\MicrolearningExtendUserStudentTypeController::class,
1 www 7159
            '\LeadersLinked\Controller\MicrolearningExtendUserProgramController' => \LeadersLinked\Controller\MicrolearningExtendUserProgramController::class,
7160
            '\LeadersLinked\Controller\MicrolearningExtendUserSectorController' => \LeadersLinked\Controller\MicrolearningExtendUserSectorController::class,
15394 efrain 7161
            '\LeadersLinked\Controller\MicrolearningExtendUserCountryController' => \LeadersLinked\Controller\MicrolearningExtendUserCountryController::class,
16270 anderson 7162
 
1 www 7163
            '\LeadersLinked\Controller\StorageController' => \LeadersLinked\Controller\StorageController::class,
15336 efrain 7164
            '\LeadersLinked\Controller\StorageNetworkController' => \LeadersLinked\Controller\StorageNetworkController::class,
16270 anderson 7165
 
16766 efrain 7166
            '\LeadersLinked\Controller\PlanningController' => \LeadersLinked\Controller\PlanningController::class,
7167
            '\LeadersLinked\Controller\PlanningObjectivesController' => \LeadersLinked\Controller\PlanningObjectivesController::class,
7168
            '\LeadersLinked\Controller\PlanningTaskController' => \LeadersLinked\Controller\PlanningTaskController::class,
7169
            '\LeadersLinked\Controller\PlanningGoalsController' => \LeadersLinked\Controller\PlanningGoalsController::class,
7170
 
15336 efrain 7171
            '\LeadersLinked\Controller\MyPrivateNetworkController' => \LeadersLinked\Controller\MyPrivateNetworkController::class,
7172
            '\LeadersLinked\Controller\PrivateNetworksController' => \LeadersLinked\Controller\PrivateNetworksController::class,
4377 nelberth 7173
            '\LeadersLinked\Controller\HighPerformanceTeamsController' => \LeadersLinked\Controller\HighPerformanceTeamsController::class,
7224 nelberth 7174
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsController::class,
7308 nelberth 7175
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewController::class,
12435 nelberth 7176
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController::class,
12736 nelberth 7177
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewGoalsController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewGoalsController::class,
12835 nelberth 7178
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController::class,
11898 nelberth 7179
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController::class,
7494 nelberth 7180
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController::class,
9095 nelberth 7181
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewCalendarController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewCalendarController::class,
9619 nelberth 7182
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController::class,
9764 nelberth 7183
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesController::class,
10143 nelberth 7184
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoController::class,
9921 nelberth 7185
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesViewController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesViewController::class,
7811 nelberth 7186
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController::class,
11340 nelberth 7187
            '\LeadersLinked\Controller\ChatController' => \LeadersLinked\Controller\ChatController::class,
13010 nelberth 7188
            '\LeadersLinked\Controller\CommunicationController' => \LeadersLinked\Controller\CommunicationController::class,
13675 nelberth 7189
            '\LeadersLinked\Controller\CommunicationInboxController' => \LeadersLinked\Controller\CommunicationInboxController::class,
16766 efrain 7190
 
7191
 
7192
 
7193
            '\LeadersLinked\Controller\HelperController' => \LeadersLinked\Controller\HelperController::class,
7194
            '\LeadersLinked\Controller\InMailCompanyController' => \LeadersLinked\Controller\InMailCompanyController::class,
7195
            '\LeadersLinked\Controller\InMailPersonalController' => \LeadersLinked\Controller\InMailPersonalController::class,
7196
 
15387 efrain 7197
            '\LeadersLinked\Controller\ReportController' => \LeadersLinked\Controller\ReportController::class,
1333 efrain 7198
            '\LeadersLinked\Controller\UnknownController' => \LeadersLinked\Controller\UnknownController::class,
13014 nelberth 7199
            '\LeadersLinked\Controller\TestController' => \LeadersLinked\Controller\TestController::class,
15392 efrain 7200
            '\LeadersLinked\Controller\AptitudeController' => \LeadersLinked\Controller\AptitudeController::class,
7201
            '\LeadersLinked\Controller\HobbyAndInterestController' => \LeadersLinked\Controller\HobbyAndInterestController::class,
15460 efrain 7202
            '\LeadersLinked\Controller\CountriesController' => \LeadersLinked\Controller\CountriesController::class,
15607 anderson 7203
 
7204
 
15401 efrain 7205
            '\LeadersLinked\Controller\DiscoveryContactController' => \LeadersLinked\Controller\DiscoveryContactController::class,
7206
            '\LeadersLinked\Controller\DiscoveryContactLogController' => \LeadersLinked\Controller\DiscoveryContactLogController::class,
7207
            '\LeadersLinked\Controller\DiscoveryContactInteractionTypeController' => \LeadersLinked\Controller\DiscoveryContactInteractionTypeController::class,
7208
            '\LeadersLinked\Controller\DiscoveryContactInteractionController' => \LeadersLinked\Controller\DiscoveryContactInteractionController::class,
15671 anderson 7209
            '\LeadersLinked\Controller\DiscoveryContactProgressController' => \LeadersLinked\Controller\DiscoveryContactProgressController::class,
16758 efrain 7210
            '\LeadersLinked\Controller\DiscoveryContactReportController' => \LeadersLinked\Controller\DiscoveryContactReportController::class,
15607 anderson 7211
 
15442 efrain 7212
            '\LeadersLinked\Controller\ActivityCenterController' => \LeadersLinked\Controller\ActivityCenterController::class,
7213
            '\LeadersLinked\Controller\ActivityCenterPerformanceEvaluationController' => \LeadersLinked\Controller\ActivityCenterPerformanceEvaluationController::class,
15461 efrain 7214
            '\LeadersLinked\Controller\ActivityCenterRecruitmentSelectionController' => \LeadersLinked\Controller\ActivityCenterRecruitmentSelectionController::class,
15607 anderson 7215
 
15540 efrain 7216
            '\LeadersLinked\Controller\EngagementController' => \LeadersLinked\Controller\EngagementController::class,
15543 efrain 7217
            '\LeadersLinked\Controller\EngagementRewardController' => \LeadersLinked\Controller\EngagementRewardController::class,
15540 efrain 7218
            '\LeadersLinked\Controller\EngagementReportsController' => \LeadersLinked\Controller\EngagementReportsController::class,
15607 anderson 7219
 
15540 efrain 7220
            '\LeadersLinked\Controller\DailyPulseController' => \LeadersLinked\Controller\DailyPulseController::class,
7221
            '\LeadersLinked\Controller\DailyPulseEmojiController' => \LeadersLinked\Controller\DailyPulseEmojiController::class,
7222
            '\LeadersLinked\Controller\DailyPulseReportsController' => \LeadersLinked\Controller\DailyPulseReportsController::class,
15607 anderson 7223
 
15451 efrain 7224
            '\LeadersLinked\Controller\MyCoachController' => \LeadersLinked\Controller\MyCoachController::class,
7225
            '\LeadersLinked\Controller\MyCoachCategoryController' => \LeadersLinked\Controller\MyCoachCategoryController::class,
15831 efrain 7226
            '\LeadersLinked\Controller\MyCoachCategoryUserController' => \LeadersLinked\Controller\MyCoachCategoryUserController::class,
16180 anderson 7227
 
16248 efrain 7228
            '\LeadersLinked\Controller\KnowledgeAreaController' => \LeadersLinked\Controller\KnowledgeAreaController::class,
7229
            '\LeadersLinked\Controller\KnowledgeAreaCategoryController' => \LeadersLinked\Controller\KnowledgeAreaCategoryController::class,
7230
            '\LeadersLinked\Controller\KnowledgeAreaCategoryUserController' => \LeadersLinked\Controller\KnowledgeAreaCategoryUserController::class,
16270 anderson 7231
 
16701 efrain 7232
            '\LeadersLinked\Controller\FastSurveyController' => \LeadersLinked\Controller\FastSurveyController::class,
16270 anderson 7233
 
15457 efrain 7234
            '\LeadersLinked\Controller\UserRequestAccessController' => \LeadersLinked\Controller\UserRequestAccessController::Class,
16285 efrain 7235
            '\LeadersLinked\Controller\ToolsController' => \LeadersLinked\Controller\ToolsController::Class,
1 www 7236
        ]
7237
    ],
7238
    'laminas-cli' => [
16643 efrain 7239
        'commands' => [
7240
            'check-discovery-contacts' => \LeadersLinked\Command\CheckDiscoveryContactCommand::class,
16766 efrain 7241
            'duplicate-discovery-contacts' => \LeadersLinked\Command\DuplicateDiscoveryContactCommand::class,
16643 efrain 7242
        ]
1 www 7243
    ],
7244
    'service_manager' => [
7245
        'abstract_factories' => [
7246
            \Laminas\Db\Adapter\AdapterAbstractServiceFactory::class
7247
        ],
7248
        'factories' => [
7249
            'RenderingStrategy' => function ($container) {
7250
                $translator = $container->get('MvcTranslator');
7251
                return new \LeadersLinked\View\RenderingStrategy($translator);
7252
            },
7253
            'menuNavigation' => \LeadersLinked\Navigation\MenuNavigation::class,
7254
            'footerNavigation' => \LeadersLinked\Navigation\FooterNavigation::class,
16643 efrain 7255
            \LeadersLinked\Command\CheckDiscoveryContactCommand::class => \LeadersLinked\Factory\Command\CheckDiscoveryContactCommandFactory::class,
16766 efrain 7256
            \LeadersLinked\Command\DuplicateDiscoveryContactCommand::class => \LeadersLinked\Factory\Command\DuplicateDiscoveryContactCommandFactory::class,
16643 efrain 7257
 
1089 geraldo 7258
        ],
15607 anderson 7259
        'aliases' => [ // 'leaders-linked-storage' => \LeadersLinked\Service\StorageService::class
1 www 7260
        ]
7261
    ],
7262
    'view_helpers' => [
7263
        'factories' => [
11351 nelberth 7264
            \LeadersLinked\Helper\ChatHelper::class => \LeadersLinked\Factory\Helper\ChatHelperFactory::class,
1 www 7265
            \LeadersLinked\Helper\CurrentUserHelper::class => \LeadersLinked\Factory\Helper\CurrentUserHelperFactory::class,
15336 efrain 7266
            \LeadersLinked\Helper\CurrentNetworkHelper::class => \LeadersLinked\Factory\Helper\CurrentNetworkHelperFactory::class,
7267
            \LeadersLinked\Helper\NetworkFavicoHelper::class => \LeadersLinked\Factory\Helper\NetworkFavicoHelperFactory::class,
7268
            \LeadersLinked\Helper\NetworkIntroHelper::class => \LeadersLinked\Factory\Helper\NetworkIntroHelperFactory::class,
7269
            \LeadersLinked\Helper\NetworkLogoHelper::class => \LeadersLinked\Factory\Helper\NetworkLogoHelperFactory::class,
7270
            \LeadersLinked\Helper\NetworkNavbarHelper::class => \LeadersLinked\Factory\Helper\NetworkNavbarHelperFactory::class,
7271
            \LeadersLinked\Helper\NetworkStylesAndColorsHelper::class => \LeadersLinked\Factory\Helper\NetworkStylesAndColorsHelperFactory::class,
15607 anderson 7272
 
1 www 7273
        ],
7274
        'invokables' => [
11527 nelberth 7275
            'chatHelper' => \LeadersLinked\Helper\ChatHelper::class,
1 www 7276
            'menuHelper' => \LeadersLinked\Helper\MenuHelper::class,
7277
        ],
7278
        'aliases' => [
15607 anderson 7279
 
1 www 7280
            'currentUserHelper' => \LeadersLinked\Helper\CurrentUserHelper::class,
15336 efrain 7281
            'currentNetworkHelper' =>  \LeadersLinked\Helper\CurrentNetworkHelper::class,
7282
            'networkFavicoHelper'  => \LeadersLinked\Helper\NetworkFavicoHelper::class,
7283
            'networkIntroHelper' => \LeadersLinked\Helper\NetworkIntroHelper::class,
7284
            'networkLogoHelper'  => \LeadersLinked\Helper\NetworkLogoHelper::class,
7285
            'networkNavbarHelper'  => \LeadersLinked\Helper\NetworkNavbarHelper::class,
7286
            'networkStylesAndColorsHelper'  => \LeadersLinked\Helper\NetworkStylesAndColorsHelper::class,
15607 anderson 7287
 
7288
 
1 www 7289
        ]
7290
    ],
7291
    'controller_plugins' => [
7292
        'invokables' => [],
7293
        'factories' => [
15336 efrain 7294
            \LeadersLinked\Plugin\CurrentUserPlugin::class => \LeadersLinked\Factory\Plugin\CurrentUserPluginFactory::class,
7295
            \LeadersLinked\Plugin\CurrentNetworkPlugin::class => \LeadersLinked\Factory\Plugin\CurrentNetworkPluginFactory::class,
1 www 7296
        ],
7297
        'aliases' => [
15607 anderson 7298
            'currentUserPlugin' => \LeadersLinked\Plugin\CurrentUserPlugin::class,
15336 efrain 7299
            'currentNetworkPlugin' => \LeadersLinked\Plugin\CurrentNetworkPlugin::class,
1 www 7300
        ]
7301
    ],
7302
    'view_manager' => [
7303
        'display_not_found_reason' => true,
7304
        'display_exceptions' => true,
7305
        'doctype' => 'HTML5',
7306
        'not_found_template' => 'error/404',
7307
        'exception_template' => 'error/index',
7308
        'template_map' => [
7309
            'layout/layout' => __DIR__ . '/../view/layout/layout.phtml',
7310
            'error/404' => __DIR__ . '/../view/error/404.phtml',
7311
            'error/index' => __DIR__ . '/../view/error/index.phtml'
7312
        ],
7313
        'template_path_stack' => [
7314
            __DIR__ . '/../view'
7315
        ],
7316
        'strategies' => [
7317
            'ViewJsonStrategy',
7318
            'RenderingStrategy'
7319
        ]
7320
    ]
7321
];