Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 15394 | Rev 15442 | 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
 
15401 efrain 3742
 
3743
            'discovery-contacts' => [
3744
                'type' => Literal::class,
3745
                'options' => [
3746
                    'route' => '/discovery-contacts',
3747
                    'defaults' => [
3748
                        'controller' => '\LeadersLinked\Controller\DiscoveryContactController',
3749
                        'action' => 'index'
3750
                    ]
3751
                ],
3752
                'may_terminate' => true,
3753
                'child_routes' => [
3754
                    'add' => [
3755
                        'type' => Literal::class,
3756
                        'options' => [
3757
                            'route' => '/add',
3758
                            'defaults' => [
3759
                                'controller' => '\LeadersLinked\Controller\DiscoveryContactController',
3760
                                'action' => 'add'
3761
                            ]
3762
                        ]
3763
                    ],
3764
                    'edit' => [
3765
                        'type' => Segment::class,
3766
                        'options' => [
3767
                            'route' => '/edit/:id',
3768
                            'constraints' => [
3769
                                'id' => '[A-Za-z0-9\-]+\=*'
3770
                            ],
3771
                            'defaults' => [
3772
                                'controller' => '\LeadersLinked\Controller\DiscoveryContactController',
3773
                                'action' => 'edit'
3774
                            ]
3775
                        ]
3776
                    ],
3777
                    'delete' => [
3778
                        'type' => Segment::class,
3779
                        'options' => [
3780
                            'route' => '/delete/:id',
3781
                            'constraints' => [
3782
                                'id' => '[A-Za-z0-9\-]+\=*'
3783
                            ],
3784
                            'defaults' => [
3785
                                'controller' => '\LeadersLinked\Controller\DiscoveryContactController',
3786
                                'action' => 'delete'
3787
                            ]
3788
                        ]
3789
                    ],
3790
                    'view' => [
3791
                        'type' => Segment::class,
3792
                        'options' => [
3793
                            'route' => '/view/:id',
3794
                            'constraints' => [
3795
                                'id' => '[A-Za-z0-9\-]+\=*'
3796
                            ],
3797
                            'defaults' => [
3798
                                'controller' => '\LeadersLinked\Controller\DiscoveryContactController',
3799
                                'action' => 'view'
3800
                            ]
3801
                        ]
3802
                    ],
3803
                    'interaction-types' => [
3804
                        'type' => Literal::class,
3805
                        'options' => [
3806
                            'route' => '/interaction-types',
3807
                            'defaults' => [
3808
                                'controller' => '\LeadersLinked\Controller\DiscoveryContactInteractionTypeController',
3809
                                'action' => 'index'
3810
                            ]
3811
                        ],
3812
                        'may_terminate' => true,
3813
                        'child_routes' => [
3814
                            'add' => [
3815
                                'type' => Literal::class,
3816
                                'options' => [
3817
                                    'route' => '/add',
3818
                                    'defaults' => [
3819
                                        'controller' => '\LeadersLinked\Controller\DiscoveryContactInteractionTypeController',
3820
                                        'action' => 'add'
3821
                                    ]
3822
                                ]
3823
                            ],
3824
                            'edit' => [
3825
                                'type' => Segment::class,
3826
                                'options' => [
3827
                                    'route' => '/edit/:id',
3828
                                    'constraints' => [
3829
                                        'id' => '[A-Za-z0-9\-]+\=*'
3830
                                    ],
3831
                                    'defaults' => [
3832
                                        'controller' => '\LeadersLinked\Controller\DiscoveryContactInteractionTypeController',
3833
                                        'action' => 'edit'
3834
                                    ]
3835
                                ]
3836
                            ],
3837
                            'delete' => [
3838
                                'type' => Segment::class,
3839
                                'options' => [
3840
                                    'route' => '/delete/:id',
3841
                                    'constraints' => [
3842
                                        'id' => '[A-Za-z0-9\-]+\=*'
3843
                                    ],
3844
                                    'defaults' => [
3845
                                        'controller' => '\LeadersLinked\Controller\DiscoveryContactInteractionTypeController',
3846
                                        'action' => 'delete'
3847
                                    ]
3848
                                ]
3849
                            ],
3850
 
3851
 
3852
 
3853
                        ]
3854
                    ],
3855
                    'interactions' => [
3856
                        'type' => Segment::class,
3857
                        'options' => [
3858
                            'route' => '/interactions/:id',
3859
                            'constraints' => [
3860
                                'id' => '[A-Za-z0-9\-]+\=*'
3861
                            ],
3862
                            'defaults' => [
3863
                                'controller' => '\LeadersLinked\Controller\DiscoveryContactInteractionController',
3864
                                'action' => 'index'
3865
                            ]
3866
                        ],
3867
                        'may_terminate' => true,
3868
                        'child_routes' => [
3869
                            'add' => [
3870
                                'type' => Segment::class,
3871
                                'options' => [
3872
                                    'route' => '/add',
3873
                                    'defaults' => [
3874
                                        'controller' => '\LeadersLinked\Controller\DiscoveryContactInteractionController',
3875
                                        'action' => 'add'
3876
                                    ]
3877
                                ]
3878
                            ],
3879
                            'delete' => [
3880
                                'type' => Segment::class,
3881
                                'options' => [
3882
                                    'route' => '/delete/:interaction',
3883
                                    'constraints' => [
3884
                                        'interaction' => '[A-Za-z0-9\-]+\=*'
3885
                                    ],
3886
                                    'defaults' => [
3887
                                        'controller' => '\LeadersLinked\Controller\DiscoveryContactInteractionController',
3888
                                        'action' => 'delete'
3889
                                    ]
3890
                                ]
3891
                            ],
3892
 
3893
 
3894
 
3895
                        ]
3896
                    ],
3897
                    'logs' => [
3898
                        'type' => Segment::class,
3899
                        'options' => [
3900
                            'route' => '/log/:id',
3901
                            'constraints' => [
3902
                                'id' => '[A-Za-z0-9\-]+\=*'
3903
                            ],
3904
                            'defaults' => [
3905
                                'controller' => '\LeadersLinked\Controller\DiscoveryContactLogController',
3906
                                'action' => 'index'
3907
                            ]
3908
                        ],
3909
                        'may_terminate' => true,
3910
                        'child_routes' => [
3911
                        ]
3912
                    ],
3913
 
3914
                ]
3915
            ],
3916
 
3917
 
3918
 
1333 efrain 3919
            'development-and-training' => [
3920
                'type' => Literal::class,
3921
                'options' => [
3922
                    'route' => '/development-and-training',
3923
                    'defaults' => [
3924
                        'controller' => '\LeadersLinked\Controller\UnknownController',
3925
                        'action' => 'index'
3926
                    ]
3927
                ],
3928
                'may_terminate' => true,
3929
                'child_routes' => [
15401 efrain 3930
 
1333 efrain 3931
                ]
3932
            ],
1477 efrain 3933
 
1333 efrain 3934
 
1477 efrain 3935
            'recruitment-and-selection' => [
1333 efrain 3936
                'type' => Literal::class,
3937
                'options' => [
1477 efrain 3938
                    'route' => '/recruitment-and-selection',
1333 efrain 3939
                    'defaults' => [
1477 efrain 3940
                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionController',
1333 efrain 3941
                        'action' => 'index'
3942
                    ]
3943
                ],
3944
                'may_terminate' => true,
3945
                'child_routes' => [
1477 efrain 3946
                    'vacancies' => [
1345 eleazar 3947
                        'type' => Literal::class,
3948
                        'options' => [
1477 efrain 3949
                            'route' => '/vacancies',
1345 eleazar 3950
                            'defaults' => [
1385 eleazar 3951
                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionVacancyController',
1345 eleazar 3952
                                'action' => 'index'
3953
                            ]
3954
                        ],
3955
                        'may_terminate' => true,
3956
                        'child_routes' => [
3957
                            'add' => [
3958
                                'type' => Literal::class,
3959
                                'options' => [
3960
                                    'route' => '/add',
3961
                                    'defaults' => [
1385 eleazar 3962
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionVacancyController',
1345 eleazar 3963
                                        'action' => 'add'
3964
                                    ]
3965
                                ]
3966
                            ],
3967
                            'edit' => [
3968
                                'type' => Segment::class,
3969
                                'options' => [
3970
                                    'route' => '/edit/:id',
3971
                                    'constraints' => [
3972
                                        'id' => '[A-Za-z0-9\-]+\=*'
3973
                                    ],
3974
                                    'defaults' => [
1385 eleazar 3975
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionVacancyController',
1345 eleazar 3976
                                        'action' => 'edit'
3977
                                    ]
3978
                                ]
3979
                            ],
3980
                            'delete' => [
3981
                                'type' => Segment::class,
3982
                                'options' => [
3983
                                    'route' => '/delete/:id',
3984
                                    'constraints' => [
3985
                                        'id' => '[A-Za-z0-9\-]+\=*'
3986
                                    ],
3987
                                    'defaults' => [
1385 eleazar 3988
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionVacancyController',
1345 eleazar 3989
                                        'action' => 'delete'
3990
                                    ]
3991
                                ]
3992
                            ]
3993
                        ]
3994
                    ],
1459 eleazar 3995
                    'candidates' => [
3996
                        'type' => Segment::class,
3997
                        'options' => [
1501 eleazar 3998
                            'route' => '/candidates[/:vacancy_uuid]',
1459 eleazar 3999
                            'constraints' => [
1508 eleazar 4000
                                'vacancy_uuid' => '[A-Za-z0-9\-]+\=*'
1459 eleazar 4001
                            ],
4002
                            'defaults' => [
4003
                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
1502 eleazar 4004
                                'action' => 'index',
1503 eleazar 4005
                                'vacancy_uuid' => '',
1459 eleazar 4006
                            ]
4007
                        ],
4008
                        'may_terminate' => true,
4009
                        'child_routes' => [
4010
                            'add' => [
4011
                                'type' => Literal::class,
4012
                                'options' => [
1506 eleazar 4013
                                    'route' => '/add',
1459 eleazar 4014
                                    'defaults' => [
4015
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
4016
                                        'action' => 'add'
4017
                                    ]
4018
                                ]
4019
                            ],
4020
                            'edit' => [
4021
                                'type' => Segment::class,
4022
                                'options' => [
4023
                                    'route' => '/edit/:id',
4024
                                    'constraints' => [
4025
                                        'id' => '[A-Za-z0-9\-]+\=*'
4026
                                    ],
4027
                                    'defaults' => [
4028
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
4029
                                        'action' => 'edit'
4030
                                    ]
4031
                                ]
4032
                            ],
4033
                            'delete' => [
4034
                                'type' => Segment::class,
4035
                                'options' => [
4036
                                    'route' => '/delete/:id',
4037
                                    'constraints' => [
4038
                                        'id' => '[A-Za-z0-9\-]+\=*'
4039
                                    ],
4040
                                    'defaults' => [
4041
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
4042
                                        'action' => 'delete'
4043
                                    ]
4044
                                ]
1630 eleazar 4045
                            ],
4046
                            'email' => [
4047
                                'type' => Literal::class,
4048
                                'options' => [
4049
                                    'route' => '/email',
4050
                                    'defaults' => [
4051
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
4052
                                        'action' => 'email'
4053
                                    ]
4054
                                ]
4055
                            ],
1459 eleazar 4056
                        ]
4057
                    ],
1635 eleazar 4058
                    'user-by-email' => [
4059
                        'type' => Literal::class,
4060
                        'options' => [
4061
                            'route' => '/user-by-email',
4062
                            'defaults' => [
4063
                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
4064
                                'action' => 'email'
4065
                            ]
4066
                        ]
1709 eleazar 4067
                    ],
4068
                    'interview' => [
4069
                        'type' => Segment::class,
4070
                        'options' => [
4071
                            'route' => '/interview',
4072
                            'defaults' => [
4073
                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewController',
4074
                                'action' => 'index',
4075
                            ],
4076
                        ],
4077
                        'may_terminate' => true,
4078
                        'child_routes' => [
4079
                            'form' => [
4351 eleazar 4080
                                'type' => Segment::class,
1709 eleazar 4081
                                'options' => [
4349 eleazar 4082
                                    'route' => '/form[/:vacancy_uuid]',
4083
                                    'constraints' => [
4084
                                        'vacancy_uuid' => '[A-Za-z0-9\-]+\=*'
4085
                                    ],
1709 eleazar 4086
                                    'defaults' => [
1711 eleazar 4087
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
2029 eleazar 4088
                                        'action' => 'index',
4352 eleazar 4089
                                        'vacancy_uuid' => '',
1709 eleazar 4090
                                    ],
4091
                                ],
4092
                                'may_terminate' => true,
4093
                                'child_routes' => [
4094
                                    'add' => [
2059 eleazar 4095
                                        'type' => Segment::class,
1709 eleazar 4096
                                        'options' => [
3563 eleazar 4097
                                            'route' => '/add',
1709 eleazar 4098
                                            'defaults' => [
1899 eleazar 4099
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
1709 eleazar 4100
                                                'action' => 'add'
4101
                                            ],
4102
                                        ],
4103
                                    ],
4104
                                    'edit' => [
2775 eleazar 4105
                                        'type' => Segment::class,
1709 eleazar 4106
                                        'options' => [
2764 eleazar 4107
                                            'route' => '/edit/:interview_uuid',
2765 eleazar 4108
                                            'constraints' => [
4109
                                                'interview_uuid' => '[A-Za-z0-9\-]+\=*'
4110
                                            ],
1709 eleazar 4111
                                            'defaults' => [
1944 eleazar 4112
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
1709 eleazar 4113
                                                'action' => 'edit'
4114
                                            ],
4115
                                        ],
4116
                                    ],
4117
                                    'delete' => [
2775 eleazar 4118
                                        'type' => Segment::class,
1709 eleazar 4119
                                        'options' => [
2764 eleazar 4120
                                            'route' => '/delete/:interview_uuid',
2765 eleazar 4121
                                            'constraints' => [
4122
                                                'interview_uuid' => '[A-Za-z0-9\-]+\=*'
4123
                                            ],
1709 eleazar 4124
                                            'defaults' => [
2766 eleazar 4125
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
1709 eleazar 4126
                                                'action' => 'delete'
4127
                                            ],
4128
                                        ],
4129
                                    ],
8781 eleazar 4130
                                ],
4131
                            ],
4132
                            'file' => [
4133
                                'type' => Segment::class,
4134
                                'options' => [
4135
                                    'route' => '/:interview_uuid/file',
4136
                                    'constraints' => [
4137
                                        'interview_uuid' => '[A-Za-z0-9\-]+\=*'
4138
                                    ],
4139
                                    'defaults' => [
4140
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFileController',
4141
                                        'action' => 'index'
4142
                                    ],
4143
                                ],
4144
                                'may_terminate' => true,
4145
                                'child_routes' => [
4146
                                    'add' => [
4147
                                        'type' => Literal::class,
4148
                                        'options' => [
4149
                                            'route' => '/add',
4150
                                            'defaults' => [
4151
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFileController',
4152
                                                'action' => 'add'
4153
                                            ]
4154
                                        ]
4155
                                    ],
4156
                                    'edit' => [
8779 eleazar 4157
                                        'type' => Segment::class,
4158
                                        'options' => [
8874 eleazar 4159
                                            'route' => '/edit/:id',
8779 eleazar 4160
                                            'constraints' => [
8781 eleazar 4161
                                                'id' => '[A-Za-z0-9\-]+\=*'
8779 eleazar 4162
                                            ],
4163
                                            'defaults' => [
4164
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFileController',
8781 eleazar 4165
                                                'action' => 'edit'
4166
                                            ]
4167
                                        ]
4168
                                    ],
4169
                                    'delete' => [
4170
                                        'type' => Segment::class,
4171
                                        'options' => [
8874 eleazar 4172
                                            'route' => '/delete/:id',
8781 eleazar 4173
                                            'constraints' => [
4174
                                                'id' => '[A-Za-z0-9\-]+\=*'
8779 eleazar 4175
                                            ],
8781 eleazar 4176
                                            'defaults' => [
4177
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFileController',
4178
                                                'action' => 'delete'
8779 eleazar 4179
                                            ]
4180
                                        ]
8874 eleazar 4181
                                    ],
8781 eleazar 4182
                                ]
1709 eleazar 4183
                            ],
4184
                            'report' =>[
4185
                                'type' => Segment::class,
4186
                                'options' => [
2864 eleazar 4187
                                    'route' => '/report/:interview_uuid',
4188
                                    'constraints' => [
4189
                                        'interview_uuid' => '[A-Za-z0-9\-]+\=*'
4190
                                    ],
1709 eleazar 4191
                                    'defaults' => [
2864 eleazar 4192
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
4193
                                        'action' => 'report',
1709 eleazar 4194
                                    ],
4195
                                ],
4196
                            ],
3571 eleazar 4197
                            'vacancy' =>[
4198
                                'type' => Segment::class,
4199
                                'options' => [
4200
                                    'route' => '/vacancy/:vacancy_uuid',
4201
                                    'constraints' => [
4202
                                        'vacancy_uuid' => '[A-Za-z0-9\-]+\=*'
4203
                                    ],
4204
                                    'defaults' => [
4205
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
4206
                                        'action' => 'vacancy',
4207
                                    ],
4208
                                ],
4209
                            ],
4367 eleazar 4210
                            'type' =>[
4365 eleazar 4211
                                'type' => Segment::class,
4212
                                'options' => [
4367 eleazar 4213
                                    'route' => '/type/:candidate_uuid',
4365 eleazar 4214
                                    'constraints' => [
4215
                                        'candidate_uuid' => '[A-Za-z0-9\-]+\=*'
4216
                                    ],
4217
                                    'defaults' => [
4218
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
4367 eleazar 4219
                                        'action' => 'type',
4365 eleazar 4220
                                    ],
4221
                                ],
4222
                            ],
1709 eleazar 4223
                        ],
8779 eleazar 4224
                    ],
1459 eleazar 4225
                ],
1333 efrain 4226
            ],
