Proyectos de Subversion LeadersLinked - Backend

Rev

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