Proyectos de Subversion LeadersLinked - Backend

Rev

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