Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16785 | Rev 16791 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

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