Proyectos de Subversion LeadersLinked - Backend

Rev

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