Proyectos de Subversion LeadersLinked - Backend

Rev

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