4227
 
4228
            'induction' => [
4229
                'type' => Literal::class,
4230
                'options' => [
4231
                    'route' => '/induction',
4232
                    'defaults' => [
4233
                        'controller' => '\LeadersLinked\Controller\UnknownController',
4234
                        'action' => 'index'
4235
                    ]
4236
                ],
4237
                'may_terminate' => true,
4238
                'child_routes' => [
4239
                ]
4240
            ],
4241
 
4242
            'organizational-climate' => [
4243
                'type' => Literal::class,
4244
                'options' => [
4245
                    'route' => '/organizational-climate',
4246
                    'defaults' => [
7218 eleazar 4247
                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateController',
1333 efrain 4248
                        'action' => 'index'
4249
                    ]
4250
                ],
4251
                'may_terminate' => true,
4252
                'child_routes' => [
7218 eleazar 4253
                    'add' => [
4254
                        'type' => Segment::class,
4255
                        'options' => [
4256
                            'route' => '/add',
4257
                            'defaults' => [
7295 eleazar 4258
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateController',
7218 eleazar 4259
                                'action' => 'add'
4260
                            ],
4261
                        ],
4262
                    ],
4263
                    'edit' => [
4264
                        'type' => Segment::class,
4265
                        'options' => [
4266
                            'route' => '/edit/:id',
4267
                            'defaults' => [
7295 eleazar 4268
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateController',
7218 eleazar 4269
                                'action' => 'edit'
4270
                            ],
4271
                        ],
4272
                    ],
4273
                    'delete' => [
4274
                        'type' => Segment::class,
4275
                        'options' => [
4276
                            'route' => '/delete/:id',
4277
                            'defaults' => [
7295 eleazar 4278
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateController',
7218 eleazar 4279
                                'action' => 'delete'
4280
                            ],
4281
                        ],
4282
                    ],
4283
                    'segment' => [
4284
                        'type' => Segment::class,
4285
                        'options' => [
4286
                            'route' => '/segment/:id',
8536 efrain 4287
                            'constraints' => [
4288
                                'id' => '[A-Za-z0-9\-]+\=*'
4289
                            ],
7218 eleazar 4290
                            'defaults' => [
7295 eleazar 4291
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateController',
7218 eleazar 4292
                                'action' => 'segment'
4293
                            ],
4294
                        ],
4295
                    ],
4296
                    'form' => [
4297
                        'type' => Segment::class,
4298
                        'options' => [
4299
                            'route' => '/form',
4300
                            'defaults' => [
7295 eleazar 4301
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateFormController',
7218 eleazar 4302
                                'action' => 'index',
4303
                            ],
4304
                        ],
4305
                        'may_terminate' => true,
4306
                        'child_routes' => [
4307
                            'add' => [
4308
                                'type' => Segment::class,
4309
                                'options' => [
4310
                                    'route' => '/add',
4311
                                    'defaults' => [
7295 eleazar 4312
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateFormController',
7218 eleazar 4313
                                        'action' => 'add'
4314
                                    ],
4315
                                ],
4316
                            ],
4317
                            'edit' => [
4318
                                'type' => Segment::class,
4319
                                'options' => [
4320
                                    'route' => '/edit/:id',
4321
                                    'constraints' => [
4322
                                        'id' => '[A-Za-z0-9\-]+\=*'
4323
                                    ],
4324
                                    'defaults' => [
7295 eleazar 4325
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateFormController',
7218 eleazar 4326
                                        'action' => 'edit'
4327
                                    ]
4328
                                ]
4329
                            ],
4330
                            'delete' => [
4331
                                'type' => Segment::class,
4332
                                'options' => [
4333
                                    'route' => '/delete/:id',
4334
                                    'constraints' => [
4335
                                        'id' => '[A-Za-z0-9\-]+\=*'
4336
                                    ],
4337
                                    'defaults' => [
7295 eleazar 4338
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateFormController',
7218 eleazar 4339
                                        'action' => 'delete'
4340
                                    ]
4341
                                ]
4342
                            ]
4343
                        ],
4344
                    ],
4345
                    'test' => [
4346
                        'type' => Segment::class,
4347
                        'options' => [
14187 efrain 4348
                            'route' => '/test[/:organizational_climate_id]',
7218 eleazar 4349
                            'constraints' => [
14187 efrain 4350
                                'organizational_climate_id' => '[A-Za-z0-9\-]+\=*'
7218 eleazar 4351
                            ],
4352
                            'defaults' => [
7295 eleazar 4353
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateTestController',
7218 eleazar 4354
                                'action' => 'index',
14187 efrain 4355
                                'organizational_climate_id' => '',
7218 eleazar 4356
                            ],
4357
                        ],
4358
                        'may_terminate' => true,
4359
                        'child_routes' => [
4360
                            'add' => [
4361
                                'type' => Segment::class,
4362
                                'options' => [
4363
                                    'route' => '/add',
4364
                                    'defaults' => [
7295 eleazar 4365
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateTestController',
7218 eleazar 4366
                                        'action' => 'add',
4367
                                    ],
4368
                                ],
4369
                            ],
4370
                            'report' => [
4371
                                'type' => Segment::class,
4372
                                'options' => [
4373
                                    'route' => '/report/:uuid',
4374
                                    'defaults' => [
7295 eleazar 4375
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateTestController',
7218 eleazar 4376
                                        'action' => 'report',
4377
                                    ],
4378
                                ],
4379
                            ],
4380
                            'delete' => [
4381
                                'type' => Segment::class,
4382
                                'options' => [
4383
                                    'route' => '/delete/:id',
4384
                                    'defaults' => [
7295 eleazar 4385
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateTestController',
7218 eleazar 4386
                                        'action' => 'delete'
4387
                                    ]
4388
                                ]
4389
                            ]
4390
                        ],
4391
                    ],
4392
                    'report' => [
4393
                        'type' => Segment::class,
4394
                        'options' => [
14187 efrain 4395
                            'route' => '/report[/:organizational_climate_id]',
7218 eleazar 4396
                            'constraints' => [
14187 efrain 4397
                                'organizational_climate_id' => '[A-Za-z0-9\-]+\=*'
7218 eleazar 4398
                            ],
4399
                            'defaults' => [
7295 eleazar 4400
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateReportController',
7218 eleazar 4401
                                'action' => 'index',
14187 efrain 4402
                                'organizational_climate_id' => '',
7218 eleazar 4403
                            ],
4404
                        ],
4405
                        'may_terminate' => true,
4406
                        'child_routes' => [
4407
                            'all' => [
4408
                                'type' => Segment::class,
4409
                                'options' => [
4410
                                    'route' => '/all',
4411
                                    'defaults' => [
7295 eleazar 4412
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateReportController',
7218 eleazar 4413
                                        'action' => 'all',
4414
                                    ]
4415
                                ]
4416
                            ],
4417
                            'overview' => [
4418
                                'type' => Segment::class,
4419
                                'options' => [
4420
                                    'route' => '/overview',
4421
                                    'defaults' => [
7295 eleazar 4422
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateReportController',
7218 eleazar 4423
                                        'action' => 'overview',
4424
                                    ]
4425
                                ]
4426
                            ],
15149 efrain 4427
                            'excel' => [
7218 eleazar 4428
                                'type' => Segment::class,
4429
                                'options' => [
15149 efrain 4430
                                    'route' => '/excel',
7218 eleazar 4431
                                    'defaults' => [
7295 eleazar 4432
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateReportController',
15149 efrain 4433
                                        'action' => 'excel',
7218 eleazar 4434
                                    ]
4435
                                ]
4436
                            ],
4437
                        ],
4438
                    ],
4439
                ],
1333 efrain 4440
            ],
4441
 
4442
            'culture' => [
4443
                'type' => Literal::class,
4444
                'options' => [
4445
                    'route' => '/culture',
4446
                    'defaults' => [
4447
                        'controller' => '\LeadersLinked\Controller\UnknownController',
4448
                        'action' => 'index'
4449
                    ]
4450
                ],
4451
                'may_terminate' => true,
4452
                'child_routes' => [
4453
                ]
4454
            ],
13524 nelberth 4455
            'inmail' => [
13553 nelberth 4456
                'type' => Literal::class,
1333 efrain 4457
                'options' => [
13553 nelberth 4458
                    'route' => '/inmail',
4459
 
1333 efrain 4460
                    'defaults' => [
13528 nelberth 4461
                        'controller' => '\LeadersLinked\Controller\InMailController',
13170 nelberth 4462
                        'action' => 'index'
1333 efrain 4463
                    ]
4464
                ],
4465
                'may_terminate' => true,
4466
                'child_routes' => [
13760 nelberth 4467
                    'sendall' => [
4468
                        'type' => Literal::class,
4469
                        'options' => [
4470
                            'route' => '/sendall',
4471
                            'defaults' => [
13761 nelberth 4472
                                'controller' => '\LeadersLinked\Controller\InMailController',
13760 nelberth 4473
                                'action' => 'sendAll'
4474
                            ]
4475
                        ]
4476
                    ],
13524 nelberth 4477
                    'search-people' => [
4478
                        'type' => Literal::class,
13013 nelberth 4479
                        'options' => [
13524 nelberth 4480
                            'route' => '/search-people',
13013 nelberth 4481
                            'defaults' => [
13528 nelberth 4482
                                'controller' => '\LeadersLinked\Controller\InMailController',
13524 nelberth 4483
                                'action' => 'searchPeople'
13028 nelberth 4484
                            ]
13524 nelberth 4485
                        ]
4486
                    ],
13553 nelberth 4487
                    'view' => [
4488
                        'type' => Segment::class,
13524 nelberth 4489
                        'options' => [
13553 nelberth 4490
                            'route' => '/view[/:id]',
4491
                            'constraints' => [
4492
                                'id' => '[A-Za-z0-9\-]+\=*',
4493
                            ],
13524 nelberth 4494
                            'defaults' => [
13528 nelberth 4495
                                'controller' => '\LeadersLinked\Controller\InMailController',
13553 nelberth 4496
                                'action' => 'view'
13524 nelberth 4497
                            ]
13028 nelberth 4498
                        ],
4499
                        'may_terminate' => true,
4500
                        'child_routes' => [
13553 nelberth 4501
                            'message' => [
4502
                                'type' => Literal::class,
13028 nelberth 4503
                                'options' => [
13553 nelberth 4504
                                    'route' => '/message',
13028 nelberth 4505
                                    'defaults' => [
13528 nelberth 4506
                                        'controller' => '\LeadersLinked\Controller\InMailController',
13553 nelberth 4507
                                        'action' => 'message'
13028 nelberth 4508
                                    ]
13553 nelberth 4509
                                ],
4510
                                'may_terminate' => true,
4511
                                'child_routes' => [
4512
                                    'send' => [
4513
                                        'type' => Segment::class,
4514
                                        'options' => [
4515
                                            'route' => '/send[/encoding/:encoding]',
4516
                                            'constraints' => [
4517
                                                'encoding' => 'base64'
4518
                                            ],
4519
                                            'defaults' => [
4520
                                                'controller' => '\LeadersLinked\Controller\InMailController',
4521
                                                'action' => 'sendMessage'
4522
                                            ]
4523
                                        ]
4524
                                    ],
4525
                                ],
13013 nelberth 4526
                            ],
13553 nelberth 4527
                        ]
13013 nelberth 4528
                    ],
13778 nelberth 4529
                    'company' => [
4530
                        'type' => Segment::class,
4531
                        'options' => [
13798 nelberth 4532
                            'route' => '/company[/id/:id][/type/:type]',
13778 nelberth 4533
                            'constraints' => [
4534
                                'id' => '[A-Za-z0-9\-]+\=*',
13798 nelberth 4535
                                'type'=>'company',
13778 nelberth 4536
                            ],
4537
                            'defaults' => [
4538
                                'controller' => '\LeadersLinked\Controller\InMailController',
4539
                                'action' => 'view'
4540
                            ]
4541
                        ],
4542
                        'may_terminate' => true,
4543
                        'child_routes' => [
4544
                            'message' => [
4545
                                'type' => Literal::class,
4546
                                'options' => [
4547
                                    'route' => '/message',
4548
                                    'defaults' => [
4549
                                        'controller' => '\LeadersLinked\Controller\InMailController',
4550
                                        'action' => 'message'
4551
                                    ]
4552
                                ],
4553
                                'may_terminate' => true,
4554
                                'child_routes' => [
4555
                                    'send' => [
4556
                                        'type' => Segment::class,
4557
                                        'options' => [
4558
                                            'route' => '/send[/encoding/:encoding]',
4559
                                            'constraints' => [
4560
                                                'encoding' => 'base64'
4561
                                            ],
4562
                                            'defaults' => [
4563
                                                'controller' => '\LeadersLinked\Controller\InMailController',
4564
                                                'action' => 'sendMessage'
4565
                                            ]
4566
                                        ]
4567
                                    ],
4568
                                ],
4569
                            ],
4570
                        ]
4571
                    ],
13553 nelberth 4572
 
13524 nelberth 4573
                ],
4574
            ],
4575
 
4576
 
