Proyectos de Subversion LeadersLinked - Backend

Rev

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