Proyectos de Subversion LeadersLinked - Backend

Rev

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

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