4577
            'communication' => [
4578
                'type' => Literal::class,
4579
                'options' => [
4580
                    'route' => '/communication',
4581
                    'defaults' => [
4582
                        'controller' => '\LeadersLinked\Controller\CommunicationController',
4583
                        'action' => 'index'
4584
                    ]
4585
                ],
4586
                'may_terminate' => true,
4587
                'child_routes' => [
13672 nelberth 4588
                    'inbox' => [
13652 nelberth 4589
                        'type' => Literal::class,
4590
                        'options' => [
13672 nelberth 4591
                            'route' => '/inbox',
13652 nelberth 4592
 
4593
                            'defaults' => [
13672 nelberth 4594
                                'controller' => '\LeadersLinked\Controller\CommunicationInboxController',
13652 nelberth 4595
                                'action' => 'index'
4596
                            ]
4597
                        ],
4598
                        'may_terminate' => true,
4599
                        'child_routes' => [
13732 nelberth 4600
                            'sendall' => [
4601
                                'type' => Literal::class,
4602
                                'options' => [
4603
                                    'route' => '/sendall',
4604
                                    'defaults' => [
4605
                                        'controller' => '\LeadersLinked\Controller\CommunicationInboxController',
4606
                                        'action' => 'sendAll'
4607
                                    ]
4608
                                ]
4609
                            ],
13652 nelberth 4610
                            'search-people' => [
4611
                                'type' => Literal::class,
4612
                                'options' => [
4613
                                    'route' => '/search-people',
4614
                                    'defaults' => [
13672 nelberth 4615
                                        'controller' => '\LeadersLinked\Controller\CommunicationInboxController',
13652 nelberth 4616
                                        'action' => 'searchPeople'
4617
                                    ]
4618
                                ]
4619
                            ],
4620
                            'view' => [
4621
                                'type' => Segment::class,
4622
                                'options' => [
4623
                                    'route' => '/view[/:id]',
4624
                                    'constraints' => [
4625
                                        'id' => '[A-Za-z0-9\-]+\=*',
4626
                                    ],
4627
                                    'defaults' => [
13672 nelberth 4628
                                        'controller' => '\LeadersLinked\Controller\CommunicationInboxController',
13652 nelberth 4629
                                        'action' => 'view'
4630
                                    ]
4631
                                ],
4632
                                'may_terminate' => true,
4633
                                'child_routes' => [
4634
                                    'message' => [
4635
                                        'type' => Literal::class,
4636
                                        'options' => [
4637
                                            'route' => '/message',
4638
                                            'defaults' => [
13672 nelberth 4639
                                                'controller' => '\LeadersLinked\Controller\CommunicationInboxController',
13652 nelberth 4640
                                                'action' => 'message'
4641
                                            ]
4642
                                        ],
4643
                                        'may_terminate' => true,
4644
                                        'child_routes' => [
4645
                                            'send' => [
4646
                                                'type' => Segment::class,
4647
                                                'options' => [
4648
                                                    'route' => '/send[/encoding/:encoding]',
4649
                                                    'constraints' => [
4650
                                                        'encoding' => 'base64'
4651
                                                    ],
4652
                                                    'defaults' => [
13672 nelberth 4653
                                                        'controller' => '\LeadersLinked\Controller\CommunicationInboxController',
13652 nelberth 4654
                                                        'action' => 'sendMessage'
4655
                                                    ]
4656
                                                ]
4657
                                            ],
4658
                                        ],
4659
                                    ],
4660
                                ]
4661
                            ],
4662
 
4663
                        ],
4664
                    ],
13028 nelberth 4665
 
1333 efrain 4666
                ]
4667
            ],
4668
 
4669
            'career-development' => [
4670
                'type' => Literal::class,
4671
                'options' => [
4672
                    'route' => '/career-development',
4673
                    'defaults' => [
4674
                        'controller' => '\LeadersLinked\Controller\UnknownController',
4675
                        'action' => 'index'
4676
                    ]
4677
                ],
4678
                'may_terminate' => true,
4679
                'child_routes' => [
4680
                ]
4681
            ],
4682
 
4386 eleazar 4683
            'survey' => [
1333 efrain 4684
                'type' => Literal::class,
4685
                'options' => [
4397 eleazar 4686
                    'route' => '/survey',
1333 efrain 4687
                    'defaults' => [
4375 eleazar 4688
                        'controller' => '\LeadersLinked\Controller\SurveyController',
1333 efrain 4689
                        'action' => 'index'
4690
                    ]
4691
                ],
4692
                'may_terminate' => true,
4693
                'child_routes' => [
4579 eleazar 4694
                    'add' => [
4695
                        'type' => Segment::class,
4696
                        'options' => [
4697
                            'route' => '/add',
4698
                            'defaults' => [
4699
                                'controller' => '\LeadersLinked\Controller\SurveyController',
4700
                                'action' => 'add'
4701
                            ],
4702
                        ],
4703
                    ],
4704
                    'edit' => [
4705
                        'type' => Segment::class,
4706
                        'options' => [
4707
                            'route' => '/edit/:id',
4708
                            'defaults' => [
4709
                                'controller' => '\LeadersLinked\Controller\SurveyController',
4710
                                'action' => 'edit'
4711
                            ],
4712
                        ],
4713
                    ],
4714
                    'delete' => [
4715
                        'type' => Segment::class,
4716
                        'options' => [
4717
                            'route' => '/delete/:id',
4718
                            'defaults' => [
4719
                                'controller' => '\LeadersLinked\Controller\SurveyController',
4720
                                'action' => 'delete'
4721
                            ],
4722
                        ],
4723
                    ],
4724
                    'segment' => [
4725
                        'type' => Segment::class,
4726
                        'options' => [
4727
                            'route' => '/segment/:id',
4728
                            'defaults' => [
4729
                                'controller' => '\LeadersLinked\Controller\SurveyController',
4730
                                'action' => 'segment'
4731
                            ],
4732
                        ],
4733
                    ],
4374 eleazar 4734
                    'form' => [
4735
                        'type' => Segment::class,
4736
                        'options' => [
4737
                            'route' => '/form',
4738
                            'defaults' => [
4375 eleazar 4739
                                'controller' => '\LeadersLinked\Controller\SurveyFormController',
4374 eleazar 4740
                                'action' => 'index',
4741
                            ],
4742
                        ],
4743
                        'may_terminate' => true,
4744
                        'child_routes' => [
4745
                            'add' => [
4746
                                'type' => Segment::class,
4747
                                'options' => [
4748
                                    'route' => '/add',
4749
                                    'defaults' => [
4375 eleazar 4750
                                        'controller' => '\LeadersLinked\Controller\SurveyFormController',
4374 eleazar 4751
                                        'action' => 'add'
4752
                                    ],
4753
                                ],
4754
                            ],
4755
                            'edit' => [
4756
                                'type' => Segment::class,
4757
                                'options' => [
4758
                                    'route' => '/edit/:id',
4759
                                    'constraints' => [
4760
                                        'id' => '[A-Za-z0-9\-]+\=*'
4761
                                    ],
4762
                                    'defaults' => [
4375 eleazar 4763
                                        'controller' => '\LeadersLinked\Controller\SurveyFormController',
4374 eleazar 4764
                                        'action' => 'edit'
4765
                                    ]
4766
                                ]
4767
                            ],
4768
                            'delete' => [
4769
                                'type' => Segment::class,
4770
                                'options' => [
4771
                                    'route' => '/delete/:id',
4772
                                    'constraints' => [
4773
                                        'id' => '[A-Za-z0-9\-]+\=*'
4774
                                    ],
4775
                                    'defaults' => [
4375 eleazar 4776
                                        'controller' => '\LeadersLinked\Controller\SurveyFormController',
4374 eleazar 4777
                                        'action' => 'delete'
4778
                                    ]
4779
                                ]
4780
                            ]
4781
                        ],
4782
                    ],
5287 eleazar 4783
                    'test' => [
4784
                        'type' => Segment::class,
4785
                        'options' => [
5884 eleazar 4786
                            'route' => '/test[/:survey_id]',
4787
                            'constraints' => [
4788
                                'survey_id' => '[A-Za-z0-9\-]+\=*'
4789
                            ],
5287 eleazar 4790
                            'defaults' => [
4791
                                'controller' => '\LeadersLinked\Controller\SurveyTestController',
4792
                                'action' => 'index',
5884 eleazar 4793
                                'survey_id' => '',
5287 eleazar 4794
                            ],
4795
                        ],
4796
                        'may_terminate' => true,
4797
                        'child_routes' => [
4798
                            'add' => [
4799
                                'type' => Segment::class,
4800
                                'options' => [
6036 eleazar 4801
                                    'route' => '/add',
5287 eleazar 4802
                                    'defaults' => [
4803
                                        'controller' => '\LeadersLinked\Controller\SurveyTestController',
5732 eleazar 4804
                                        'action' => 'add',
5287 eleazar 4805
                                    ],
4806
                                ],
4807
                            ],
6662 eleazar 4808
                            'report' => [
4809
                                'type' => Segment::class,
4810
                                'options' => [
6882 eleazar 4811
                                    'route' => '/report/:uuid',
6662 eleazar 4812
                                    'defaults' => [
4813
                                        'controller' => '\LeadersLinked\Controller\SurveyTestController',
4814
                                        'action' => 'report',
4815
                                    ],
4816
                                ],
4817
                            ],
5287 eleazar 4818
                            'delete' => [
4819
                                'type' => Segment::class,
4820
                                'options' => [
6882 eleazar 4821
                                    'route' => '/delete/:id',
5287 eleazar 4822
                                    'defaults' => [
4823
                                        'controller' => '\LeadersLinked\Controller\SurveyTestController',
4824
                                        'action' => 'delete'
4825
                                    ]
4826
                                ]
4827
                            ]
4828
                        ],
4829
                    ],
5823 eleazar 4830
                    'report' => [
4831
                        'type' => Segment::class,
4832
                        'options' => [
5911 eleazar 4833
                            'route' => '/report[/:survey_id]',
4834
                            'constraints' => [
4835
                                'survey_id' => '[A-Za-z0-9\-]+\=*'
4836
                            ],
5823 eleazar 4837
                            'defaults' => [
4838
                                'controller' => '\LeadersLinked\Controller\SurveyReportController',
4839
                                'action' => 'index',
5911 eleazar 4840
                                'survey_id' => '',
5823 eleazar 4841
                            ],
4842
                        ],
4843
                        'may_terminate' => true,
4844
                        'child_routes' => [
4845
                            'all' => [
4846
                                'type' => Segment::class,
4847
                                'options' => [
5868 eleazar 4848
                                    'route' => '/all',
5823 eleazar 4849
                                    'defaults' => [
4850
                                        'controller' => '\LeadersLinked\Controller\SurveyReportController',
5868 eleazar 4851
                                        'action' => 'all',
5823 eleazar 4852
                                    ]
4853
                                ]
4854
                            ],
6496 eleazar 4855
                            'overview' => [
4856
                                'type' => Segment::class,
4857
                                'options' => [
4858
                                    'route' => '/overview',
4859
                                    'defaults' => [
4860
                                        'controller' => '\LeadersLinked\Controller\SurveyReportController',
4861
                                        'action' => 'overview',
4862
                                    ]
4863
                                ]
4864
                            ],
15149 efrain 4865
                            'excel' => [
7024 eleazar 4866
                                'type' => Segment::class,
4867
                                'options' => [
15149 efrain 4868
                                    'route' => '/excel',
7024 eleazar 4869
                                    'defaults' => [
4870
                                        'controller' => '\LeadersLinked\Controller\SurveyReportController',
15149 efrain 4871
                                        'action' => 'excel',
7024 eleazar 4872
                                    ]
4873
                                ]
4874
                            ],
5823 eleazar 4875
                        ],
4876
                    ],
1333 efrain 4877
                ]
4878
            ],
4879
 
4880
            'building-my-future' => [
4881
                'type' => Literal::class,
4882
                'options' => [
4883
                    'route' => '/building-my-future',
4884
                    'defaults' => [
4885
                        'controller' => '\LeadersLinked\Controller\UnknownController',
4886
                        'action' => 'index'
4887
                    ]
4888
                ],
4889
                'may_terminate' => true,
4890
                'child_routes' => [
4891
                ]
4892
            ],
11431 nelberth 4893
 
4894
            'csrf' => [
4895
                'type' => Literal::class,
4896
                'options' => [
4897
                    'route' => '/csrf',
4898
                    'defaults' => [
14692 efrain 4899
                        'controller' => '\LeadersLinked\Controller\DashboardController',
11431 nelberth 4900
                        'action' => 'csrf'
4901
                    ]
4902
                ]
4903
            ],
11340 nelberth 4904
            'chat' => [
4905
                'type' => Literal::class,
4906
                'options' => [
4907
                    'route' => '/chat',
4908
                    'defaults' => [
4909
                        'controller' => '\LeadersLinked\Controller\ChatController',
4910
                        'action' => 'index'
4911
                    ]
4912
                ],
4913
                'may_terminate' => true,
4914
                'child_routes' => [
4915
                    // Inicio de los Routes del Chat //
7184 nelberth 4916
 
11340 nelberth 4917
                    'heart-beat' => [
4918
                        'type' => Literal::class,
4919
                        'options' => [
4920
                            'route' => '/heart-beat',
4921
                            'defaults' => [
4922
                                'controller' => '\LeadersLinked\Controller\ChatController',
4923
                                'action' => 'heartBeat',
4924
                            ],
4925
                        ],
4926
                    ],
4927
                    'create-group' => [
4928
                        'type' => Literal::class,
4929
                        'options' => [
4930
                            'route' => '/create-group',
4931
                            'defaults' => [
4932
                                'controller' => '\LeadersLinked\Controller\ChatController',
4933
                                'action' => 'createGroup',
4934
                            ],
4935
                        ],
4936
                    ],
4937
                    'add-user-to-group' => [
4938
                        'type' => Segment::class,
4939
                        'options' => [
4940
                            'route' => '/add-user-to-group/:group_id',
4941
                            'constraints' => [
4942
                                'group_id' => '[A-Za-z0-9\-]+\=*',
4943
                            ],
4944
                            'defaults' => [
4945
                                'controller' => '\LeadersLinked\Controller\ChatController',
4946
                                'action' => 'addUserToGroup',
4947
                            ],
4948
                        ],
4949
                    ],
4950
                    'mark-seen' => [
4951
                        'type' => Segment::class,
4952
                        'options' => [
4953
                            'route' => '/mark-seen/:id',
4954
                            'constraints' => [
4955
                                'id' => '[A-Za-z0-9\-]+\=*',
4956
                            ],
4957
                            'defaults' => [
4958
                                'controller' => '\LeadersLinked\Controller\ChatController',
4959
                                'action' => 'markSeen',
4960
                            ],
4961
                        ],
4962
                    ],
4963
                    'mark-received' => [
4964
                        'type' => Segment::class,
4965
                        'options' => [
4966
                            'route' => '/mark-received/:id',
4967
                            'constraints' => [
4968
                                'id' => '[A-Za-z0-9\-]+\=*',
4969
                            ],
4970
                            'defaults' => [
4971
                                'controller' => '\LeadersLinked\Controller\ChatController',
4972
                                'action' => 'markReceived',
4973
                            ],
4974
                        ],
4975
                    ],
4976
                    'remove-user-from-group' => [
4977
                        'type' => Segment::class,
4978
                        'options' => [
4979
                            'route' => '/remove-user-from-group/:group_id/:user_id',
4980
                            'constraints' => [
4981
                                'group_id' => '[A-Za-z0-9\-]+\=*',
4982
                                'user_id' => '[A-Za-z0-9\-]+\=*',
4983
                            ],
4984
                            'defaults' => [
4985
                                'controller' => '\LeadersLinked\Controller\ChatController',
4986
                                'action' => 'removeUserFromGroup',
4987
                            ],
4988
                        ],
4989
                    ],
4990
                    'get-all-messages' => [
4991
                        'type' => Segment::class,
4992
                        'options' => [
4993
                            'route' => '/get-all-messages/:id',
4994
                            'constraints' => [
4995
                                'id' => '[A-Za-z0-9\-]+\=*',
4996
                            ],
4997
                            'defaults' => [
4998
                                'controller' => '\LeadersLinked\Controller\ChatController',
4999
                                'action' => 'getAllMessages',
5000
                            ],
5001
                        ],
5002
                    ],
5003
                    'send' => [
5004
                        'type' => Segment::class,
5005
                        'options' => [
5006
                            'route' => '/send/:id',
5007
                            'constraints' => [
5008
                                'id' => '[A-Za-z0-9\-]+\=*',
5009
                            ],
5010
                            'defaults' => [
5011
                                'controller' => '\LeadersLinked\Controller\ChatController',
5012
                                'action' => 'send',
5013
                            ],
5014
                        ],
5015
                    ],
5016
                    'get-contacts-availables-for-group' => [
5017
                        'type' => Segment::class,
5018
                        'options' => [
5019
                            'route' => '/get-contacts-availables-for-group/:group_id',
5020
                            'constraints' => [
5021
                                'group_id' => '[A-Za-z0-9\-]+\=*',
5022
                            ],
5023
                            'defaults' => [
5024
                                'controller' => '\LeadersLinked\Controller\ChatController',
5025
                                'action' => 'contactAvailableGroupList',
5026
                            ],
5027
                        ],
5028
                    ],
5029
                    'get-contact-group-list' => [
5030
                        'type' => Segment::class,
5031
                        'options' => [
5032
                            'route' => '/get-contact-group-list/:group_id',
5033
                            'constraints' => [
5034
                                'group_id' => '[A-Za-z0-9\-]+\=*',
5035
                            ],
5036
                            'defaults' => [
5037
                                'controller' => '\LeadersLinked\Controller\ChatController',
5038
                                'action' => 'contactGroupList',
5039
                            ],
5040
                        ],
5041
                    ],
5042
                    'leave-group' => [
5043
                        'type' => Segment::class,
5044
                        'options' => [
5045
                            'route' => '/leave-group/:group_id',
5046
                            'constraints' => [
5047
                                'group_id' => '[A-Za-z0-9\-]+\=*',
5048
                            ],
5049
                            'defaults' => [
5050
                                'controller' => '\LeadersLinked\Controller\ChatController',
5051
                                'action' => 'leaveGroup',
5052
                            ],
5053
                        ],
5054
                    ],
5055
                    'delete-group' => [
5056
                        'type' => Segment::class,
5057
                        'options' => [
5058
                            'route' => '/delete-group/:group_id',
5059
                            'constraints' => [
5060
                                'group_id' => '[A-Za-z0-9\-]+\=*',
5061
                            ],
5062
                            'defaults' => [
5063
                                'controller' => '\LeadersLinked\Controller\ChatController',
5064
                                'action' => 'deleteGroup',
5065
                            ],
5066
                        ],
5067
                    ],
14692 efrain 5068
                    'open' => [
5069
                        'type' => Segment::class,
5070
                        'options' => [
5071
                            'route' => '/open/:id',
5072
                            'constraints' => [
5073
                                'id' => '[A-Za-z0-9\-]+\=*',
5074
                            ],
5075
                            'defaults' => [
5076
                                'controller' => '\LeadersLinked\Controller\ChatController',
5077
                                'action' => 'open',
5078
                            ],
5079
                        ],
5080
                    ],
11340 nelberth 5081
                    'close' => [
5082
                        'type' => Segment::class,
5083
                        'options' => [
5084
                            'route' => '/close/:id',
5085
                            'constraints' => [
5086
                                'id' => '[A-Za-z0-9\-]+\=*',
5087
                            ],
5088
                            'defaults' => [
5089
                                'controller' => '\LeadersLinked\Controller\ChatController',
5090
                                'action' => 'close',
5091
                            ],
5092
                        ],
5093
                    ],
5094
                    'clear' => [
5095
                        'type' => Segment::class,
5096
                        'options' => [
5097
                            'route' => '/clear/:id',
5098
                            'constraints' => [
5099
                                'id' => '[A-Za-z0-9\-]+\=*',
5100
                            ],
5101
                            'defaults' => [
5102
                                'controller' => '\LeadersLinked\Controller\ChatController',
5103
                                'action' => 'clear',
5104
                            ],
5105
                        ],
5106
                    ],
5107
                    'upload' => [
5108
                        'type' => Segment::class,
5109
                        'options' => [
5110
                            'route' => '/upload/:id',
5111
                            'constraints' => [
5112
                                'id' => '[A-Za-z0-9\-]+\=*',
5113
                            ],
5114
                            'defaults' => [
5115
                                'controller' => '\LeadersLinked\Controller\ChatController',
5116
                                'action' => 'upload',
5117
                            ],
5118
                        ],
5119
                    ],
5120
                ],
5121
            ],
7224 nelberth 5122
 
1333 efrain 5123
            'high-performance-teams' => [
5124
                'type' => Literal::class,
5125
                'options' => [
4591 nelberth 5126
                    'route' => '/high-performance-teams',
4588 nelberth 5127
                    'defaults' => [
4376 nelberth 5128
                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsController',
1333 efrain 5129
                        'action' => 'index'
5130
                    ]
5131
                ],
5132
                'may_terminate' => true,
5133
                'child_routes' => [
7240 nelberth 5134
                    'groups' => [
4388 nelberth 5135
                        'type' => Literal::class,
5136
                        'options' => [
7224 nelberth 5137
                            'route' => '/groups',
4388 nelberth 5138
                            'defaults' => [
7224 nelberth 5139
                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsController',
4388 nelberth 5140
                                'action' => 'index'
5141
                            ]
4411 nelberth 5142
                        ],'may_terminate' => true,
5143
                        'child_routes' => [
5144
 
5145
                            'add' => [
5146
                                'type' => Literal::class,
5147
                                'options' => [
5148
                                    'route' => '/add',
5149
                                    'defaults' => [
7224 nelberth 5150
                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsController',
4411 nelberth 5151
                                        'action' => 'add'
5152
                                    ]
5153
                                ]
5154
                            ],
5155
                            'edit' => [
5156
                                'type' => Segment::class,
5157
                                'options' => [
11082 nelberth 5158
                                    'route' => '/edit/:group_id',
4411 nelberth 5159
                                    'constraints' => [
11082 nelberth 5160
                                        'group_id' => '[A-Za-z0-9\-]+\=*'
4411 nelberth 5161
                                    ],
5162
                                    'defaults' => [
7224 nelberth 5163
                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsController',
4411 nelberth 5164
                                        'action' => 'edit'
5165
                                    ]
5166
                                ]
5167
                            ],
5168
                            'delete' => [
5169
                                'type' => Segment::class,
5170
                                'options' => [
11082 nelberth 5171
                                    'route' => '/delete/:group_id',
4411 nelberth 5172
                                    'constraints' => [
11082 nelberth 5173
                                        'group_id' => '[A-Za-z0-9\-]+\=*'
4411 nelberth 5174
                                    ],
5175
                                    'defaults' => [
7224 nelberth 5176
                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsController',
4411 nelberth 5177
                                        'action' => 'delete'
5178
                                    ]
5179
                                ]
7261 nelberth 5180
                            ],'view' => [
4509 nelberth 5181
                                'type' => Segment::class,
5182
                                'options' => [
11082 nelberth 5183
                                    'route' => '/view/:group_id',
4509 nelberth 5184
                                    'constraints' => [
11082 nelberth 5185
                                        'group_id' => '[A-Za-z0-9\-]+\=*',
4509 nelberth 5186
                                    ],
5187
                                    'defaults' => [
7308 nelberth 5188
                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewController',
4571 nelberth 5189
                                        'action' => 'index'
4509 nelberth 5190
                                    ]
7483 nelberth 5191
                                ],
5192
                                    'may_terminate' => true,
5193
                                    'child_routes' => [
12408 nelberth 5194
                                        'objectives' => [
11902 nelberth 5195
                                            'type' => Literal::class,
5196
                                            'options' => [
12408 nelberth 5197
                                                'route' => '/objectives',
5198
                                                'defaults' => [
12433 nelberth 5199
                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController',
12408 nelberth 5200
                                                    'action' => 'index'
5201
                                                ]
5202
                                            ],
5203
 
5204
                                            'may_terminate' => true,
5205
                                            'child_routes' => [
5206
 
5207
                                                'add' => [
5208
                                                    'type' => Literal::class,
5209
                                                    'options' => [
5210
                                                        'route' => '/add',
5211
                                                        'defaults' => [
12675 nelberth 5212
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController',
12408 nelberth 5213
                                                            'action' => 'add'
5214
                                                        ]
5215
                                                    ]
5216
                                                ],
5217
                                                'edit' => [
5218
                                                    'type' => Segment::class,
5219
                                                    'options' => [
5220
                                                        'route' => '/edit/:id',
5221
                                                        'constraints' => [
5222
                                                            'id' => '[A-Za-z0-9\-]+\=*'
5223
                                                        ],
5224
                                                        'defaults' => [
12675 nelberth 5225
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController',
12408 nelberth 5226
                                                            'action' => 'edit'
5227
                                                        ]
5228
                                                    ]
5229
                                                ],
5230
                                                'delete' => [
5231
                                                    'type' => Segment::class,
5232
                                                    'options' => [
5233
                                                        'route' => '/delete/:id',
5234
                                                        'constraints' => [
5235
                                                            'id' => '[A-Za-z0-9\-]+\=*'
5236
                                                        ],
5237
                                                        'defaults' => [
12675 nelberth 5238
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController',
12408 nelberth 5239
                                                            'action' => 'delete'
5240
                                                        ]
5241
                                                    ]
5242
                                                ],
5243
                                                'report' => [
5244
                                                    'type' => Segment::class,
5245
                                                    'options' => [
5246
                                                        'route' => '/report/:id',
5247
                                                        'constraints' => [
5248
                                                            'id' => '[A-Za-z0-9\-]+\=*'
5249
                                                        ],
5250
                                                        'defaults' => [
12675 nelberth 5251
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController',
12408 nelberth 5252
                                                            'action' => 'report'
5253
                                                        ]
5254
                                                    ]
5255
                                                ],
5256
                                                'reportall' => [
5257
                                                    'type' => Literal::class,
5258
                                                    'options' => [
5259
                                                        'route' => '/reportall',
5260
                                                        'defaults' => [
12675 nelberth 5261
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController',
12408 nelberth 5262
                                                            'action' => 'reportall'
5263
                                                        ]
5264
                                                    ]
5265
                                                ],
5266
 
5267
                                                'matriz' => [
5268
                                                    'type' => Literal::class,
5269
                                                    'options' => [
5270
                                                        'route' => '/matriz',
5271
                                                        'defaults' => [
12675 nelberth 5272
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController',
12408 nelberth 5273
                                                            'action' => 'matriz'
5274
                                                        ]
5275
                                                    ]
5276
                                                ],
5277
                                                'goals' => [
5278
                                                    'type' => Segment::class,
5279
                                                    'options' => [
5280
                                                        'route' => '/:objective_id/goals',
5281
                                                        'constraints' => [
5282
                                                            'objective_id' => '[A-Za-z0-9\-]+\=*'
5283
                                                        ],
5284
                                                        'defaults' => [
12736 nelberth 5285
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewGoalsController',
12408 nelberth 5286
                                                            'action' => 'index'
5287
                                                        ]
5288
                                                    ],
5289
 
5290
                                                    'may_terminate' => true,
5291
                                                    'child_routes' => [
5292
                                                        'add' => [
5293
                                                            'type' => Literal::class,
5294
                                                            'options' => [
5295
                                                                'route' => '/add',
5296
                                                                'defaults' => [
12736 nelberth 5297
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewGoalsController',
12408 nelberth 5298
                                                                    'action' => 'add'
5299
                                                                ]
5300
                                                            ]
5301
                                                        ],
5302
                                                        'edit' => [
5303
                                                            'type' => Segment::class,
5304
                                                            'options' => [
5305
                                                                'route' => '/edit/:id',
5306
                                                                'constraints' => [
5307
                                                                    'id' => '[A-Za-z0-9\-]+\=*'
5308
                                                                ],
5309
                                                                'defaults' => [
12736 nelberth 5310
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewGoalsController',
12408 nelberth 5311
                                                                    'action' => 'edit'
5312
                                                                ]
5313
                                                            ]
5314
                                                        ],
5315
                                                        'delete' => [
5316
                                                            'type' => Segment::class,
5317
                                                            'options' => [
5318
                                                                'route' => '/delete/:id',
5319
                                                                'constraints' => [
5320
                                                                    'id' => '[A-Za-z0-9\-]+\=*'
5321
                                                                ],
5322
                                                                'defaults' => [
12736 nelberth 5323
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewGoalsController',
12408 nelberth 5324
                                                                    'action' => 'delete'
5325
                                                                ]
5326
                                                            ]
5327
                                                        ],
5328
                                                        'task' => [
5329
                                                            'type' => Segment::class,
5330
                                                            'options' => [
5331
                                                                'route' => '/:goal_id/task',
5332
                                                                'constraints' => [
5333
                                                                    'goal_id' => '[A-Za-z0-9\-]+\=*'
5334
                                                                ],
5335
                                                                'defaults' => [
12829 nelberth 5336
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController',
12408 nelberth 5337
                                                                    'action' => 'index'
5338
                                                                ]
5339
                                                            ],
5340
 
5341
                                                            'may_terminate' => true,
5342
                                                            'child_routes' => [
5343
                                                                'add' => [
5344
                                                                    'type' => Literal::class,
5345
                                                                    'options' => [
5346
                                                                        'route' => '/add',
5347
                                                                        'defaults' => [
12829 nelberth 5348
                                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController',
12408 nelberth 5349
                                                                            'action' => 'add'
5350
                                                                        ]
5351
                                                                    ]
5352
                                                                ],
5353
                                                                'edit' => [
5354
                                                                    'type' => Segment::class,
5355
                                                                    'options' => [
5356
                                                                        'route' => '/edit/:id',
5357
                                                                        'constraints' => [
5358
                                                                            'id' => '[A-Za-z0-9\-]+\=*'
5359
                                                                        ],
5360
                                                                        'defaults' => [
12829 nelberth 5361
                                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController',
12408 nelberth 5362
                                                                            'action' => 'edit'
5363
                                                                        ]
5364
                                                                    ]
5365
                                                                ],
5366
                                                                'delete' => [
5367
                                                                    'type' => Segment::class,
5368
                                                                    'options' => [
5369
                                                                        'route' => '/delete/:id',
5370
                                                                        'constraints' => [
5371
                                                                            'id' => '[A-Za-z0-9\-]+\=*'
5372
                                                                        ],
5373
                                                                        'defaults' => [
12829 nelberth 5374
                                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController',
12408 nelberth 5375
                                                                            'action' => 'delete'
5376
                                                                        ]
5377
                                                                    ]
5378
                                                                ],
5379
                                                                'view' => [
5380
                                                                    'type' => Segment::class,
5381
                                                                    'options' => [
5382
                                                                        'route' => '/view/:id',
5383
                                                                        'constraints' => [
5384
                                                                            'id' => '[A-Za-z0-9\-]+\=*'
5385
                                                                        ],
5386
                                                                        'defaults' => [
12829 nelberth 5387
                                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController',
12408 nelberth 5388
                                                                            'action' => 'view'
5389
                                                                        ]
5390
                                                                    ]
5391
                                                                ],
5392
                                                        ]
5393
                                                    ],
5394
                                                ]
5395
                                            ],
5396
                                            ]
5397
                                        ]
5398
                                        ,'feeds' => [
5399
                                            'type' => Literal::class,
5400
                                            'options' => [
11902 nelberth 5401
                                                'route' => '/feeds',
11908 nelberth 5402
 
11902 nelberth 5403
                                            ],
5404
                                            'may_terminate' => true,
5405
                                            'child_routes' => [
5406
                                                'timeline' => [
5407
                                                    'type' => Segment::class,
5408
                                                    'options' => [
11914 nelberth 5409
                                                        'route' => '/timeline[/urgent/:urgent][/topic_id/:topic_id]',
11902 nelberth 5410
                                                        'constraints' => [
5411
                                                            'hptg_id'=>'[A-Za-z0-9\-]+\=*',
5412
                                                            'topic_id' => '[A-Za-z0-9\-]+\=*',
5413
                                                            'urgent' => 'u',
5414
                                                        ],
5415
                                                        'defaults' => [
5416
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController',
5417
                                                            'action' => 'timeline'
5418
                                                        ]
5419
                                                    ]
5420
                                                ],
5421
                                                'onefeed' => [
5422
                                                    'type' => Segment::class,
5423
                                                    'options' => [
11997 nelberth 5424
                                                        'route' => '/onefeed[/:feed_id][/:topic_id]',
11902 nelberth 5425
                                                        'constraints' => [
5426
                                                            'group_id' => '[A-Za-z0-9\-]+\=*',
5427
                                                            'feed_id' => '[A-Za-z0-9\-]+\=*',
5428
                                                            'topic_id' => '[A-Za-z0-9\-]+\=*',
5429
                                                        ],
5430
                                                        'defaults' => [
5431
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController',
5432
                                                            'action' => 'oneFeed'
5433
                                                        ]
5434
                                                    ]
5435
                                                ],
5436
                                                'delete' => [
5437
                                                    'type' => Segment::class,
5438
                                                    'options' => [
5439
                                                        'route' => '/delete/:id',
5440
                                                        'constraints' => [
5441
                                                            'id' => '[A-Za-z0-9\-]+\=*',
5442
                                                        ],
5443
                                                        'defaults' => [
5444
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController',
5445
                                                            'action' => 'delete'
5446
                                                        ],
5447
                                                    ]
5448
                                                ],
5449
                                                'comments' => [
5450
                                                    'type' => Segment::class,
5451
                                                    'options' => [
5452
                                                        'route' => '/comments/:id',
5453
                                                        'constraints' => [
5454
                                                            'id' => '[A-Za-z0-9\-]+\=*',
5455
                                                        ],
5456
                                                        'defaults' => [
5457
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController',
5458
                                                            'action' => 'comment'
5459
                                                        ],
5460
                                                    ],
5461
                                                    'may_terminate' => true,
5462
                                                    'child_routes' => [
5463
                                                        'delete' => [
5464
                                                            'type' => Segment::class,
5465
                                                            'options' => [
5466
                                                                'route' => '/delete/:comment',
5467
                                                                'constraints' => [
5468
                                                                    'comment' => '[A-Za-z0-9\-]+\=*',
5469
                                                                ],
5470
                                                                'defaults' => [
5471
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController',
5472
                                                                    'action' => 'commentDelete'
5473
                                                                ]
5474
                                                            ]
5475
                                                        ],
5476
 
5477
                                                        'answer' => [
5478
                                                            'type' => Segment::class,
5479
                                                            'options' => [
5480
                                                                'route' => '/answer/:comment',
5481
                                                                'constraints' => [
5482
                                                                    'comment' => '[A-Za-z0-9\-]+\=*',
5483
                                                                ],
5484
                                                                'defaults' => [
5485
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController',
5486
                                                                    'action' => 'answer'
5487
                                                                ]
5488
                                                            ]
5489
                                                        ],
5490
                                                    ]
5491
                                                ],
5492
                                                'add' => [
5493
                                                    'type' => Segment::class,
5494
                                                    'options' => [
13857 nelberth 5495
                                                        'route' => '/add[/group/:group_id][/encoding/:encoding][/topic_id/:topic_id]',
11902 nelberth 5496
                                                        'constraints' => [
5497
                                                            'group_id' => '[A-Za-z0-9\-]+\=*',
5498
                                                            'topic_id' => '[A-Za-z0-9\-]+\=*',
5499
                                                            'encoding' => 'base64'
5500
                                                        ],
5501
                                                        'defaults' => [
5502
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController',
5503
                                                            'action' => 'add'
5504
                                                        ]
5505
                                                    ]
5506
                                                ],
5507
                                            ],
5508
                                        ],
7811 nelberth 5509
                                        'members' => [
7823 nelberth 5510
                                            'type' => Literal::class,
7811 nelberth 5511
                                            'options' => [
5512
                                                'route' => '/members',
5513
                                                'defaults' => [
5514
                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController',
5515
                                                    'action' => 'index'
5516
                                                ]
8012 nelberth 5517
                                            ],'may_terminate' => true,
5518
                                            'child_routes' => [
5519
                                                'invite' => [
5520
                                                    'type' => Segment::class,
5521
                                                    'options' => [
11083 nelberth 5522
                                                        'route' => '/invite/:user_id',
8054 nelberth 5523
                                                        'constraints' => [
11083 nelberth 5524
                                                            'user_id' => '[A-Za-z0-9\-]+\=*'
8054 nelberth 5525
                                                        ],
8012 nelberth 5526
                                                        'defaults' => [
5527
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController',
5528
                                                            'action' => 'invite'
5529
                                                        ]
5530
                                                    ]
5531
                                                ],
5532
                                                'edit' => [
5533
                                                    'type' => Segment::class,
5534
                                                    'options' => [
11083 nelberth 5535
                                                        'route' => '/edit/:user_id',
8012 nelberth 5536
                                                        'constraints' => [
11083 nelberth 5537
                                                            'user_id' => '[A-Za-z0-9\-]+\=*'
8012 nelberth 5538
                                                        ],
5539
                                                        'defaults' => [
5540
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController',
5541
                                                            'action' => 'edit'
5542
                                                        ]
5543
                                                    ]
5544
                                                ],
8054 nelberth 5545
                                                'delete' => [
8012 nelberth 5546
                                                    'type' => Segment::class,
5547
                                                    'options' => [
11083 nelberth 5548
                                                        'route' => '/delete[/:user_id]',
8012 nelberth 5549
                                                        'constraints' => [
11083 nelberth 5550
                                                            'user_id' => '[A-Za-z0-9\-]+\=*'
8012 nelberth 5551
                                                        ],
5552
                                                        'defaults' => [
5553
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController',
8054 nelberth 5554
                                                            'action' => 'delete'
8012 nelberth 5555
                                                        ]
5556
                                                    ]
5557
                                                ],
5558
                                            ]
7811 nelberth 5559
                                        ],
8686 nelberth 5560
                                        'urgent' => [
8702 nelberth 5561
                                            'type' => Segment::class,
5562
                                            'options' => [
5563
                                                'route' => '/urgent[/:urgent]',
5564
                                                'constraints' => [
5565
                                                    'urgent' => 'u'
8686 nelberth 5566
                                                ],
8702 nelberth 5567
                                                'defaults' => [
5568
                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewController',
5569
                                                    'action' => 'index'
5570
                                                ]
5571
                                            ]
5572
                                        ],
9095 nelberth 5573
                                        'calendar' => [
9924 nelberth 5574
                                            'type' => Literal::class,
9095 nelberth 5575
                                            'options' => [
9924 nelberth 5576
                                                'route' => '/calendar',
5577
 
9095 nelberth 5578
                                                'defaults' => [
5579
                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewCalendarController',
5580
                                                    'action' => 'index'
5581
                                                ]
9923 nelberth 5582
                                            ],'may_terminate' => true,
5583
                                            'child_routes' => [
5584
                                                'view' => [
9924 nelberth 5585
                                                    'type' => Segment::class,
9923 nelberth 5586
                                                    'options' => [
11083 nelberth 5587
                                                        'route' => '/view[/:feed_id]',
9924 nelberth 5588
                                                        'constraints' => [
11083 nelberth 5589
                                                            'feed_id' => '[A-Za-z0-9\-]+\=*'
9924 nelberth 5590
                                                        ],
9923 nelberth 5591
                                                        'defaults' => [
5592
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewCalendarController',
5593
                                                            'action' => 'view'
5594
                                                        ]
5595
                                                    ]
5596
                                                ],
9095 nelberth 5597
                                            ]
5598
                                        ],
9631 nelberth 5599
                                        'foro' => [
9621 nelberth 5600
                                            'type' => Literal::class,
9424 nelberth 5601
                                            'options' => [
9631 nelberth 5602
                                                'route' => '/foro',
10143 nelberth 5603
                                                'defaults' => [
5604
                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoController',
5605
                                                    'action' => 'index'
5606
                                                ]
9644 nelberth 5607
                                            ],
5608
                                            'may_terminate' => true,
9631 nelberth 5609
                                            'child_routes' => [
10150 nelberth 5610
                                                'view' => [
5611
                                                    'type' => Literal::class,
5612
                                                    'options' => [
5613
                                                        'route' => '/view',
5614
                                                        'defaults' => [
5615
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoController',
5616
                                                            'action' => 'view'
5617
                                                        ]
5618
                                                    ]
5619
                                                ],
9631 nelberth 5620
                                                'categories' => [
5621
                                                    'type' => Literal::class,
5622
                                                    'options' => [
5623
                                                        'route' => '/categories',
5624
                                                        'defaults' => [
5625
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController',
5626
                                                            'action' => 'index'
5627
                                                        ]
9638 nelberth 5628
                                                    ],
9644 nelberth 5629
                                                    'may_terminate' => true,
9640 nelberth 5630
                                                    'child_routes' => [
9720 nelberth 5631
                                                        'view' => [
5632
                                                            'type' => Literal::class,
5633
                                                            'options' => [
5634
                                                                'route' => '/view',
5635
                                                                'defaults' => [
5636
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController',
5637
                                                                    'action' => 'view'
5638
                                                                ]
5639
                                                            ]
5640
                                                        ],
9644 nelberth 5641
                                                        'add' => [
5642
                                                            'type' => Literal::class,
5643
                                                            'options' => [
5644
                                                                'route' => '/add',
5645
                                                                'defaults' => [
5646
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController',
5647
                                                                    'action' => 'add'
5648
                                                                ]
5649
                                                            ]
5650
                                                        ],
9643 nelberth 5651
                                                        'edit' => [
5652
                                                            'type' => Segment::class,
9640 nelberth 5653
                                                            'options' => [
11083 nelberth 5654
                                                                'route' => '/edit/:category_id',
9643 nelberth 5655
                                                                'constraints' => [
11083 nelberth 5656
                                                                    'category_id' => '[A-Za-z0-9\-]+\=*'
9643 nelberth 5657
                                                                ],
9640 nelberth 5658
                                                                'defaults' => [
5659
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController',
9643 nelberth 5660
                                                                    'action' => 'edit'
9640 nelberth 5661
                                                                ]
5662
                                                            ]
5663
                                                        ],
9643 nelberth 5664
                                                        'delete' => [
5665
                                                            'type' => Segment::class,
5666
                                                            'options' => [
11083 nelberth 5667
                                                                'route' => '/delete/:category_id',
9643 nelberth 5668
                                                                'constraints' => [
11083 nelberth 5669
                                                                    'category_id' => '[A-Za-z0-9\-]+\=*'
9643 nelberth 5670
                                                                ],
5671
                                                                'defaults' => [
5672
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController',
5673
                                                                    'action' => 'delete'
5674
                                                                ]
5675
                                                            ]
5676
                                                        ],
9760 nelberth 5677
                                                        'articles' => [
5678
                                                            'type' => Segment::class,
5679
                                                            'options' => [
11083 nelberth 5680
                                                                'route' => '/:category_id/articles',
9760 nelberth 5681
                                                                'constraints' => [
11083 nelberth 5682
                                                                    'category_id' => '[A-Za-z0-9\-]+\=*'
9760 nelberth 5683
                                                                ],
5684
                                                                'defaults' => [
5685
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesController',
5686
                                                                    'action' => 'index'
5687
                                                                ]
9845 nelberth 5688
                                                            ],
5689
                                                            'may_terminate' => true,
5690
                                                            'child_routes' => [
5691
                                                                'add' => [
5692
                                                                    'type' => Literal::class,
5693
                                                                    'options' => [
5694
                                                                        'route' => '/add',
5695
                                                                        'defaults' => [
5696
                                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesController',
5697
                                                                            'action' => 'add'
5698
                                                                        ]
5699
                                                                    ]
5700
                                                                ],
5701
                                                                'edit' => [
5702
                                                                    'type' => Segment::class,
5703
                                                                    'options' => [
11083 nelberth 5704
                                                                        'route' => '/edit/:article_id',
9845 nelberth 5705
                                                                        'constraints' => [
11083 nelberth 5706
                                                                            'articles_id' => '[A-Za-z0-9\-]+\=*'
9845 nelberth 5707
                                                                        ],
5708
                                                                        'defaults' => [
5709
                                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesController',
5710
                                                                            'action' => 'edit'
5711
                                                                        ]
5712
                                                                    ]
5713
                                                                ],
5714
 
5715
                                                                'delete' => [
5716
                                                                    'type' => Segment::class,
5717
                                                                    'options' => [
11083 nelberth 5718
                                                                        'route' => '/delete/:article_id',
9845 nelberth 5719
                                                                        'constraints' => [
11083 nelberth 5720
                                                                            'articles_id' => '[A-Za-z0-9\-]+\=*'
9845 nelberth 5721
                                                                        ],
5722
                                                                        'defaults' => [
5723
                                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesController',
5724
                                                                            'action' => 'delete'
5725
                                                                        ]
5726
                                                                    ]
5727
                                                                ],
5728
                                                                'view' => [
5729
                                                                    'type' => Segment::class,
5730
                                                                    'options' => [
11083 nelberth 5731
                                                                        'route' => '/view/:article_id',
9845 nelberth 5732
                                                                        'constraints' => [
11083 nelberth 5733
                                                                            'articles_id' => '[A-Za-z0-9\-]+\=*'
9845 nelberth 5734
                                                                        ],
5735
                                                                        'defaults' => [
9921 nelberth 5736
                                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesViewController',
5737
                                                                            'action' => 'index'
9845 nelberth 5738
                                                                        ]
5739
                                                                    ]
5740
                                                                ],
9760 nelberth 5741
                                                            ]
5742
                                                        ],
9640 nelberth 5743
                                                    ],
9424 nelberth 5744
                                                ],
5745
                                            ]
5746
                                        ],
7483 nelberth 5747
                                        'topic' => [
8649 nelberth 5748
                                            'type' => Literal::class,
7483 nelberth 5749
                                            'options' => [
8649 nelberth 5750
                                                'route' => '/topic',
7483 nelberth 5751
                                                'defaults' => [
7491 nelberth 5752
                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController',
7483 nelberth 5753
                                                    'action' => 'index'
5754
                                                ]
5755
                                            ],'may_terminate' => true,
5756
                                            'child_routes' => [
5757
                                                'add' => [
5758
                                                    'type' => Literal::class,
5759
                                                    'options' => [
5760
                                                        'route' => '/add',
5761
                                                        'defaults' => [
7506 nelberth 5762
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController',
7483 nelberth 5763
                                                            'action' => 'add'
5764
                                                        ]
5765
                                                    ]
5766
                                                ],
5767
                                                'edit' => [
5768
                                                    'type' => Segment::class,
5769
                                                    'options' => [
11083 nelberth 5770
                                                        'route' => '/edit/:topic_id',
7483 nelberth 5771
                                                        'constraints' => [
11083 nelberth 5772
                                                            'topic_id' => '[A-Za-z0-9\-]+\=*'
7483 nelberth 5773
                                                        ],
5774
                                                        'defaults' => [
7491 nelberth 5775
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController',
7483 nelberth 5776
                                                            'action' => 'edit'
5777
                                                        ]
5778
                                                    ]
5779
                                                ],
7636 nelberth 5780
                                                'view' => [
7629 nelberth 5781
                                                    'type' => Segment::class,
5782
                                                    'options' => [
11083 nelberth 5783
                                                        'route' => '/view[/:topic_id]',
7629 nelberth 5784
                                                        'constraints' => [
11083 nelberth 5785
                                                            'topic_id' => '[A-Za-z0-9\-]+\=*'
7629 nelberth 5786
                                                        ],
5787
                                                        'defaults' => [
7635 nelberth 5788
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewController',
7629 nelberth 5789
                                                            'action' => 'index'
5790
                                                        ]
5791
                                                    ]
5792
                                                ],
8686 nelberth 5793
 
7483 nelberth 5794
                                                'delete' => [
5795
                                                    'type' => Segment::class,
5796
                                                    'options' => [
11083 nelberth 5797
                                                        'route' => '/delete/:topic_id',
7483 nelberth 5798
                                                        'constraints' => [
11083 nelberth 5799
                                                            'topic_id' => '[A-Za-z0-9\-]+\=*'
7483 nelberth 5800
                                                        ],
5801
                                                        'defaults' => [
7491 nelberth 5802
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController',
7483 nelberth 5803
                                                            'action' => 'delete'
5804
                                                        ]
5805
                                                    ]
5806
                                                ]
5807
                                            ],
5808
                                        ],
5809
 
5810
                                    ],
5811
 
4411 nelberth 5812
                            ],
5813
                        ]
4388 nelberth 5814
                    ],
1333 efrain 5815
                ]
5816
            ],
7224 nelberth 5817
 
4588 nelberth 5818
 
1333 efrain 5819
            'my-trainer' => [
5820
                'type' => Literal::class,
5821
                'options' => [
5822
                    'route' => '/my-trainer',
5823
                    'defaults' => [
5824
                        'controller' => '\LeadersLinked\Controller\UnknownController',
5825
                        'action' => 'index'
5826
                    ]
5827
                ],
5828
                'may_terminate' => true,
5829
                'child_routes' => [
8462 eleazar 5830
                    'category' => [
5831
                        'type' => Literal::class,
5832
                        'options' => [
5833
                            'route' => '/category',
5834
                            'defaults' => [
8529 eleazar 5835
                                'controller' => '\LeadersLinked\Controller\MyTrainerCategoriesController',
8462 eleazar 5836
                                'action' => 'index'
5837
                            ]
5838
                        ],
5839
                        'may_terminate' => true,
5840
                        'child_routes' => [
5841
                            'add' => [
5842
                                'type' => Literal::class,
5843
                                'options' => [
5844
                                    'route' => '/add',
5845
                                    'defaults' => [
8529 eleazar 5846
                                        'controller' => '\LeadersLinked\Controller\MyTrainerCategoriesController',
8462 eleazar 5847
                                        'action' => 'add'
5848
                                    ]
5849
                                ]
5850
                            ],
5851
                            'edit' => [
5852
                                'type' => Segment::class,
5853
                                'options' => [
5854
                                    'route' => '/edit/:id',
5855
                                    'constraints' => [
5856
                                        'id' => '[A-Za-z0-9\-]+\=*'
5857
                                    ],
5858
                                    'defaults' => [
8529 eleazar 5859
                                        'controller' => '\LeadersLinked\Controller\MyTrainerCategoriesController',
8462 eleazar 5860
                                        'action' => 'edit'
5861
                                    ]
5862
                                ]
5863
                            ],
5864
                            'delete' => [
5865
                                'type' => Segment::class,
5866
                                'options' => [
5867
                                    'route' => '/delete/:id',
5868
                                    'constraints' => [
5869
                                        'id' => '[A-Za-z0-9\-]+\=*'
5870
                                    ],
5871
                                    'defaults' => [
8529 eleazar 5872
                                        'controller' => '\LeadersLinked\Controller\MyTrainerCategoriesController',
8462 eleazar 5873
                                        'action' => 'delete'
5874
                                    ]
5875
                                ]
5876
                            ]
5877
                        ]
5878
                    ],
5879
                    'question' => [
12250 eleazar 5880
                        'type' => segment::class,
8462 eleazar 5881
                        'options' => [
12260 eleazar 5882
                            'route' => '/question',
8462 eleazar 5883
                            'defaults' => [
9350 eleazar 5884
                                'controller' => '\LeadersLinked\Controller\MyTrainerQuestionController',
8462 eleazar 5885
                                'action' => 'index'
5886
                            ]
5887
                        ],
5888
                        'may_terminate' => true,
5889
                        'child_routes' => [
5890
                            'add' => [
5891
                                'type' => Literal::class,
5892
                                'options' => [
5893
                                    'route' => '/add',
5894
                                    'defaults' => [
9350 eleazar 5895
                                        'controller' => '\LeadersLinked\Controller\MyTrainerQuestionController',
8462 eleazar 5896
                                        'action' => 'add'
5897
                                    ]
5898
                                ]
5899
                            ],
5900
                            'edit' => [
5901
                                'type' => Segment::class,
5902
                                'options' => [
5903
                                    'route' => '/edit/:id',
5904
                                    'constraints' => [
5905
                                        'id' => '[A-Za-z0-9\-]+\=*'
5906
                                    ],
5907
                                    'defaults' => [
9350 eleazar 5908
                                        'controller' => '\LeadersLinked\Controller\MyTrainerQuestionController',
8462 eleazar 5909
                                        'action' => 'edit'
5910
                                    ]
5911
                                ]
5912
                            ],
5913
                            'delete' => [
5914
                                'type' => Segment::class,
5915
                                'options' => [
12193 eleazar 5916
                                    'route' => '/delete/:id',
5917
                                    'constraints' => [
5918
                                        'id' => '[A-Za-z0-9\-]+\=*'
5919
                                    ],
8462 eleazar 5920
                                    'defaults' => [
9350 eleazar 5921
                                        'controller' => '\LeadersLinked\Controller\MyTrainerQuestionController',
8462 eleazar 5922
                                        'action' => 'delete'
5923
                                    ]
5924
                                ]
11195 eleazar 5925
                            ],
5926
                            'view' => [
5927
                                'type' => Segment::class,
5928
                                'options' => [
12280 eleazar 5929
                                    'route' => '/:id/view',
11195 eleazar 5930
                                    'constraints' => [
5931
                                        'id' => '[A-Za-z0-9\-]+\=*'
5932
                                    ],
5933
                                    'defaults' => [
12260 eleazar 5934
                                        'controller' => '\LeadersLinked\Controller\MyTrainerQuestionViewController',
5935
                                        'action' => 'index'
11195 eleazar 5936
                                    ]
5937
                                ]
11303 eleazar 5938
                            ],
11840 eleazar 5939
                            'answer' => [
11322 eleazar 5940
                                'type' => Segment::class,
8462 eleazar 5941
                                'options' => [
11852 eleazar 5942
                                    'route' => '/:id/answer',
11337 eleazar 5943
                                    'constraints' => [
5944
                                        'id' => '[A-Za-z0-9\-]+\=*'
5945
                                    ],
8462 eleazar 5946
                                    'defaults' => [
10602 eleazar 5947
                                        'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
11840 eleazar 5948
                                        'action' => 'index'
8462 eleazar 5949
                                    ]
11810 eleazar 5950
                                ],
5951
                                'may_terminate' => true,
5952
                                'child_routes' => [
11840 eleazar 5953
                                    'add' => [
5954
                                        'type' => Segment::class,
5955
                                        'options' => [
5956
                                            'route' => '/add[/:id]',
5957
                                            'constraints' => [
5958
                                                'id' => '[A-Za-z0-9\-]+\=*'
5959
                                            ],
5960
                                            'defaults' => [
5961
                                                'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
5962
                                                'action' => 'add'
5963
                                            ]
5964
                                        ]
5965
                                    ],
5966
                                    'edit' => [
5967
                                        'type' => Segment::class,
5968
                                        'options' => [
11860 eleazar 5969
                                            'route' => '/edit',
5970
 
11840 eleazar 5971
                                            'defaults' => [
5972
                                                'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
5973
                                                'action' => 'edit'
5974
                                            ]
5975
                                        ]
5976
                                    ],
11810 eleazar 5977
                                    'delete' => [
5978
                                        'type' => Segment::class,
5979
                                        'options' => [
11859 eleazar 5980
                                            'route' => '/delete',
11810 eleazar 5981
                                            'defaults' => [
11812 eleazar 5982
                                                'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
11840 eleazar 5983
                                                'action' => 'delete'
11810 eleazar 5984
                                            ]
5985
                                        ]
5986
                                    ],
11884 eleazar 5987
                                    'feed' => [
5988
                                        'type' => Segment::class,
5989
                                        'options' => [
5990
                                            'route' => '/feed',
5991
                                            'defaults' => [
5992
                                                'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
5993
                                                'action' => 'feed'
5994
                                            ],
5995
                                        ],
5996
                                    ],
11913 eleazar 5997
                                    'timeline' => [
5998
                                        'type' => Segment::class,
5999
                                        'options' => [
6000
                                            'route' => '/timeline',
6001
                                            'defaults' => [
11921 eleazar 6002
                                                'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
11913 eleazar 6003
                                                'action' => 'timeline'
11921 eleazar 6004
                                            ],
6005
                                        ],
11913 eleazar 6006
                                    ],
11840 eleazar 6007
                                    'comments' => [
6008
                                        'type' => Segment::class,
6009
                                        'options' => [
11860 eleazar 6010
                                            'route' => '/comments',
6011
 
11840 eleazar 6012
                                            'defaults' => [
6013
                                                'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
6014
                                                'action' => 'comment'
6015
                                            ],
6016
                                        ],
6017
                                        'may_terminate' => true,
6018
                                        'child_routes' => [
6019
                                            'delete' => [
6020
                                                'type' => Segment::class,
6021
                                                'options' => [
6022
                                                    'route' => '/delete/:comment',
6023
                                                    'constraints' => [
6024
                                                        'comment' => '[A-Za-z0-9\-]+\=*',
6025
                                                    ],
6026
                                                    'defaults' => [
6027
                                                        'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
6028
                                                        'action' => 'commentDelete'
6029
                                                    ]
6030
                                                ]
6031
                                            ],
11948 eleazar 6032
                                            'answer' => [
6033
                                                'type' => Segment::class,
6034
                                                'options' => [
6035
                                                    'route' => '/answer/:comment',
6036
                                                    'constraints' => [
6037
                                                        'comment' => '[A-Za-z0-9\-]+\=*',
6038
                                                    ],
6039
                                                    'defaults' => [
6040
                                                        'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
6041
                                                        'action' => 'answer'
6042
                                                    ]
6043
                                                ]
6044
                                            ],
11840 eleazar 6045
                                        ]
6046
                                    ],
6047
                                ],
11810 eleazar 6048
                            ],
11840 eleazar 6049
                        ],
8462 eleazar 6050
                    ],
1333 efrain 6051
                ]
6052
            ],
13354 eleazar 6053
 
6054
            'development-and-content' => [
15028 efrain 6055
                'type' => Literal::class,
13354 eleazar 6056
                'options' => [
15028 efrain 6057
                    'route' => '/development-and-content',
13354 eleazar 6058
                    'defaults' => [
6059
                        'controller' => '\LeadersLinked\Controller\DevelopmentContentController',
14992 kerby 6060
                        'action' => 'index',
13354 eleazar 6061
                    ]
6062
                ],
15028 efrain 6063
 
6064
 
13354 eleazar 6065
                'may_terminate' => true,
6066
                'child_routes' => [
15028 efrain 6067
                    'listing' => [
15014 efrain 6068
                        'type' => Segment::class,
14743 kerby 6069
                        'options' => [
15028 efrain 6070
                            'route' => '/listing[/:category_id]',
6071
                            'constraints' => [
6072
                                'category_id' => '[A-Za-z0-9\-]+\=*'
6073
                            ],
14743 kerby 6074
                            'defaults' => [
6075
                                'controller' => '\LeadersLinked\Controller\DevelopmentContentController',
15028 efrain 6076
                                'action' => 'listing'
14743 kerby 6077
                            ]
6078
                        ]
6079
                    ],
15028 efrain 6080
                    'add' => [
13354 eleazar 6081
                        'type' => Segment::class,
6082
                        'options' => [
15028 efrain 6083
                            'route' => '/add',
13354 eleazar 6084
                            'defaults' => [
6085
                                'controller' => '\LeadersLinked\Controller\DevelopmentContentController',
15028 efrain 6086
                                'action' => 'add'
13354 eleazar 6087
                            ]
6088
                        ]
6089
                    ],
6090
                    'edit' => [
6091
                        'type' => Segment::class,
6092
                        'options' => [
14972 kerby 6093
                            'route' => '/edit/:id',
14743 kerby 6094
                            'constraints' => [
6095
                                'id' => '[A-Za-z0-9\-]+\=*'
6096
                            ],
13354 eleazar 6097
                            'defaults' => [
6098
                                'controller' => '\LeadersLinked\Controller\DevelopmentContentController',
6099
                                'action' => 'edit'
6100
                            ]
6101
                        ]
6102
                    ],
14743 kerby 6103
                    'aproved' => [
6104
                        'type' => Segment::class,
6105
                        'options' => [
14972 kerby 6106
                            'route' => '/aproved/:id',
14743 kerby 6107
                            'constraints' => [
6108
                                'id' => '[A-Za-z0-9\-]+\=*'
6109
                            ],
6110
                            'defaults' => [
6111
                                'controller' => '\LeadersLinked\Controller\DevelopmentContentController',
6112
                                'action' => 'aproved'
6113
                            ]
6114
                        ]
6115
                    ],
13354 eleazar 6116
                    'delete' => [
6117
                        'type' => Segment::class,
6118
                        'options' => [
14972 kerby 6119
                            'route' => '/delete/:id',
14743 kerby 6120
                            'constraints' => [
6121
                                'id' => '[A-Za-z0-9\-]+\=*'
6122
                            ],
13354 eleazar 6123
                            'defaults' => [
6124
                                'controller' => '\LeadersLinked\Controller\DevelopmentContentController',
6125
                                'action' => 'delete'
6126
                            ]
6127
                        ]
6128
                    ],
15029 kerby 6129
                    'category' => [
6130
                        'type' => Literal::class,
14972 kerby 6131
                        'options' => [
15029 kerby 6132
                            'route' => '/category',
14972 kerby 6133
                            'defaults' => [
15029 kerby 6134
                                'controller' => '\LeadersLinked\Controller\DevelopmentContentCategoryController',
6135
                                'action' => 'index'
6136
                            ]
14972 kerby 6137
                        ],
6138
                        'may_terminate' => true,
6139
                        'child_routes' => [
15029 kerby 6140
                            'add' => [
6141
                                'type' => Literal::class,
6142
                                'options' => [
6143
                                    'route' => '/add',
6144
                                    'defaults' => [
6145
                                        'controller' => '\LeadersLinked\Controller\DevelopmentContentCategoryController',
6146
                                        'action' => 'add'
6147
                                    ]
6148
                                ]
6149
                            ],
6150
                            'edit' => [
14972 kerby 6151
                                'type' => Segment::class,
6152
                                'options' => [
15029 kerby 6153
                                    'route' => '/edit/:id',
14972 kerby 6154
                                    'constraints' => [
15029 kerby 6155
                                        'id' => '[A-Za-z0-9\-]+\=*'
14972 kerby 6156
                                    ],
6157
                                    'defaults' => [
15029 kerby 6158
                                        'controller' => '\LeadersLinked\Controller\DevelopmentContentCategoryController',
6159
                                        'action' => 'edit'
14972 kerby 6160
                                    ]
6161
                                ]
6162
                            ],
15029 kerby 6163
                            'delete' => [
14972 kerby 6164
                                'type' => Segment::class,
6165
                                'options' => [
15029 kerby 6166
                                    'route' => '/delete/:id',
14972 kerby 6167
                                    'constraints' => [
15029 kerby 6168
                                        'id' => '[A-Za-z0-9\-]+\=*'
14972 kerby 6169
                                    ],
6170
                                    'defaults' => [
15029 kerby 6171
                                        'controller' => '\LeadersLinked\Controller\DevelopmentContentCategoryController',
6172
                                        'action' => 'delete'
14972 kerby 6173
                                    ]
6174
                                ]
15029 kerby 6175
                            ]
14972 kerby 6176
                        ]
15029 kerby 6177
                    ]
13354 eleazar 6178
                ]
6179
            ],
1333 efrain 6180
 
1 www 6181
        ]
6182
    ],
6183
    'controllers' => [
6184
        'factories' => [
6185
            \LeadersLinked\Controller\AuthController::class => \LeadersLinked\Factory\Controller\AuthControllerFactory::class,
6186
            \LeadersLinked\Controller\FeedController::class => \LeadersLinked\Factory\Controller\FeedControllerFactory::class,
6187
            \LeadersLinked\Controller\FollowerController::class => \LeadersLinked\Factory\Controller\FollowerControllerFactory::class,
6188
            \LeadersLinked\Controller\JobController::class => \LeadersLinked\Factory\Controller\JobControllerFactory::class,
1469 eleazar 6189
            \LeadersLinked\Controller\RecruitmentSelectionController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionFactory::class,
1709 eleazar 6190
            \LeadersLinked\Controller\RecruitmentSelectionInterviewController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionInterviewFactory::class,
1712 eleazar 6191
            \LeadersLinked\Controller\RecruitmentSelectionInterviewFormController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionInterviewFormFactory::class,
8797 eleazar 6192
            \LeadersLinked\Controller\RecruitmentSelectionInterviewFileController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionInterviewFileControllerFactory::class,
1385 eleazar 6193
            \LeadersLinked\Controller\RecruitmentSelectionVacancyController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionVacancyFactory::class,
1459 eleazar 6194
            \LeadersLinked\Controller\RecruitmentSelectionCandidateController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionCandidateFactory::class,
1 www 6195
            \LeadersLinked\Controller\ProfileController::class => \LeadersLinked\Factory\Controller\ProfileControllerFactory::class,
6196
            \LeadersLinked\Controller\CompanyController::class => \LeadersLinked\Factory\Controller\CompanyControllerFactory::class,
6197
            \LeadersLinked\Controller\CompanySizeController::class => \LeadersLinked\Factory\Controller\CompanySizeControllerFactory::class,
1115 geraldo 6198
            \LeadersLinked\Controller\BehaviorsController::class => \LeadersLinked\Factory\Controller\BehaviorsControllerFactory::class,
1 www 6199
            \LeadersLinked\Controller\CompetencyTypeController::class => \LeadersLinked\Factory\Controller\CompetencyTypeControllerFactory::class,
6200
            \LeadersLinked\Controller\CompetencyController::class => \LeadersLinked\Factory\Controller\CompetencyControllerFactory::class,
6201
            \LeadersLinked\Controller\DegreeController::class => \LeadersLinked\Factory\Controller\DegreeControllerFactory::class,
13355 eleazar 6202
            \LeadersLinked\Controller\DevelopmentContentCategoryController::class => \LeadersLinked\Factory\Controller\DevelopmentContentCategoryControllerFactory::class,
6203
            \LeadersLinked\Controller\DevelopmentContentController::class => \LeadersLinked\Factory\Controller\DevelopmentContentControllerFactory::class,
1 www 6204
            \LeadersLinked\Controller\EmailTemplateController::class => \LeadersLinked\Factory\Controller\EmailTemplateControllerFactory::class,
6205
            \LeadersLinked\Controller\PushTemplateController::class => \LeadersLinked\Factory\Controller\PushTemplateControllerFactory::class,
6206
            \LeadersLinked\Controller\GroupTypeController::class => \LeadersLinked\Factory\Controller\GroupTypeControllerFactory::class,
6207
            \LeadersLinked\Controller\IndustryController::class => \LeadersLinked\Factory\Controller\IndustryControllerFactory::class,
6208
            \LeadersLinked\Controller\JobCategoryController::class => \LeadersLinked\Factory\Controller\JobCategoryControllerFactory::class,
28 efrain 6209
            \LeadersLinked\Controller\JobDescriptionController::class => \LeadersLinked\Factory\Controller\JobDescriptionControllerFactory::class,
1 www 6210
            \LeadersLinked\Controller\PageController::class => \LeadersLinked\Factory\Controller\PageControllerFactory::class,
67 efrain 6211
            \LeadersLinked\Controller\PositionController::class => \LeadersLinked\Factory\Controller\PositionControllerFactory::class,
1 www 6212
            \LeadersLinked\Controller\PostController::class => \LeadersLinked\Factory\Controller\PostControllerFactory::class,
6213
            \LeadersLinked\Controller\SkillController::class => \LeadersLinked\Factory\Controller\SkillControllerFactory::class,
6214
            \LeadersLinked\Controller\UserController::class => \LeadersLinked\Factory\Controller\UserControllerFactory::class,
6215
            \LeadersLinked\Controller\DashboardController::class => \LeadersLinked\Factory\Controller\DashboardControllerFactory::class,
115 efrain 6216
            \LeadersLinked\Controller\SelfEvaluationController::class => \LeadersLinked\Factory\Controller\SelfEvaluationControllerFactory::class,
6217
            \LeadersLinked\Controller\SelfEvaluationFormController::class => \LeadersLinked\Factory\Controller\SelfEvaluationFormControllerFactory::class,
1089 geraldo 6218
            \LeadersLinked\Controller\SelfEvaluationFormUserController::class => \LeadersLinked\Factory\Controller\SelfEvaluationFormUserControllerFactory::class,
247 geraldo 6219
            \LeadersLinked\Controller\SelfEvaluationReviewController::class => \LeadersLinked\Factory\Controller\SelfEvaluationReviewControllerFactory::class,
4375 eleazar 6220
            \LeadersLinked\Controller\SurveyController::class => \LeadersLinked\Factory\Controller\SurveyControllerFactory::class,
6221
            \LeadersLinked\Controller\SurveyFormController::class => \LeadersLinked\Factory\Controller\SurveyFormControllerFactory::class,
5868 eleazar 6222
            \LeadersLinked\Controller\SurveyReportController::class => \LeadersLinked\Factory\Controller\SurveyReportControllerFactory::class,
5287 eleazar 6223
            \LeadersLinked\Controller\SurveyTestController::class => \LeadersLinked\Factory\Controller\SurveyTestControllerFactory::class,
7218 eleazar 6224
            \LeadersLinked\Controller\OrganizationalClimateController::class => \LeadersLinked\Factory\Controller\OrganizationalClimateControllerFactory::class,
6225
            \LeadersLinked\Controller\OrganizationalClimateFormController::class => \LeadersLinked\Factory\Controller\OrganizationalClimateFormControllerFactory::class,
6226
            \LeadersLinked\Controller\OrganizationalClimateReportController::class => \LeadersLinked\Factory\Controller\OrganizationalClimateReportControllerFactory::class,
6227
            \LeadersLinked\Controller\OrganizationalClimateTestController::class => \LeadersLinked\Factory\Controller\OrganizationalClimateTestControllerFactory::class,
15394 efrain 6228
            \LeadersLinked\Controller\PerformanceEvaluationController::class => \LeadersLinked\Factory\Controller\PerformanceEvaluationControllerFactory::class,
987 geraldo 6229
            \LeadersLinked\Controller\PerformanceEvaluationFormController::class => \LeadersLinked\Factory\Controller\PerformanceEvaluationFormControllerFactory::class,
15394 efrain 6230
            \LeadersLinked\Controller\PerformanceEvaluationTestController::class => \LeadersLinked\Factory\Controller\PerformanceEvaluationTestControllerFactory::class,
9335 eleazar 6231
            \LeadersLinked\Controller\MyTrainerCategoriesController::class => \LeadersLinked\Factory\Controller\MyTrainerCategoriesControllerFactory::class,
12286 eleazar 6232
            \LeadersLinked\Controller\MyTrainerQuestionViewController::class => \LeadersLinked\Factory\Controller\MyTrainerQuestionViewControllerFactory::class,
9350 eleazar 6233
            \LeadersLinked\Controller\MyTrainerQuestionController::class => \LeadersLinked\Factory\Controller\MyTrainerQuestionControllerFactory::class,
10423 eleazar 6234
            \LeadersLinked\Controller\MyTrainerAnswerController::class => \LeadersLinked\Factory\Controller\MyTrainerAnswerControllerFactory::class,
15394 efrain 6235
 
1 www 6236
            \LeadersLinked\Controller\MicrolearningController::class => \LeadersLinked\Factory\Controller\MicrolearningControllerFactory::class,
66 efrain 6237
            \LeadersLinked\Controller\MicrolearningQuizController::class => \LeadersLinked\Factory\Controller\MicrolearningQuizControllerFactory::class,
6238
            \LeadersLinked\Controller\MicrolearningQuestionController::class => \LeadersLinked\Factory\Controller\MicrolearningQuestionControllerFactory::class,
6239
            \LeadersLinked\Controller\MicrolearningAnswerController::class => \LeadersLinked\Factory\Controller\MicrolearningAnswerControllerFactory::class,
1 www 6240
            \LeadersLinked\Controller\MicrolearningTopicController::class => \LeadersLinked\Factory\Controller\MicrolearningTopicControllerFactory::class,
6241
            \LeadersLinked\Controller\MicrolearningCapsuleController::class => \LeadersLinked\Factory\Controller\MicrolearningCapsuleControllerFactory::class,
6242
            \LeadersLinked\Controller\MicrolearningSlideController::class => \LeadersLinked\Factory\Controller\MicrolearningSlideControllerFactory::class,
6243
            \LeadersLinked\Controller\MicrolearningAccessForStudentsController::class => \LeadersLinked\Factory\Controller\MicrolearningAccessForStudentsControllerFactory::class,
6244
            \LeadersLinked\Controller\MicrolearningStudentsController::class => \LeadersLinked\Factory\Controller\MicrolearningStudentsControllerFactory::class,
6245
            \LeadersLinked\Controller\MicrolearningReportsController::class => \LeadersLinked\Factory\Controller\MicrolearningReportsControllerFactory::class,
6246
            \LeadersLinked\Controller\MicrolearningExtendUserCompanyController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserCompanyControllerFactory::class,
6247
            \LeadersLinked\Controller\MicrolearningExtendUserFunctionController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserFunctionControllerFactory::class,
6248
            \LeadersLinked\Controller\MicrolearningExtendUserGroupController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserGroupControllerFactory::class,
6249
            \LeadersLinked\Controller\MicrolearningExtendUserInstitutionController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserInstitutionControllerFactory::class,
6250
            \LeadersLinked\Controller\MicrolearningExtendUserPartnerController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserPartnerControllerFactory::class,
6251
            \LeadersLinked\Controller\MicrolearningExtendUserProgramController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserProgramControllerFactory::class,
6252
            \LeadersLinked\Controller\MicrolearningExtendUserSectorController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserSectorControllerFactory::class,
6253
            \LeadersLinked\Controller\MicrolearningExtendUserStudentTypeController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserStudentTypeControllerFactory::class,
15394 efrain 6254
            \LeadersLinked\Controller\MicrolearningExtendUserCountryController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserCountryControllerFactory::class,
1 www 6255
            \LeadersLinked\Controller\StorageController::class => \LeadersLinked\Factory\Controller\StorageControllerFactory::class,
15336 efrain 6256
            \LeadersLinked\Controller\StorageNetworkController::class => \LeadersLinked\Factory\Controller\StorageNetworkControllerFactory::class,
2232 nelberth 6257
            \LeadersLinked\Controller\PlanningObjectivesAndGoalsController::class => \LeadersLinked\Factory\Controller\PlanningObjectivesAndGoalsControllerFactory::class,
2228 nelberth 6258
            \LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController::class => \LeadersLinked\Factory\Controller\PlanningObjectivesAndGoalsObjectivesControllerFactory::class,
2327 nelberth 6259
            \LeadersLinked\Controller\PlanningObjectivesAndGoalsGoalsController::class => \LeadersLinked\Factory\Controller\PlanningObjectivesAndGoalsGoalsControllerFactory::class,
2517 nelberth 6260
            \LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController::class => \LeadersLinked\Factory\Controller\PlanningObjectivesAndGoalsTaskControllerFactory::class,
15336 efrain 6261
            \LeadersLinked\Controller\PrivateNetworksController::class => \LeadersLinked\Factory\Controller\PrivateNetworksControllerFactory::class,
6262
            \LeadersLinked\Controller\MyPrivateNetworkController::class => \LeadersLinked\Factory\Controller\MyPrivateNetworkControllerFactory::class,
4377 nelberth 6263
            \LeadersLinked\Controller\HighPerformanceTeamsController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsControllerFactory::class,
7224 nelberth 6264
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsControllerFactory::class,
9095 nelberth 6265
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewCalendarController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewCalendarControllerFactory::class,
9619 nelberth 6266
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewForoCategoriesControllerFactory::class,
9764 nelberth 6267
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewForoArticlesControllerFactory::class,
10143 nelberth 6268
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewForoControllerFactory::class,
9921 nelberth 6269
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesViewController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewForoArticlesViewControllerFactory::class,
7308 nelberth 6270
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewControllerFactory::class,
12433 nelberth 6271
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewObjectivesControllerFactory::class,
12736 nelberth 6272
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewGoalsController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewGoalsControllerFactory::class,
12835 nelberth 6273
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewTaskControllerFactory::class,
11898 nelberth 6274
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewFeedControllerFactory::class,
7494 nelberth 6275
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewTopicControllerFactory::class,
7811 nelberth 6276
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsMembersControllerFactory::class,
13014 nelberth 6277
            \LeadersLinked\Controller\ChatController::class => \LeadersLinked\Factory\Controller\ChatControllerFactory::class,
13010 nelberth 6278
            \LeadersLinked\Controller\CommunicationController::class => \LeadersLinked\Factory\Controller\CommunicationControllerFactory::class,
13675 nelberth 6279
            \LeadersLinked\Controller\CommunicationInboxController::class => \LeadersLinked\Factory\Controller\CommunicationInboxControllerFactory::class,
13528 nelberth 6280
            \LeadersLinked\Controller\InMailController::class => \LeadersLinked\Factory\Controller\InMailControllerFactory::class,
1333 efrain 6281
 
6282
 
15387 efrain 6283
            \LeadersLinked\Controller\ReportController::class => \LeadersLinked\Factory\Controller\ReportControllerFactory::class,
1333 efrain 6284
            \LeadersLinked\Controller\UnknownController::class => \LeadersLinked\Factory\Controller\UnknownControllerFactory::class,
66 efrain 6285
            \LeadersLinked\Controller\TestController::class => \LeadersLinked\Factory\Controller\TestControllerFactory::class,
15392 efrain 6286
 
6287
            \LeadersLinked\Controller\AptitudeController::class => \LeadersLinked\Factory\Controller\AptitudeControllerFactory::class,
6288
            \LeadersLinked\Controller\HobbyAndInterestController::class => \LeadersLinked\Factory\Controller\HobbyAndInterestControllerFactory::class,
15401 efrain 6289
 
6290
            \LeadersLinked\Controller\DiscoveryContactController::class => \LeadersLinked\Factory\Controller\DiscoveryContactControllerFactory::class,
6291
            \LeadersLinked\Controller\DiscoveryContactLogController::class  => \LeadersLinked\Factory\Controller\DiscoveryContactLogControllerFactory::class,
6292
            \LeadersLinked\Controller\DiscoveryContactInteractionTypeController::class  => \LeadersLinked\Factory\Controller\DiscoveryContactInteractionTypeControllerFactory::class,
6293
            \LeadersLinked\Controller\DiscoveryContactInteractionController::class  => \LeadersLinked\Factory\Controller\DiscoveryContactInteractionControllerFactory::class,
1 www 6294
        ],
6295
        'aliases' => [
6296
            '\LeadersLinked\Controller\AuthController' => \LeadersLinked\Controller\AuthController::class,
6297
            '\LeadersLinked\Controller\FollowerController' => \LeadersLinked\Controller\FollowerController::class,
6298
            '\LeadersLinked\Controller\FeedController' => \LeadersLinked\Controller\FeedController::class,
6299
            '\LeadersLinked\Controller\JobController' => \LeadersLinked\Controller\JobController::class,
1343 eleazar 6300
            '\LeadersLinked\Controller\RecruitmentSelectionController' => \LeadersLinked\Controller\RecruitmentSelectionController::class,
1385 eleazar 6301
            '\LeadersLinked\Controller\RecruitmentSelectionVacancyController' => \LeadersLinked\Controller\RecruitmentSelectionVacancyController::class,
1459 eleazar 6302
            '\LeadersLinked\Controller\RecruitmentSelectionCandidateController' => \LeadersLinked\Controller\RecruitmentSelectionCandidateController::class,
1712 eleazar 6303
            '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController' => \LeadersLinked\Controller\RecruitmentSelectionInterviewFormController::class,
8795 eleazar 6304
            '\LeadersLinked\Controller\RecruitmentSelectionInterviewFileController' => \LeadersLinked\Controller\RecruitmentSelectionInterviewFileController::class,
1 www 6305
            '\LeadersLinked\Controller\ProfileController' => \LeadersLinked\Controller\ProfileController::class,
6306
            '\LeadersLinked\Controller\CompanyController' => \LeadersLinked\Controller\CompanyController::class,
6307
            '\LeadersLinked\Controller\CompanySizeController' => \LeadersLinked\Controller\CompanySizeController::class,
6308
            '\LeadersLinked\Controller\CompetencyTypeController' => \LeadersLinked\Controller\CompetencyTypeController::class,
1102 geraldo 6309
            '\LeadersLinked\Controller\BehaviorsController' => \LeadersLinked\Controller\BehaviorsController::class,
1 www 6310
            '\LeadersLinked\Controller\CompetencyController' => \LeadersLinked\Controller\CompetencyController::class,
6311
            '\LeadersLinked\Controller\DegreeController' => \LeadersLinked\Controller\DegreeController::class,
13355 eleazar 6312
            '\LeadersLinked\Controller\DevelopmentContentCategoryController' => \LeadersLinked\Controller\DevelopmentContentCategoryController::class,
6313
            '\LeadersLinked\Controller\DevelopmentContentController' => \LeadersLinked\Controller\DevelopmentContentController::class,
1 www 6314
            '\LeadersLinked\Controller\EmailTemplateController' => \LeadersLinked\Controller\EmailTemplateController::class,
1089 geraldo 6315
            '\LeadersLinked\Controller\PushTemplateController' => \LeadersLinked\Controller\PushTemplateController::class,
1 www 6316
            '\LeadersLinked\Controller\GroupTypeController' => \LeadersLinked\Controller\GroupTypeController::class,
6317
            '\LeadersLinked\Controller\IndustryController' => \LeadersLinked\Controller\IndustryController::class,
6318
            '\LeadersLinked\Controller\JobCategoryController' => \LeadersLinked\Controller\JobCategoryController::class,
66 efrain 6319
            '\LeadersLinked\Controller\JobDescriptionController' => \LeadersLinked\Controller\JobDescriptionController::class,
1 www 6320
            '\LeadersLinked\Controller\PageController' => \LeadersLinked\Controller\PageController::class,
67 efrain 6321
            '\LeadersLinked\Controller\PositionController' => \LeadersLinked\Controller\PositionController::class,
1 www 6322
            '\LeadersLinked\Controller\PostController' => \LeadersLinked\Controller\PostController::class,
6323
            '\LeadersLinked\Controller\SkillController' => \LeadersLinked\Controller\SkillController::class,
6324
            '\LeadersLinked\Controller\UserController' => \LeadersLinked\Controller\UserController::class,
6325
            '\LeadersLinked\Controller\DashboardController' => \LeadersLinked\Controller\DashboardController::class,
115 efrain 6326
            '\LeadersLinked\Controller\SelfEvaluationController' => \LeadersLinked\Controller\SelfEvaluationController::class,
6327
            '\LeadersLinked\Controller\SelfEvaluationFormController' => \LeadersLinked\Controller\SelfEvaluationFormController::class,
6328
            '\LeadersLinked\Controller\SelfEvaluationFormUserController' => \LeadersLinked\Controller\SelfEvaluationFormUserController::class,
247 geraldo 6329
            '\LeadersLinked\Controller\SelfEvaluationReviewController' => \LeadersLinked\Controller\SelfEvaluationReviewController::class,
4375 eleazar 6330
            '\LeadersLinked\Controller\SurveyController' => \LeadersLinked\Controller\SurveyController::class,
6331
            '\LeadersLinked\Controller\SurveyFormController' => \LeadersLinked\Controller\SurveyFormController::class,
5868 eleazar 6332
            '\LeadersLinked\Controller\SurveyReportController' => \LeadersLinked\Controller\SurveyReportController::class,
5287 eleazar 6333
            '\LeadersLinked\Controller\SurveyTestController' => \LeadersLinked\Controller\SurveyTestController::class,
7218 eleazar 6334
            '\LeadersLinked\Controller\OrganizationalClimateController' => \LeadersLinked\Controller\OrganizationalClimateController::class,
6335
            '\LeadersLinked\Controller\OrganizationalClimateFormController' => \LeadersLinked\Controller\OrganizationalClimateFormController::class,
6336
            '\LeadersLinked\Controller\OrganizationalClimateReportController' => \LeadersLinked\Controller\OrganizationalClimateReportController::class,
6337
            '\LeadersLinked\Controller\OrganizationalClimateTestController' => \LeadersLinked\Controller\OrganizationalClimateTestController::class,
15394 efrain 6338
            '\LeadersLinked\Controller\PerformanceEvaluationController' => \LeadersLinked\Controller\PerformanceEvaluationController::class,
982 geraldo 6339
            '\LeadersLinked\Controller\PerformanceEvaluationFormController' => \LeadersLinked\Controller\PerformanceEvaluationFormController::class,
15394 efrain 6340
            '\LeadersLinked\Controller\PerformanceEvaluationTestController' => \LeadersLinked\Controller\PerformanceEvaluationTestController::class,
1 www 6341
            '\LeadersLinked\Controller\MicrolearningController' => \LeadersLinked\Controller\MicrolearningController::class,
66 efrain 6342
            '\LeadersLinked\Controller\MicrolearningQuizController' => \LeadersLinked\Controller\MicrolearningQuizController::class,
6343
            '\LeadersLinked\Controller\MicrolearningQuestionController' => \LeadersLinked\Controller\MicrolearningQuestionController::class,
6344
            '\LeadersLinked\Controller\MicrolearningAnswerController' => \LeadersLinked\Controller\MicrolearningAnswerController::class,
1 www 6345
            '\LeadersLinked\Controller\MicrolearningTopicController' => \LeadersLinked\Controller\MicrolearningTopicController::class,
6346
            '\LeadersLinked\Controller\MicrolearningCapsuleController' => \LeadersLinked\Controller\MicrolearningCapsuleController::class,
6347
            '\LeadersLinked\Controller\MicrolearningSlideController' => \LeadersLinked\Controller\MicrolearningSlideController::class,
6348
            '\LeadersLinked\Controller\MicrolearningStudentsController' => \LeadersLinked\Controller\MicrolearningStudentsController::class,
6349
            '\LeadersLinked\Controller\MicrolearningAccessForStudentsController' => \LeadersLinked\Controller\MicrolearningAccessForStudentsController::class,
6350
            '\LeadersLinked\Controller\MicrolearningReportsController' => \LeadersLinked\Controller\MicrolearningReportsController::class,
6351
            '\LeadersLinked\Controller\MicrolearningExtendUserCompanyController' => \LeadersLinked\Controller\MicrolearningExtendUserCompanyController::class,
6352
            '\LeadersLinked\Controller\MicrolearningExtendUserFunctionController' => \LeadersLinked\Controller\MicrolearningExtendUserFunctionController::class,
6353
            '\LeadersLinked\Controller\MicrolearningExtendUserGroupController' => \LeadersLinked\Controller\MicrolearningExtendUserGroupController::class,
6354
            '\LeadersLinked\Controller\MicrolearningExtendUserInstitutionController' => \LeadersLinked\Controller\MicrolearningExtendUserInstitutionController::class,
6355
            '\LeadersLinked\Controller\MicrolearningExtendUserPartnerController' => \LeadersLinked\Controller\MicrolearningExtendUserPartnerController::class,
12792 eleazar 6356
            '\LeadersLinked\Controller\MicrolearningExtendUserStudentTypeController' => \LeadersLinked\Controller\MicrolearningExtendUserStudentTypeController::class,
1 www 6357
            '\LeadersLinked\Controller\MicrolearningExtendUserProgramController' => \LeadersLinked\Controller\MicrolearningExtendUserProgramController::class,
6358
            '\LeadersLinked\Controller\MicrolearningExtendUserSectorController' => \LeadersLinked\Controller\MicrolearningExtendUserSectorController::class,
15394 efrain 6359
            '\LeadersLinked\Controller\MicrolearningExtendUserCountryController' => \LeadersLinked\Controller\MicrolearningExtendUserCountryController::class,
9335 eleazar 6360
            '\LeadersLinked\Controller\MyTrainerCategoriesController' => \LeadersLinked\Controller\MyTrainerCategoriesController::class,
12286 eleazar 6361
            '\LeadersLinked\Controller\MyTrainerQuestionViewController' => \LeadersLinked\Controller\MyTrainerQuestionViewController::class,
9350 eleazar 6362
            '\LeadersLinked\Controller\MyTrainerQuestionController' => \LeadersLinked\Controller\MyTrainerQuestionController::class,
10423 eleazar 6363
            '\LeadersLinked\Controller\MyTrainerAnswerController' => \LeadersLinked\Controller\MyTrainerAnswerController::class,
1 www 6364
            '\LeadersLinked\Controller\StorageController' => \LeadersLinked\Controller\StorageController::class,
15336 efrain 6365
            '\LeadersLinked\Controller\StorageNetworkController' => \LeadersLinked\Controller\StorageNetworkController::class,
2232 nelberth 6366
            '\LeadersLinked\Controller\PlanningObjectivesAndGoalsController' => \LeadersLinked\Controller\PlanningObjectivesAndGoalsController::class,
2228 nelberth 6367
            '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController' => \LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController::class,
2517 nelberth 6368
            '\LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController' => \LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController::class,
4377 nelberth 6369
            '\LeadersLinked\Controller\PlanningObjectivesAndGoalsGoalsController' => \LeadersLinked\Controller\PlanningObjectivesAndGoalsGoalsController::class,
15336 efrain 6370
            '\LeadersLinked\Controller\MyPrivateNetworkController' => \LeadersLinked\Controller\MyPrivateNetworkController::class,
6371
            '\LeadersLinked\Controller\PrivateNetworksController' => \LeadersLinked\Controller\PrivateNetworksController::class,
4377 nelberth 6372
            '\LeadersLinked\Controller\HighPerformanceTeamsController' => \LeadersLinked\Controller\HighPerformanceTeamsController::class,
7224 nelberth 6373
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsController::class,
7308 nelberth 6374
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewController::class,
12435 nelberth 6375
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController::class,
12736 nelberth 6376
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewGoalsController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewGoalsController::class,
12835 nelberth 6377
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController::class,
11898 nelberth 6378
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController::class,
7494 nelberth 6379
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController::class,
9095 nelberth 6380
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewCalendarController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewCalendarController::class,
9619 nelberth 6381
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController::class,
9764 nelberth 6382
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesController::class,
10143 nelberth 6383
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoController::class,
9921 nelberth 6384
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesViewController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesViewController::class,
7811 nelberth 6385
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController::class,
11340 nelberth 6386
            '\LeadersLinked\Controller\ChatController' => \LeadersLinked\Controller\ChatController::class,
13010 nelberth 6387
            '\LeadersLinked\Controller\CommunicationController' => \LeadersLinked\Controller\CommunicationController::class,
13675 nelberth 6388
            '\LeadersLinked\Controller\CommunicationInboxController' => \LeadersLinked\Controller\CommunicationInboxController::class,
13528 nelberth 6389
            '\LeadersLinked\Controller\InMailController' => \LeadersLinked\Controller\InMailController::class,
15387 efrain 6390
            '\LeadersLinked\Controller\ReportController' => \LeadersLinked\Controller\ReportController::class,
1333 efrain 6391
            '\LeadersLinked\Controller\UnknownController' => \LeadersLinked\Controller\UnknownController::class,
13014 nelberth 6392
            '\LeadersLinked\Controller\TestController' => \LeadersLinked\Controller\TestController::class,
15392 efrain 6393
            '\LeadersLinked\Controller\AptitudeController' => \LeadersLinked\Controller\AptitudeController::class,
6394
            '\LeadersLinked\Controller\HobbyAndInterestController' => \LeadersLinked\Controller\HobbyAndInterestController::class,
15401 efrain 6395
 
6396
            '\LeadersLinked\Controller\DiscoveryContactController' => \LeadersLinked\Controller\DiscoveryContactController::class,
6397
            '\LeadersLinked\Controller\DiscoveryContactLogController' => \LeadersLinked\Controller\DiscoveryContactLogController::class,
6398
            '\LeadersLinked\Controller\DiscoveryContactInteractionTypeController' => \LeadersLinked\Controller\DiscoveryContactInteractionTypeController::class,
6399
            '\LeadersLinked\Controller\DiscoveryContactInteractionController' => \LeadersLinked\Controller\DiscoveryContactInteractionController::class,
1 www 6400
        ]
6401
    ],
6402
    'laminas-cli' => [
6403
        'commands' => [
1089 geraldo 6404
        ]
1 www 6405
    ],
6406
    'service_manager' => [
6407
        'abstract_factories' => [
6408
            \Laminas\Db\Adapter\AdapterAbstractServiceFactory::class
6409
        ],
6410
        'factories' => [
6411
            'RenderingStrategy' => function ($container) {
6412
                $translator = $container->get('MvcTranslator');
6413
                return new \LeadersLinked\View\RenderingStrategy($translator);
6414
            },
6415
            'menuNavigation' => \LeadersLinked\Navigation\MenuNavigation::class,
6416
            'footerNavigation' => \LeadersLinked\Navigation\FooterNavigation::class,
1089 geraldo 6417
        ],
6418
        'aliases' => [// 'leaders-linked-storage' => \LeadersLinked\Service\StorageService::class
1 www 6419
        ]
6420
    ],
6421
    'view_helpers' => [
6422
        'factories' => [
11351 nelberth 6423
            \LeadersLinked\Helper\ChatHelper::class => \LeadersLinked\Factory\Helper\ChatHelperFactory::class,
1 www 6424
            \LeadersLinked\Helper\CurrentUserHelper::class => \LeadersLinked\Factory\Helper\CurrentUserHelperFactory::class,
15336 efrain 6425
            \LeadersLinked\Helper\CurrentNetworkHelper::class => \LeadersLinked\Factory\Helper\CurrentNetworkHelperFactory::class,
6426
            \LeadersLinked\Helper\NetworkFavicoHelper::class => \LeadersLinked\Factory\Helper\NetworkFavicoHelperFactory::class,
6427
            \LeadersLinked\Helper\NetworkIntroHelper::class => \LeadersLinked\Factory\Helper\NetworkIntroHelperFactory::class,
6428
            \LeadersLinked\Helper\NetworkLogoHelper::class => \LeadersLinked\Factory\Helper\NetworkLogoHelperFactory::class,
6429
            \LeadersLinked\Helper\NetworkNavbarHelper::class => \LeadersLinked\Factory\Helper\NetworkNavbarHelperFactory::class,
6430
            \LeadersLinked\Helper\NetworkStylesAndColorsHelper::class => \LeadersLinked\Factory\Helper\NetworkStylesAndColorsHelperFactory::class,
6431
 
1 www 6432
        ],
6433
        'invokables' => [
11527 nelberth 6434
            'chatHelper' => \LeadersLinked\Helper\ChatHelper::class,
1 www 6435
            'menuHelper' => \LeadersLinked\Helper\MenuHelper::class,
6436
        ],
6437
        'aliases' => [
11527 nelberth 6438
 
1 www 6439
            'currentUserHelper' => \LeadersLinked\Helper\CurrentUserHelper::class,
15336 efrain 6440
            'currentNetworkHelper' =>  \LeadersLinked\Helper\CurrentNetworkHelper::class,
6441
            'networkFavicoHelper'  => \LeadersLinked\Helper\NetworkFavicoHelper::class,
6442
            'networkIntroHelper' => \LeadersLinked\Helper\NetworkIntroHelper::class,
6443
            'networkLogoHelper'  => \LeadersLinked\Helper\NetworkLogoHelper::class,
6444
            'networkNavbarHelper'  => \LeadersLinked\Helper\NetworkNavbarHelper::class,
6445
            'networkStylesAndColorsHelper'  => \LeadersLinked\Helper\NetworkStylesAndColorsHelper::class,
4600 nelberth 6446
 
15336 efrain 6447
 
1 www 6448
        ]
6449
    ],
6450
    'controller_plugins' => [
6451
        'invokables' => [],
6452
        'factories' => [
15336 efrain 6453
            \LeadersLinked\Plugin\CurrentUserPlugin::class => \LeadersLinked\Factory\Plugin\CurrentUserPluginFactory::class,
6454
            \LeadersLinked\Plugin\CurrentNetworkPlugin::class => \LeadersLinked\Factory\Plugin\CurrentNetworkPluginFactory::class,
1 www 6455
        ],
6456
        'aliases' => [
15336 efrain 6457
            'currentUserPlugin' => \LeadersLinked\Plugin\CurrentUserPlugin::class,
6458
            'currentNetworkPlugin' => \LeadersLinked\Plugin\CurrentNetworkPlugin::class,
1 www 6459
        ]
6460
    ],
6461
    'view_manager' => [
6462
        'display_not_found_reason' => true,
6463
        'display_exceptions' => true,
6464
        'doctype' => 'HTML5',
6465
        'not_found_template' => 'error/404',
6466
        'exception_template' => 'error/index',
6467
        'template_map' => [
6468
            'layout/layout' => __DIR__ . '/../view/layout/layout.phtml',
6469
            'error/404' => __DIR__ . '/../view/error/404.phtml',
6470
            'error/index' => __DIR__ . '/../view/error/index.phtml'
6471
        ],
6472
        'template_path_stack' => [
6473
            __DIR__ . '/../view'
6474
        ],
6475
        'strategies' => [
6476
            'ViewJsonStrategy',
6477
            'RenderingStrategy'
6478
        ]
6479
    ]
6480
];
6481