Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 15390 | Rev 15394 | 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
                            ],
1960
                        ]
1089 geraldo 1961
                    ],
1 www 1962
                ],
1089 geraldo 1963
            ],
1964
            /*             * * START PUBLICATIONS ** */
1 www 1965
            'publications' => [
1966
                'type' => Literal::class,
1967
                'options' => [
1968
                    'route' => '/publications',
1969
                    'defaults' => [
1970
                        'controller' => '\LeadersLinked\Controller\DashboardController',
1971
                        'action' => 'index'
1972
                    ]
1973
                ],
1974
                'may_terminate' => true,
1975
                'child_routes' => [
1976
                    'pages' => [
1977
                        'type' => Literal::class,
1978
                        'options' => [
1979
                            'route' => '/pages',
1980
                            'defaults' => [
1981
                                'controller' => '\LeadersLinked\Controller\PageController',
1982
                                'action' => 'index'
1983
                            ]
1984
                        ],
1985
                        'may_terminate' => true,
1986
                        'child_routes' => [
1987
                            'add' => [
1988
                                'type' => Literal::class,
1989
                                'options' => [
1990
                                    'route' => '/add',
1991
                                    'defaults' => [
1992
                                        'controller' => '\LeadersLinked\Controller\PageController',
1993
                                        'action' => 'add'
1994
                                    ]
1995
                                ]
1996
                            ],
1997
                            'edit' => [
1998
                                'type' => Segment::class,
1999
                                'options' => [
2000
                                    'route' => '/edit/:id',
2001
                                    'constraints' => [
2002
                                        'id' => '[A-Za-z0-9\-]+\=*'
2003
                                    ],
2004
                                    'defaults' => [
2005
                                        'controller' => '\LeadersLinked\Controller\PageController',
2006
                                        'action' => 'edit'
2007
                                    ]
2008
                                ]
2009
                            ],
2010
                            'delete' => [
2011
                                'type' => Segment::class,
2012
                                'options' => [
2013
                                    'route' => '/delete/:id',
2014
                                    'constraints' => [
2015
                                        'id' => '[A-Za-z0-9\-]+\=*'
2016
                                    ],
2017
                                    'defaults' => [
2018
                                        'controller' => '\LeadersLinked\Controller\PageController',
2019
                                        'action' => 'delete'
2020
                                    ]
2021
                                ]
2022
                            ]
2023
                        ]
2024
                    ],
2025
                    'posts' => [
2026
                        'type' => Literal::class,
2027
                        'options' => [
2028
                            'route' => '/posts',
2029
                            'defaults' => [
2030
                                'controller' => '\LeadersLinked\Controller\PostController',
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\PostController',
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\PostController',
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\PostController',
2068
                                        'action' => 'delete'
2069
                                    ]
2070
                                ]
2071
                            ]
2072
                        ]
2073
                    ],
2074
                ]
1089 geraldo 2075
            ],
2076
            /*             * * START SELF EVALUATION ** */
114 efrain 2077
            'self-evaluation' => [
2078
                'type' => Literal::class,
2079
                'options' => [
2080
                    'route' => '/self-evaluation',
2081
                    'defaults' => [
115 efrain 2082
                        'controller' => '\LeadersLinked\Controller\SelfEvaluationController',
114 efrain 2083
                        'action' => 'index'
2084
                    ]
2085
                ],
2086
                'may_terminate' => true,
2087
                'child_routes' => [
2088
                    'forms' => [
2089
                        'type' => Literal::class,
2090
                        'options' => [
2091
                            'route' => '/forms',
2092
                            'defaults' => [
115 efrain 2093
                                'controller' => '\LeadersLinked\Controller\SelfEvaluationFormController',
114 efrain 2094
                                'action' => 'index'
2095
                            ]
2096
                        ],
2097
                        'may_terminate' => true,
2098
                        'child_routes' => [
2099
                            'add' => [
2100
                                'type' => Literal::class,
2101
                                'options' => [
2102
                                    'route' => '/add',
2103
                                    'defaults' => [
115 efrain 2104
                                        'controller' => '\LeadersLinked\Controller\SelfEvaluationFormController',
114 efrain 2105
                                        'action' => 'add'
2106
                                    ]
2107
                                ]
2108
                            ],
2109
                            'edit' => [
2110
                                'type' => Segment::class,
2111
                                'options' => [
2112
                                    'route' => '/edit/:id',
2113
                                    'constraints' => [
2114
                                        'id' => '[A-Za-z0-9\-]+\=*'
2115
                                    ],
2116
                                    'defaults' => [
115 efrain 2117
                                        'controller' => '\LeadersLinked\Controller\SelfEvaluationFormController',
114 efrain 2118
                                        'action' => 'edit'
2119
                                    ]
2120
                                ]
2121
                            ],
2122
                            'delete' => [
2123
                                'type' => Segment::class,
2124
                                'options' => [
2125
                                    'route' => '/delete/:id',
2126
                                    'constraints' => [
2127
                                        'id' => '[A-Za-z0-9\-]+\=*'
2128
                                    ],
2129
                                    'defaults' => [
115 efrain 2130
                                        'controller' => '\LeadersLinked\Controller\SelfEvaluationFormController',
114 efrain 2131
                                        'action' => 'delete'
2132
                                    ]
2133
                                ]
2134
                            ]
2135
                        ]
2136
                    ],
115 efrain 2137
                    'users' => [
2138
                        'type' => Literal::class,
2139
                        'options' => [
2140
                            'route' => '/users',
2141
                            'defaults' => [
2142
                                'controller' => '\LeadersLinked\Controller\SelfEvaluationFormUserController',
2143
                                'action' => 'index'
2144
                            ]
2145
                        ],
2146
                        'may_terminate' => true,
2147
                        'child_routes' => [
2148
                            'add' => [
2149
                                'type' => Segment::class,
2150
                                'options' => [
2151
                                    'route' => '/add/:form_id/:user_id',
2152
                                    'constraints' => [
2153
                                        'form_id' => '[A-Za-z0-9\-]+\=*',
2154
                                        'user_id' => '[A-Za-z0-9\-]+\=*'
2155
                                    ],
2156
                                    'defaults' => [
2157
                                        'controller' => '\LeadersLinked\Controller\SelfEvaluationFormUserController',
2158
                                        'action' => 'add'
2159
                                    ]
2160
                                ]
2161
                            ],
2162
                            'delete' => [
2163
                                'type' => Segment::class,
2164
                                'options' => [
2165
                                    'route' => '/delete/:form_id/:user_id',
2166
                                    'constraints' => [
2167
                                        'form_id' => '[A-Za-z0-9\-]+\=*',
2168
                                        'user_id' => '[A-Za-z0-9\-]+\=*'
2169
                                    ],
2170
                                    'defaults' => [
2171
                                        'controller' => '\LeadersLinked\Controller\SelfEvaluationFormUserController',
2172
                                        'action' => 'delete'
2173
                                    ]
2174
                                ]
2175
                            ]
2176
                        ]
2177
                    ],
114 efrain 2178
                    'reviews' => [
2179
                        'type' => Literal::class,
2180
                        'options' => [
2181
                            'route' => '/reviews',
2182
                            'defaults' => [
115 efrain 2183
                                'controller' => '\LeadersLinked\Controller\SelfEvaluationReviewController',
114 efrain 2184
                                'action' => 'index'
2185
                            ]
2186
                        ],
2187
                        'may_terminate' => true,
2188
                        'child_routes' => [
2189
                            'edit' => [
2190
                                'type' => Segment::class,
2191
                                'options' => [
2192
                                    'route' => '/edit/:id',
2193
                                    'constraints' => [
2194
                                        'id' => '[A-Za-z0-9\-]+\=*'
2195
                                    ],
2196
                                    'defaults' => [
115 efrain 2197
                                        'controller' => '\LeadersLinked\Controller\SelfEvaluationReviewController',
486 geraldo 2198
                                        'action' => 'edit'
114 efrain 2199
                                    ]
2200
                                ]
2201
                            ],
469 geraldo 2202
                            'report' => [
2203
                                'type' => Segment::class,
2204
                                'options' => [
2205
                                    'route' => '/report/:id',
2206
                                    'constraints' => [
2207
                                        'id' => '[A-Za-z0-9\-]+\=*'
2208
                                    ],
2209
                                    'defaults' => [
2210
                                        'controller' => '\LeadersLinked\Controller\SelfEvaluationReviewController',
487 geraldo 2211
                                        'action' => 'report'
469 geraldo 2212
                                    ]
2213
                                ]
2214
                            ],
114 efrain 2215
                        ]
2216
                    ],
2217
                ]
1089 geraldo 2218
            ],
2219
            /*             * * END SELF EVALUATION ** */
946 geraldo 2220
 
1089 geraldo 2221
            /*             * * START PERFOMANCE EVALUATION ** */
946 geraldo 2222
            'performance-evaluation' => [
2223
                'type' => Literal::class,
2224
                'options' => [
2225
                    'route' => '/performance-evaluation',
2226
                    'defaults' => [
980 geraldo 2227
                        'controller' => '\LeadersLinked\Controller\SelfEvaluationController',
946 geraldo 2228
                        'action' => 'index'
2229
                    ]
2230
                ],
2231
                'may_terminate' => true,
2232
                'child_routes' => [
2233
                    'forms' => [
2234
                        'type' => Literal::class,
2235
                        'options' => [
2236
                            'route' => '/forms',
2237
                            'defaults' => [
977 geraldo 2238
                                'controller' => '\LeadersLinked\Controller\PerformanceEvaluationFormController',
946 geraldo 2239
                                'action' => 'index'
2240
                            ]
2241
                        ],
2242
                        'may_terminate' => true,
2243
                        'child_routes' => [
2244
                            'add' => [
2245
                                'type' => Literal::class,
2246
                                'options' => [
2247
                                    'route' => '/add',
2248
                                    'defaults' => [
977 geraldo 2249
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationFormController',
946 geraldo 2250
                                        'action' => 'add'
2251
                                    ]
2252
                                ]
2253
                            ],
2254
                            'edit' => [
2255
                                'type' => Segment::class,
2256
                                'options' => [
2257
                                    'route' => '/edit/:id',
2258
                                    'constraints' => [
2259
                                        'id' => '[A-Za-z0-9\-]+\=*'
2260
                                    ],
2261
                                    'defaults' => [
986 geraldo 2262
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationFormController',
946 geraldo 2263
                                        'action' => 'edit'
2264
                                    ]
2265
                                ]
2266
                            ],
2267
                            'delete' => [
2268
                                'type' => Segment::class,
2269
                                'options' => [
2270
                                    'route' => '/delete/:id',
2271
                                    'constraints' => [
2272
                                        'id' => '[A-Za-z0-9\-]+\=*'
2273
                                    ],
2274
                                    'defaults' => [
986 geraldo 2275
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationFormController',
946 geraldo 2276
                                        'action' => 'delete'
2277
                                    ]
2278
                                ]
15079 efrain 2279
                            ],
2280
                            'job-decription' => [
2281
                                'type' => Literal::class,
2282
                                'options' => [
2283
                                    'route' => '/job-decription',
2284
 
2285
                                    'defaults' => [
2286
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationFormController',
2287
                                        'action' => 'jobDescription'
2288
                                    ]
2289
                                ]
2290
                            ],
1263 geraldo 2291
                            'report' => [
2292
                                'type' => Segment::class,
2293
                                'options' => [
2294
                                    'route' => '/report/:id',
2295
                                    'constraints' => [
2296
                                        'id' => '[A-Za-z0-9\-]+\=*'
2297
                                    ],
2298
                                    'defaults' => [
2299
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationFormController',
2300
                                        'action' => 'report'
2301
                                    ]
2302
                                ]
2303
                            ],
946 geraldo 2304
                        ]
2305
                    ],
1383 efrain 2306
                    'evaluations' => [
946 geraldo 2307
                        'type' => Literal::class,
2308
                        'options' => [
1383 efrain 2309
                            'route' => '/evaluations',
946 geraldo 2310
                            'defaults' => [
1383 efrain 2311
                                'controller' => '\LeadersLinked\Controller\PerformanceEvaluationEvaluationController',
946 geraldo 2312
                                'action' => 'index'
2313
                            ]
2314
                        ],
2315
                        'may_terminate' => true,
2316
                        'child_routes' => [
1383 efrain 2317
                            'add' => [
1320 efrain 2318
                                'type' => Literal::class,
946 geraldo 2319
                                'options' => [
1383 efrain 2320
                                    'route' => '/add',
946 geraldo 2321
                                    'defaults' => [
1383 efrain 2322
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationEvaluationController',
2323
                                        'action' => 'add'
946 geraldo 2324
                                    ]
1383 efrain 2325
                                ]
2326
                            ],
7902 eleazar 2327
                            'delete' => [
1383 efrain 2328
                                'type' => Segment::class,
2329
                                'options' => [
7902 eleazar 2330
                                    'route' => '/delete/:id',
1383 efrain 2331
                                    'constraints' => [
2332
                                        'id' => '[A-Za-z0-9\-]+\=*',
1320 efrain 2333
                                    ],
1383 efrain 2334
                                    'defaults' => [
2335
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationEvaluationController',
7902 eleazar 2336
                                        'action' => 'delete'
1320 efrain 2337
                                    ]
946 geraldo 2338
                                ]
1383 efrain 2339
                            ],
7902 eleazar 2340
                            'self' => [
7947 eleazar 2341
                                'type' => Segment::class,
1383 efrain 2342
                                'options' => [
7907 eleazar 2343
                                    'route' => '/self/:id',
2344
                                    'constraints' => [
2345
                                        'id' => '[A-Za-z0-9\-]+\=*',
2346
                                    ],
1383 efrain 2347
                                    'defaults' => [
2348
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationEvaluationController',
7902 eleazar 2349
                                        'action' => 'self'
1383 efrain 2350
                                    ]
2351
                                ]
2352
                            ],
7902 eleazar 2353
                            'both' => [
7947 eleazar 2354
                                'type' => Segment::class,
946 geraldo 2355
                                'options' => [
7907 eleazar 2356
                                    'route' => '/both/:id',
2357
                                    'constraints' => [
2358
                                        'id' => '[A-Za-z0-9\-]+\=*',
2359
                                    ],
946 geraldo 2360
                                    'defaults' => [
1383 efrain 2361
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationEvaluationController',
7902 eleazar 2362
                                        'action' => 'both'
946 geraldo 2363
                                    ]
2364
                                ]
1383 efrain 2365
                            ],
7902 eleazar 2366
                            'superviser' => [
7947 eleazar 2367
                                'type' => Segment::class,
7902 eleazar 2368
                                'options' => [
7907 eleazar 2369
                                    'route' => '/superviser/:id',
2370
                                    'constraints' => [
2371
                                        'id' => '[A-Za-z0-9\-]+\=*',
2372
                                    ],
7902 eleazar 2373
                                    'defaults' => [
2374
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationEvaluationController',
2375
                                        'action' => 'superviser'
2376
                                    ]
2377
                                ]
2378
                            ],
8220 eleazar 2379
                            'report-self' =>[
8176 eleazar 2380
                                'type' => Segment::class,
2381
                                'options' => [
8220 eleazar 2382
                                    'route' => '/report-self/:id',
8176 eleazar 2383
                                    'constraints' => [
2384
                                        'id' => '[A-Za-z0-9\-]+\=*'
2385
                                    ],
2386
                                    'defaults' => [
2387
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationEvaluationController',
8177 eleazar 2388
                                        'action' => 'reportSelf',
8176 eleazar 2389
                                    ],
2390
                                ],
2391
                            ],
8220 eleazar 2392
                            'report-both' =>[
8177 eleazar 2393
                                'type' => Segment::class,
2394
                                'options' => [
8220 eleazar 2395
                                    'route' => '/report-both/:id',
8177 eleazar 2396
                                    'constraints' => [
2397
                                        'id' => '[A-Za-z0-9\-]+\=*'
2398
                                    ],
2399
                                    'defaults' => [
2400
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationEvaluationController',
2401
                                        'action' => 'reportBoth',
2402
                                    ],
2403
                                ],
2404
                            ],
8249 eleazar 2405
                            'report-superviser' =>[
8177 eleazar 2406
                                'type' => Segment::class,
2407
                                'options' => [
8249 eleazar 2408
                                    'route' => '/report-superviser/:id',
8177 eleazar 2409
                                    'constraints' => [
2410
                                        'id' => '[A-Za-z0-9\-]+\=*'
2411
                                    ],
2412
                                    'defaults' => [
2413
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationEvaluationController',
2414
                                        'action' => 'reportSupervisor',
2415
                                    ],
2416
                                ],
2417
                            ],
8068 eleazar 2418
                            'user-by-email' => [
2419
                                'type' => Literal::class,
2420
                                'options' => [
2421
                                    'route' => '/user-by-email',
2422
                                    'defaults' => [
2423
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
2424
                                        'action' => 'email'
2425
                                    ]
2426
                                ]
2427
                            ],
946 geraldo 2428
                        ]
2429
                    ],
2430
                ]
1089 geraldo 2431
            ],
2432
            /*             * * END PERFORMANCE EVALUATION ** */
2433
 
2434
            /*             * * START SETTINGS ** */
1 www 2435
            'settings' => [
2436
                'type' => Literal::class,
2437
                'options' => [
2438
                    'route' => '/settings',
2439
                    'defaults' => [
2440
                        'controller' => '\LeadersLinked\Controller\DashboardController',
2441
                        'action' => 'index'
2442
                    ]
2443
                ],
2444
                'may_terminate' => true,
2445
                'child_routes' => [
15336 efrain 2446
                    'my-private-network' => [
2447
                        'type' => Literal::class,
2448
                        'options' => [
2449
                            'route' => '/my-private-network',
2450
                            'defaults' => [
2451
                                'controller' => '\LeadersLinked\Controller\MyPrivateNetworkController',
2452
                                'action' => 'index'
2453
                            ]
2454
                        ],
2455
                        'may_terminate' => true,
2456
                        'child_routes' => [
2457
                            'intro' => [
2458
                                'type' => Literal::class,
2459
                                'options' => [
2460
                                    'route' => '/intro',
2461
                                    'defaults' => [
2462
                                        'controller' =>  '\LeadersLinked\Controller\MyPrivateNetworkController',
2463
                                        'action' => 'intro'
2464
                                    ]
2465
                                ]
2466
                            ],
2467
                            'styles-and-colors' => [
2468
                                'type' => Literal::class,
2469
                                'options' => [
2470
                                    'route' => '/styles-and-colors',
2471
                                    'defaults' => [
2472
                                        'controller' =>  '\LeadersLinked\Controller\MyPrivateNetworkController',
2473
                                        'action' => 'stylesAndColors'
2474
                                    ]
2475
                                ]
2476
                            ],
2477
                            'navbar' => [
2478
                                'type' => Literal::class,
2479
                                'options' => [
2480
                                    'route' => '/navbar',
2481
                                    'defaults' => [
2482
                                        'controller' =>  '\LeadersLinked\Controller\MyPrivateNetworkController',
2483
                                        'action' => 'navbar'
2484
                                    ]
2485
                                ]
2486
                            ],
2487
                            'favicon' => [
2488
                                'type' => Literal::class,
2489
                                'options' => [
2490
                                    'route' => '/favicon',
2491
                                    'defaults' => [
2492
                                        'controller' =>  '\LeadersLinked\Controller\MyPrivateNetworkController',
2493
                                        'action' => 'favicon'
2494
                                    ]
2495
                                ]
2496
                            ],
2497
                            'logo' => [
2498
                                'type' => Literal::class,
2499
                                'options' => [
2500
                                    'route' => '/logo',
2501
                                    'defaults' => [
2502
                                        'controller' =>  '\LeadersLinked\Controller\MyPrivateNetworkController',
2503
                                        'action' => 'logo'
2504
                                    ]
2505
                                ]
2506
                            ],
2507
 
2508
 
2509
 
2510
                        ]
2511
                    ],
2512
 
2513
                    'private-networks' => [
2514
                        'type' => Literal::class,
2515
                        'options' => [
2516
                            'route' => '/private-networks',
2517
                            'defaults' => [
2518
                                'controller' => '\LeadersLinked\Controller\PrivateNetworksController',
2519
                                'action' => 'index'
2520
                            ]
2521
                        ],
2522
                        'may_terminate' => true,
2523
                        'child_routes' => [
2524
                            'add' => [
2525
                                'type' => Literal::class,
2526
                                'options' => [
2527
                                    'route' => '/add',
2528
                                    'defaults' => [
2529
                                        'controller' => '\LeadersLinked\Controller\PrivateNetworksController',
2530
                                        'action' => 'add'
2531
                                    ]
2532
                                ]
2533
                            ],
2534
                            'edit' => [
2535
                                'type' => Segment::class,
2536
                                'options' => [
2537
                                    'route' => '/edit/:id',
2538
                                    'constraints' => [
2539
                                        'id' => '[A-Za-z0-9\-]+\=*'
2540
                                    ],
2541
                                    'defaults' => [
2542
                                        'controller' => '\LeadersLinked\Controller\PrivateNetworksController',
2543
                                        'action' => 'edit'
2544
                                    ]
2545
                                ]
2546
                            ],
2547
                            'delete' => [
2548
                                'type' => Segment::class,
2549
                                'options' => [
2550
                                    'route' => '/delete/:id',
2551
                                    'constraints' => [
2552
                                        'id' => '[A-Za-z0-9\-]+\=*'
2553
                                    ],
2554
                                    'defaults' => [
2555
                                        'controller' => '\LeadersLinked\Controller\PrivateNetworksController',
2556
                                        'action' => 'delete'
2557
                                    ]
2558
                                ]
2559
                            ]
2560
                        ]
2561
                    ],
1 www 2562
                    'company-sizes' => [
2563
                        'type' => Literal::class,
2564
                        'options' => [
2565
                            'route' => '/company-sizes',
2566
                            'defaults' => [
2567
                                'controller' => '\LeadersLinked\Controller\CompanySizeController',
2568
                                'action' => 'index'
2569
                            ]
2570
                        ],
2571
                        'may_terminate' => true,
2572
                        'child_routes' => [
2573
                            'add' => [
2574
                                'type' => Literal::class,
2575
                                'options' => [
2576
                                    'route' => '/add',
2577
                                    'defaults' => [
2578
                                        'controller' => '\LeadersLinked\Controller\CompanySizeController',
2579
                                        'action' => 'add'
2580
                                    ]
2581
                                ]
2582
                            ],
2583
                            'edit' => [
2584
                                'type' => Segment::class,
2585
                                'options' => [
2586
                                    'route' => '/edit/:id',
2587
                                    'constraints' => [
2588
                                        'id' => '[A-Za-z0-9\-]+\=*'
2589
                                    ],
2590
                                    'defaults' => [
2591
                                        'controller' => '\LeadersLinked\Controller\CompanySizeController',
2592
                                        'action' => 'edit'
2593
                                    ]
2594
                                ]
2595
                            ],
2596
                            'delete' => [
2597
                                'type' => Segment::class,
2598
                                'options' => [
2599
                                    'route' => '/delete/:id',
2600
                                    'constraints' => [
2601
                                        'id' => '[A-Za-z0-9\-]+\=*'
2602
                                    ],
2603
                                    'defaults' => [
2604
                                        'controller' => '\LeadersLinked\Controller\CompanySizeController',
2605
                                        'action' => 'delete'
2606
                                    ]
2607
                                ]
2608
                            ]
2609
                        ]
2610
                    ],
2611
                    'competency-types' => [
2612
                        'type' => Literal::class,
2613
                        'options' => [
2614
                            'route' => '/competency-types',
2615
                            'defaults' => [
2616
                                'controller' => '\LeadersLinked\Controller\CompetencyTypeController',
2617
                                'action' => 'index'
2618
                            ]
2619
                        ],
2620
                        'may_terminate' => true,
2621
                        'child_routes' => [
2622
                            'add' => [
2623
                                'type' => Literal::class,
2624
                                'options' => [
2625
                                    'route' => '/add',
2626
                                    'defaults' => [
2627
                                        'controller' => '\LeadersLinked\Controller\CompetencyTypeController',
2628
                                        'action' => 'add'
2629
                                    ]
2630
                                ]
2631
                            ],
2632
                            'edit' => [
2633
                                'type' => Segment::class,
2634
                                'options' => [
2635
                                    'route' => '/edit/:id',
2636
                                    'constraints' => [
2637
                                        'id' => '[A-Za-z0-9\-]+\=*'
2638
                                    ],
2639
                                    'defaults' => [
2640
                                        'controller' => '\LeadersLinked\Controller\CompetencyTypeController',
2641
                                        'action' => 'edit'
2642
                                    ]
2643
                                ]
2644
                            ],
2645
                            'delete' => [
2646
                                'type' => Segment::class,
2647
                                'options' => [
2648
                                    'route' => '/delete/:id',
2649
                                    'constraints' => [
2650
                                        'id' => '[A-Za-z0-9\-]+\=*'
2651
                                    ],
2652
                                    'defaults' => [
2653
                                        'controller' => '\LeadersLinked\Controller\CompetencyTypeController',
2654
                                        'action' => 'delete'
2655
                                    ]
2656
                                ]
28 efrain 2657
                            ],
2658
                            'import' => [
2659
                                'type' => Literal::class,
2660
                                'options' => [
2661
                                    'route' => '/import',
2662
                                    'defaults' => [
2663
                                        'controller' => '\LeadersLinked\Controller\CompetencyTypeController',
2664
                                        'action' => 'import'
2665
                                    ]
2666
                                ]
2667
                            ],
1 www 2668
                        ]
2669
                    ],
1104 geraldo 2670
                    'behaviors' => [
2671
                        'type' => Literal::class,
2672
                        'options' => [
2673
                            'route' => '/behaviors',
2674
                            'defaults' => [
2675
                                'controller' => '\LeadersLinked\Controller\BehaviorsController',
2676
                                'action' => 'index'
2677
                            ]
2678
                        ],
2679
                        'may_terminate' => true,
2680
                        'child_routes' => [
2681
                            'add' => [
2682
                                'type' => Literal::class,
2683
                                'options' => [
14989 efrain 2684
                                    'route' => '/add[/inline/:inline]',
2685
                                    'constraints' => [
2686
                                        'inline' => 'yes|no'
2687
                                    ],
1104 geraldo 2688
                                    'defaults' => [
2689
                                        'controller' => '\LeadersLinked\Controller\BehaviorsController',
2690
                                        'action' => 'add'
2691
                                    ]
2692
                                ]
1115 geraldo 2693
                            ],
2694
                            'edit' => [
2695
                                'type' => Segment::class,
2696
                                'options' => [
2697
                                    'route' => '/edit/:id',
2698
                                    'constraints' => [
2699
                                        'id' => '[A-Za-z0-9\-]+\=*'
2700
                                    ],
2701
                                    'defaults' => [
2702
                                        'controller' => '\LeadersLinked\Controller\BehaviorsController',
2703
                                        'action' => 'edit'
2704
                                    ]
2705
                                ]
2706
                            ],
14280 kerby 2707
                            'delete' => [
2708
                                'type' => Segment::class,
2709
                                'options' => [
14875 efrain 2710
                                    'route' => '/delete/:id',
14280 kerby 2711
                                    'constraints' => [
14292 kerby 2712
                                        'id' => '[A-Za-z0-9\-]+\=*'
14280 kerby 2713
                                    ],
2714
                                    'defaults' => [
2715
                                        'controller' => '\LeadersLinked\Controller\BehaviorsController',
2716
                                        'action' => 'delete'
2717
                                    ]
2718
                                ]
14875 efrain 2719
                            ],
2720
                            'import' => [
2721
                                'type' => Literal::class,
2722
                                'options' => [
2723
                                    'route' => '/import',
2724
                                    'defaults' => [
2725
                                        'controller' => '\LeadersLinked\Controller\BehaviorsController',
2726
                                        'action' => 'import'
2727
                                    ]
2728
                                ]
2729
                            ],
2730
 
1104 geraldo 2731
                        ]
2732
                    ],
1 www 2733
                    'competencies' => [
2734
                        'type' => Literal::class,
2735
                        'options' => [
2736
                            'route' => '/competencies',
2737
                            'defaults' => [
2738
                                'controller' => '\LeadersLinked\Controller\CompetencyController',
2739
                                'action' => 'index'
2740
                            ]
2741
                        ],
2742
                        'may_terminate' => true,
2743
                        'child_routes' => [
2744
                            'add' => [
2745
                                'type' => Literal::class,
2746
                                'options' => [
2747
                                    'route' => '/add',
2748
                                    'defaults' => [
2749
                                        'controller' => '\LeadersLinked\Controller\CompetencyController',
2750
                                        'action' => 'add'
2751
                                    ]
2752
                                ]
2753
                            ],
2754
                            'edit' => [
2755
                                'type' => Segment::class,
2756
                                'options' => [
2757
                                    'route' => '/edit/:id',
2758
                                    'constraints' => [
2759
                                        'id' => '[A-Za-z0-9\-]+\=*'
2760
                                    ],
2761
                                    'defaults' => [
2762
                                        'controller' => '\LeadersLinked\Controller\CompetencyController',
2763
                                        'action' => 'edit'
2764
                                    ]
2765
                                ]
2766
                            ],
2767
                            'delete' => [
2768
                                'type' => Segment::class,
2769
                                'options' => [
2770
                                    'route' => '/delete/:id',
2771
                                    'constraints' => [
2772
                                        'id' => '[A-Za-z0-9\-]+\=*'
2773
                                    ],
2774
                                    'defaults' => [
2775
                                        'controller' => '\LeadersLinked\Controller\CompetencyController',
2776
                                        'action' => 'delete'
2777
                                    ]
2778
                                ]
28 efrain 2779
                            ],
2780
                            'import' => [
2781
                                'type' => Literal::class,
2782
                                'options' => [
2783
                                    'route' => '/import',
2784
                                    'defaults' => [
2785
                                        'controller' => '\LeadersLinked\Controller\CompetencyController',
2786
                                        'action' => 'import'
2787
                                    ]
2788
                                ]
2789
                            ],
14875 efrain 2790
                            'behaviors' => [
2791
                                'type' => Segment::class,
2792
                                'options' => [
2793
                                    'route' => '/behaviors/:id',
2794
                                    'constraints' => [
2795
                                        'id' => '[A-Za-z0-9\-]+\=*'
2796
                                    ],
2797
                                    'defaults' => [
2798
                                        'controller' => '\LeadersLinked\Controller\CompetencyController',
2799
                                        'action' => 'behaviors'
2800
                                    ]
2801
                                ],
2802
                                'child_routes' => [
2803
                                    'add' => [
2804
                                        'type' => Literal::class,
2805
                                        'options' => [
2806
                                            'route' => '/add',
2807
                                            'defaults' => [
2808
                                                'controller' => '\LeadersLinked\Controller\CompetencyController',
2809
                                                'action' => 'behaviorAdd'
2810
                                            ]
2811
                                        ]
2812
                                    ],
2813
                                    'set' => [
2814
                                        'type' => Segment::class,
2815
                                        'options' => [
2816
                                            'route' => '/set/:behavior_id',
2817
                                            'constraints' => [
2818
                                                'behavior_id' => '[A-Za-z0-9\-]+\=*'
2819
                                            ],
2820
                                            'defaults' => [
2821
                                                'controller' => '\LeadersLinked\Controller\CompetencyController',
2822
                                                'action' => 'behaviorSet'
2823
                                            ]
2824
                                        ]
2825
                                    ],
2826
                                    'unset' => [
2827
                                        'type' => Segment::class,
2828
                                        'options' => [
2829
                                            'route' => '/unset/:behavior_id',
2830
                                            'constraints' => [
2831
                                                'behavior_id' => '[A-Za-z0-9\-]+\=*'
2832
                                            ],
2833
                                            'defaults' => [
2834
                                                'controller' => '\LeadersLinked\Controller\CompetencyController',
2835
                                                'action' => 'behaviorUnset'
2836
                                            ]
2837
                                        ]
2838
                                    ],
2839
                                ]
2840
                            ],
1 www 2841
                        ]
2842
                    ],
14875 efrain 2843
 
1 www 2844
                    'degrees' => [
2845
                        'type' => Literal::class,
2846
                        'options' => [
2847
                            'route' => '/degrees',
2848
                            'defaults' => [
2849
                                'controller' => '\LeadersLinked\Controller\DegreeController',
2850
                                'action' => 'index'
2851
                            ]
2852
                        ],
2853
                        'may_terminate' => true,
2854
                        'child_routes' => [
2855
                            'add' => [
2856
                                'type' => Literal::class,
2857
                                'options' => [
2858
                                    'route' => '/add',
2859
                                    'defaults' => [
2860
                                        'controller' => '\LeadersLinked\Controller\DegreeController',
2861
                                        'action' => 'add'
2862
                                    ]
2863
                                ]
2864
                            ],
2865
                            'edit' => [
2866
                                'type' => Segment::class,
2867
                                'options' => [
2868
                                    'route' => '/edit/:id',
2869
                                    'constraints' => [
2870
                                        'id' => '[A-Za-z0-9\-]+\=*'
2871
                                    ],
2872
                                    'defaults' => [
2873
                                        'controller' => '\LeadersLinked\Controller\DegreeController',
2874
                                        'action' => 'edit'
2875
                                    ]
2876
                                ]
2877
                            ],
2878
                            'delete' => [
2879
                                'type' => Segment::class,
2880
                                'options' => [
2881
                                    'route' => '/delete/:id',
2882
                                    'constraints' => [
2883
                                        'id' => '[A-Za-z0-9\-]+\=*'
2884
                                    ],
2885
                                    'defaults' => [
2886
                                        'controller' => '\LeadersLinked\Controller\DegreeController',
2887
                                        'action' => 'delete'
2888
                                    ]
2889
                                ]
2890
                            ]
2891
                        ]
2892
                    ],
2893
                    'group-types' => [
2894
                        'type' => Literal::class,
2895
                        'options' => [
2896
                            'route' => '/competency-types',
2897
                            'defaults' => [
2898
                                'controller' => '\LeadersLinked\Controller\GroupTypeController',
2899
                                'action' => 'index'
2900
                            ]
2901
                        ],
2902
                        'may_terminate' => true,
2903
                        'child_routes' => [
2904
                            'add' => [
2905
                                'type' => Literal::class,
2906
                                'options' => [
2907
                                    'route' => '/add',
2908
                                    'defaults' => [
2909
                                        'controller' => '\LeadersLinked\Controller\GroupTypeController',
2910
                                        'action' => 'add'
2911
                                    ]
2912
                                ]
2913
                            ],
2914
                            'edit' => [
2915
                                'type' => Segment::class,
2916
                                'options' => [
2917
                                    'route' => '/edit/:id',
2918
                                    'constraints' => [
2919
                                        'id' => '[A-Za-z0-9\-]+\=*'
2920
                                    ],
2921
                                    'defaults' => [
2922
                                        'controller' => '\LeadersLinked\Controller\GroupTypeController',
2923
                                        'action' => 'edit'
2924
                                    ]
2925
                                ]
2926
                            ],
2927
                            'delete' => [
2928
                                'type' => Segment::class,
2929
                                'options' => [
2930
                                    'route' => '/delete/:id',
2931
                                    'constraints' => [
2932
                                        'id' => '[A-Za-z0-9\-]+\=*'
2933
                                    ],
2934
                                    'defaults' => [
2935
                                        'controller' => '\LeadersLinked\Controller\GroupTypeController',
2936
                                        'action' => 'delete'
2937
                                    ]
2938
                                ]
2939
                            ]
2940
                        ]
2941
                    ],
2942
                    'industries' => [
2943
                        'type' => Literal::class,
2944
                        'options' => [
2945
                            'route' => '/industries',
2946
                            'defaults' => [
2947
                                'controller' => '\LeadersLinked\Controller\IndustryController',
2948
                                'action' => 'index'
2949
                            ]
2950
                        ],
2951
                        'may_terminate' => true,
2952
                        'child_routes' => [
2953
                            'add' => [
2954
                                'type' => Literal::class,
2955
                                'options' => [
2956
                                    'route' => '/add',
2957
                                    'defaults' => [
2958
                                        'controller' => '\LeadersLinked\Controller\IndustryController',
2959
                                        'action' => 'add'
2960
                                    ]
2961
                                ]
2962
                            ],
2963
                            'edit' => [
2964
                                'type' => Segment::class,
2965
                                'options' => [
2966
                                    'route' => '/edit/:id',
2967
                                    'constraints' => [
2968
                                        'id' => '[A-Za-z0-9\-]+\=*'
2969
                                    ],
2970
                                    'defaults' => [
2971
                                        'controller' => '\LeadersLinked\Controller\IndustryController',
2972
                                        'action' => 'edit'
2973
                                    ]
2974
                                ]
2975
                            ],
2976
                            'delete' => [
2977
                                'type' => Segment::class,
2978
                                'options' => [
2979
                                    'route' => '/delete/:id',
2980
                                    'constraints' => [
2981
                                        'id' => '[A-Za-z0-9\-]+\=*'
2982
                                    ],
2983
                                    'defaults' => [
2984
                                        'controller' => '\LeadersLinked\Controller\IndustryController',
2985
                                        'action' => 'delete'
2986
                                    ]
2987
                                ]
2988
                            ]
2989
                        ]
2990
                    ],
2991
                    'group-types' => [
2992
                        'type' => Literal::class,
2993
                        'options' => [
2994
                            'route' => '/group-types',
2995
                            'defaults' => [
2996
                                'controller' => '\LeadersLinked\Controller\GroupTypeController',
2997
                                'action' => 'index'
2998
                            ]
2999
                        ],
3000
                        'may_terminate' => true,
3001
                        'child_routes' => [
3002
                            'add' => [
3003
                                'type' => Literal::class,
3004
                                'options' => [
3005
                                    'route' => '/add',
3006
                                    'defaults' => [
3007
                                        'controller' => '\LeadersLinked\Controller\GroupTypeController',
3008
                                        'action' => 'add'
3009
                                    ]
3010
                                ]
3011
                            ],
3012
                            'edit' => [
3013
                                'type' => Segment::class,
3014
                                'options' => [
3015
                                    'route' => '/edit/:id',
3016
                                    'constraints' => [
3017
                                        'id' => '[A-Za-z0-9\-]+\=*'
3018
                                    ],
3019
                                    'defaults' => [
3020
                                        'controller' => '\LeadersLinked\Controller\GroupTypeController',
3021
                                        'action' => 'edit'
3022
                                    ]
3023
                                ]
3024
                            ],
3025
                            'delete' => [
3026
                                'type' => Segment::class,
3027
                                'options' => [
3028
                                    'route' => '/delete/:id',
3029
                                    'constraints' => [
3030
                                        'id' => '[A-Za-z0-9\-]+\=*'
3031
                                    ],
3032
                                    'defaults' => [
3033
                                        'controller' => '\LeadersLinked\Controller\GroupTypeController',
3034
                                        'action' => 'delete'
3035
                                    ]
3036
                                ]
3037
                            ]
3038
                        ]
3039
                    ],
3040
                    'job-categories' => [
3041
                        'type' => Literal::class,
3042
                        'options' => [
3043
                            'route' => '/job-categories',
3044
                            'defaults' => [
3045
                                'controller' => '\LeadersLinked\Controller\JobCategoryController',
3046
                                'action' => 'index'
3047
                            ]
3048
                        ],
3049
                        'may_terminate' => true,
3050
                        'child_routes' => [
3051
                            'add' => [
3052
                                'type' => Literal::class,
3053
                                'options' => [
3054
                                    'route' => '/add',
3055
                                    'defaults' => [
3056
                                        'controller' => '\LeadersLinked\Controller\JobCategoryController',
3057
                                        'action' => 'add'
3058
                                    ]
3059
                                ]
3060
                            ],
3061
                            'edit' => [
3062
                                'type' => Segment::class,
3063
                                'options' => [
3064
                                    'route' => '/edit/:id',
3065
                                    'constraints' => [
3066
                                        'id' => '[A-Za-z0-9\-]+\=*'
3067
                                    ],
3068
                                    'defaults' => [
3069
                                        'controller' => '\LeadersLinked\Controller\JobCategoryController',
3070
                                        'action' => 'edit'
3071
                                    ]
3072
                                ]
3073
                            ],
3074
                            'delete' => [
3075
                                'type' => Segment::class,
3076
                                'options' => [
3077
                                    'route' => '/delete/:id',
3078
                                    'constraints' => [
3079
                                        'id' => '[A-Za-z0-9\-]+\=*'
3080
                                    ],
3081
                                    'defaults' => [
3082
                                        'controller' => '\LeadersLinked\Controller\JobCategoryController',
3083
                                        'action' => 'delete'
3084
                                    ]
3085
                                ]
3086
                            ]
3087
                        ]
3088
                    ],
28 efrain 3089
                    'jobs-description' => [
3090
                        'type' => Literal::class,
3091
                        'options' => [
3092
                            'route' => '/jobs-description',
3093
                            'defaults' => [
3094
                                'controller' => '\LeadersLinked\Controller\JobDescriptionController',
3095
                                'action' => 'index'
3096
                            ]
3097
                        ],
3098
                        'may_terminate' => true,
3099
                        'child_routes' => [
3100
                            'add' => [
3101
                                'type' => Literal::class,
3102
                                'options' => [
3103
                                    'route' => '/add',
3104
                                    'defaults' => [
3105
                                        'controller' => '\LeadersLinked\Controller\JobDescriptionController',
3106
                                        'action' => 'add'
3107
                                    ]
3108
                                ]
3109
                            ],
3110
                            'edit' => [
3111
                                'type' => Segment::class,
3112
                                'options' => [
3113
                                    'route' => '/edit/:id',
3114
                                    'constraints' => [
3115
                                        'id' => '[A-Za-z0-9\-]+\=*'
3116
                                    ],
3117
                                    'defaults' => [
3118
                                        'controller' => '\LeadersLinked\Controller\JobDescriptionController',
3119
                                        'action' => 'edit'
3120
                                    ]
3121
                                ]
3122
                            ],
3123
                            'delete' => [
3124
                                'type' => Segment::class,
3125
                                'options' => [
3126
                                    'route' => '/delete/:id',
3127
                                    'constraints' => [
3128
                                        'id' => '[A-Za-z0-9\-]+\=*'
3129
                                    ],
3130
                                    'defaults' => [
3131
                                        'controller' => '\LeadersLinked\Controller\JobDescriptionController',
3132
                                        'action' => 'delete'
3133
                                    ]
3134
                                ]
559 geraldo 3135
                            ],
3136
                            'report' => [
3137
                                'type' => Segment::class,
3138
                                'options' => [
3139
                                    'route' => '/report/:id',
3140
                                    'constraints' => [
3141
                                        'id' => '[A-Za-z0-9\-]+\=*'
3142
                                    ],
3143
                                    'defaults' => [
3144
                                        'controller' => '\LeadersLinked\Controller\JobDescriptionController',
3145
                                        'action' => 'report'
3146
                                    ]
3147
                                ]
3148
                            ],
846 geraldo 3149
                            'import' => [
3150
                                'type' => Literal::class,
3151
                                'options' => [
3152
                                    'route' => '/import',
3153
                                    'defaults' => [
3154
                                        'controller' => '\LeadersLinked\Controller\JobDescriptionController',
3155
                                        'action' => 'import'
3156
                                    ]
3157
                                ]
3158
                            ],
28 efrain 3159
                        ]
3160
                    ],
1 www 3161
                    'email-templates' => [
3162
                        'type' => Literal::class,
3163
                        'options' => [
3164
                            'route' => '/email-templates',
3165
                            'defaults' => [
3166
                                'controller' => '\LeadersLinked\Controller\EmailTemplateController',
3167
                                'action' => 'index'
3168
                            ]
3169
                        ],
3170
                        'may_terminate' => true,
3171
                        'child_routes' => [
3172
                            'edit' => [
3173
                                'type' => Segment::class,
3174
                                'options' => [
3175
                                    'route' => '/edit/:id',
3176
                                    'constraints' => [
3177
                                        'id' => '[A-Za-z0-9\-]+\=*'
3178
                                    ],
3179
                                    'defaults' => [
3180
                                        'controller' => '\LeadersLinked\Controller\EmailTemplateController',
3181
                                        'action' => 'edit'
3182
                                    ]
3183
                                ]
3184
                            ],
3185
                        ]
3186
                    ],
67 efrain 3187
                    'positions' => [
3188
                        'type' => Literal::class,
3189
                        'options' => [
3190
                            'route' => '/positions',
3191
                            'defaults' => [
3192
                                'controller' => '\LeadersLinked\Controller\PositionController',
3193
                                'action' => 'index'
3194
                            ]
3195
                        ],
3196
                        'may_terminate' => true,
3197
                        'child_routes' => [
3198
                            'add' => [
3199
                                'type' => Literal::class,
3200
                                'options' => [
3201
                                    'route' => '/add',
3202
                                    'defaults' => [
3203
                                        'controller' => '\LeadersLinked\Controller\PositionController',
3204
                                        'action' => 'add'
3205
                                    ]
3206
                                ]
3207
                            ],
3208
                            'edit' => [
3209
                                'type' => Segment::class,
3210
                                'options' => [
3211
                                    'route' => '/edit/:id',
3212
                                    'constraints' => [
3213
                                        'id' => '[A-Za-z0-9\-]+\=*'
3214
                                    ],
3215
                                    'defaults' => [
3216
                                        'controller' => '\LeadersLinked\Controller\PositionController',
3217
                                        'action' => 'edit'
3218
                                    ]
3219
                                ]
3220
                            ],
3221
                            'delete' => [
3222
                                'type' => Segment::class,
3223
                                'options' => [
3224
                                    'route' => '/delete/:id',
3225
                                    'constraints' => [
3226
                                        'id' => '[A-Za-z0-9\-]+\=*'
3227
                                    ],
3228
                                    'defaults' => [
3229
                                        'controller' => '\LeadersLinked\Controller\PositionController',
3230
                                        'action' => 'delete'
3231
                                    ]
3232
                                ]
3233
                            ],
1320 efrain 3234
                            'subordinates' => [
3235
                                'type' => Segment::class,
3236
                                'options' => [
3237
                                    'route' => '/subordinates/:job_description_id',
3238
                                    'constraints' => [
3239
                                        'job_description_id' => '[A-Za-z0-9\-]+\=*'
3240
                                    ],
3241
                                    'defaults' => [
3242
                                        'controller' => '\LeadersLinked\Controller\PositionController',
3243
                                        'action' => 'subordinates'
3244
                                    ]
3245
                                ]
3246
                            ],
67 efrain 3247
                        ]
3248
                    ],
1 www 3249
                    'push-templates' => [
3250
                        'type' => Literal::class,
3251
                        'options' => [
3252
                            'route' => '/push-templates',
3253
                            'defaults' => [
3254
                                'controller' => '\LeadersLinked\Controller\PushTemplateController',
3255
                                'action' => 'index'
3256
                            ]
3257
                        ],
3258
                        'may_terminate' => true,
3259
                        'child_routes' => [
3260
                            'edit' => [
3261
                                'type' => Segment::class,
3262
                                'options' => [
3263
                                    'route' => '/edit/:id',
3264
                                    'constraints' => [
3265
                                        'id' => '[A-Za-z0-9\-]+\=*'
3266
                                    ],
3267
                                    'defaults' => [
3268
                                        'controller' => '\LeadersLinked\Controller\PushTemplateController',
3269
                                        'action' => 'edit'
3270
                                    ]
3271
                                ]
3272
                            ],
15355 efrain 3273
                            'import' => [
3274
                                'type' => Literal::class,
3275
                                'options' => [
3276
                                    'route' => '/import',
3277
                                    'defaults' => [
3278
                                        'controller' => '\LeadersLinked\Controller\PushTemplateController',
3279
                                        'action' => 'import'
3280
                                    ]
3281
                                ]
3282
                            ],
1 www 3283
                        ]
3284
                    ],
3285
                    'skills' => [
3286
                        'type' => Literal::class,
3287
                        'options' => [
3288
                            'route' => '/skills',
3289
                            'defaults' => [
3290
                                'controller' => '\LeadersLinked\Controller\SkillController',
3291
                                'action' => 'index'
3292
                            ]
3293
                        ],
3294
                        'may_terminate' => true,
3295
                        'child_routes' => [
3296
                            'add' => [
3297
                                'type' => Literal::class,
3298
                                'options' => [
3299
                                    'route' => '/add',
3300
                                    'defaults' => [
3301
                                        'controller' => '\LeadersLinked\Controller\SkillController',
3302
                                        'action' => 'add'
3303
                                    ]
3304
                                ]
3305
                            ],
3306
                            'edit' => [
3307
                                'type' => Segment::class,
3308
                                'options' => [
3309
                                    'route' => '/edit/:id',
3310
                                    'constraints' => [
3311
                                        'id' => '[A-Za-z0-9\-]+\=*'
3312
                                    ],
3313
                                    'defaults' => [
3314
                                        'controller' => '\LeadersLinked\Controller\SkillController',
3315
                                        'action' => 'edit'
3316
                                    ]
3317
                                ]
3318
                            ],
3319
                            'delete' => [
3320
                                'type' => Segment::class,
3321
                                'options' => [
3322
                                    'route' => '/delete/:id',
3323
                                    'constraints' => [
3324
                                        'id' => '[A-Za-z0-9\-]+\=*'
3325
                                    ],
3326
                                    'defaults' => [
3327
                                        'controller' => '\LeadersLinked\Controller\SkillController',
3328
                                        'action' => 'delete'
3329
                                    ]
3330
                                ]
3331
                            ]
3332
                        ]
3333
                    ],
15392 efrain 3334
                    'aptitudes' => [
3335
                        'type' => Literal::class,
3336
                        'options' => [
3337
                            'route' => '/aptitudes',
3338
                            'defaults' => [
3339
                                'controller' => '\LeadersLinked\Controller\AptitudeController',
3340
                                'action' => 'index'
3341
                            ]
3342
                        ],
3343
                        'may_terminate' => true,
3344
                        'child_routes' => [
3345
                            'add' => [
3346
                                'type' => Literal::class,
3347
                                'options' => [
3348
                                    'route' => '/add',
3349
                                    'defaults' => [
3350
                                        'controller' => '\LeadersLinked\Controller\AptitudeController',
3351
                                        'action' => 'add'
3352
                                    ]
3353
                                ]
3354
                            ],
3355
                            'edit' => [
3356
                                'type' => Segment::class,
3357
                                'options' => [
3358
                                    'route' => '/edit/:id',
3359
                                    'constraints' => [
3360
                                        'id' => '[A-Za-z0-9\-]+\=*'
3361
                                    ],
3362
                                    'defaults' => [
3363
                                        'controller' => '\LeadersLinked\Controller\AptitudeController',
3364
                                        'action' => 'edit'
3365
                                    ]
3366
                                ]
3367
                            ],
3368
                            'delete' => [
3369
                                'type' => Segment::class,
3370
                                'options' => [
3371
                                    'route' => '/delete/:id',
3372
                                    'constraints' => [
3373
                                        'id' => '[A-Za-z0-9\-]+\=*'
3374
                                    ],
3375
                                    'defaults' => [
3376
                                        'controller' => '\LeadersLinked\Controller\AptitudeController',
3377
                                        'action' => 'delete'
3378
                                    ]
3379
                                ]
3380
                            ]
3381
                        ]
3382
                    ],
3383
                    'hobbies-and-interests' => [
3384
                        'type' => Literal::class,
3385
                        'options' => [
3386
                            'route' => '/hobbies-and-interests',
3387
                            'defaults' => [
3388
                                'controller' => '\LeadersLinked\Controller\HobbyAndInterestController',
3389
                                'action' => 'index'
3390
                            ]
3391
                        ],
3392
                        'may_terminate' => true,
3393
                        'child_routes' => [
3394
                            'add' => [
3395
                                'type' => Literal::class,
3396
                                'options' => [
3397
                                    'route' => '/add',
3398
                                    'defaults' => [
3399
                                        'controller' => '\LeadersLinked\Controller\HobbyAndInterestController',
3400
                                        'action' => 'add'
3401
                                    ]
3402
                                ]
3403
                            ],
3404
                            'edit' => [
3405
                                'type' => Segment::class,
3406
                                'options' => [
3407
                                    'route' => '/edit/:id',
3408
                                    'constraints' => [
3409
                                        'id' => '[A-Za-z0-9\-]+\=*'
3410
                                    ],
3411
                                    'defaults' => [
3412
                                        'controller' => '\LeadersLinked\Controller\HobbyAndInterestController',
3413
                                        'action' => 'edit'
3414
                                    ]
3415
                                ]
3416
                            ],
3417
                            'delete' => [
3418
                                'type' => Segment::class,
3419
                                'options' => [
3420
                                    'route' => '/delete/:id',
3421
                                    'constraints' => [
3422
                                        'id' => '[A-Za-z0-9\-]+\=*'
3423
                                    ],
3424
                                    'defaults' => [
3425
                                        'controller' => '\LeadersLinked\Controller\HobbyAndInterestController',
3426
                                        'action' => 'delete'
3427
                                    ]
3428
                                ]
3429
                            ]
3430
                        ]
3431
                    ],
1089 geraldo 3432
                ]
1 www 3433
            ],
1089 geraldo 3434
        /*         * * FIN SETTINGS ** */
1333 efrain 3435
 
3436
            'own-professional-network' => [
3437
                'type' => Literal::class,
3438
                'options' => [
3439
                    'route' => '/own-professional-network',
3440
                    'defaults' => [
3441
                        'controller' => '\LeadersLinked\Controller\UnknownController',
3442
                        'action' => 'index'
3443
                    ]
3444
                ],
3445
                'may_terminate' => true,
3446
                'child_routes' => [
3447
                ]
3448
            ],
3449
 
3450
            'organizational-design' => [
3451
                'type' => Literal::class,
3452
                'options' => [
3453
                    'route' => '/organizational-design',
3454
                    'defaults' => [
3455
                        'controller' => '\LeadersLinked\Controller\UnknownController',
3456
                        'action' => 'index'
3457
                    ]
3458
                ],
3459
                'may_terminate' => true,
3460
                'child_routes' => [
3461
                ]
3462
            ],
3463
 
3464
            'planning-objectives-and-goals' => [
3465
                'type' => Literal::class,
3466
                'options' => [
3467
                    'route' => '/planning-objectives-and-goals',
3468
                    'defaults' => [
2235 nelberth 3469
                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsController',
1951 nelberth 3470
                        'action' => 'index'
1333 efrain 3471
                    ]
3472
                ],
3473
                'may_terminate' => true,
3474
                'child_routes' => [
2238 nelberth 3475
                    'objectives' => [
2250 nelberth 3476
                        'type' => Literal::class,
1914 nelberth 3477
                        'options' => [
2248 nelberth 3478
                            'route' => '/objectives',
1914 nelberth 3479
                            'defaults' => [
2228 nelberth 3480
                                'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController',
2238 nelberth 3481
                                'action' => 'index'
1914 nelberth 3482
                            ]
2251 nelberth 3483
                        ],
3484
 
3485
                        'may_terminate' => true,
3486
                        'child_routes' => [
2324 nelberth 3487
 
2251 nelberth 3488
                            'add' => [
3489
                                'type' => Literal::class,
3490
                                'options' => [
3491
                                    'route' => '/add',
3492
                                    'defaults' => [
3493
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController',
3494
                                        'action' => 'add'
3495
                                    ]
3496
                                ]
3497
                            ],
3498
                            'edit' => [
3499
                                'type' => Segment::class,
3500
                                'options' => [
3501
                                    'route' => '/edit/:id',
3502
                                    'constraints' => [
3503
                                        'id' => '[A-Za-z0-9\-]+\=*'
3504
                                    ],
3505
                                    'defaults' => [
3506
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController',
3507
                                        'action' => 'edit'
3508
                                    ]
3509
                                ]
3510
                            ],
3511
                            'delete' => [
3512
                                'type' => Segment::class,
3513
                                'options' => [
3514
                                    'route' => '/delete/:id',
3515
                                    'constraints' => [
3516
                                        'id' => '[A-Za-z0-9\-]+\=*'
3517
                                    ],
3518
                                    'defaults' => [
3519
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController',
3520
                                        'action' => 'delete'
3521
                                    ]
3522
                                ]
2324 nelberth 3523
                            ],
3462 nelberth 3524
                            'report' => [
3525
                                'type' => Segment::class,
3526
                                'options' => [
3527
                                    'route' => '/report/:id',
3528
                                    'constraints' => [
3529
                                        'id' => '[A-Za-z0-9\-]+\=*'
3530
                                    ],
3531
                                    'defaults' => [
3532
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController',
3533
                                        'action' => 'report'
3534
                                    ]
3535
                                ]
3986 nelberth 3536
                            ],
3537
                            'reportall' => [
3538
                                'type' => Literal::class,
3539
                                'options' => [
3540
                                    'route' => '/reportall',
3541
                                    'defaults' => [
3542
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController',
3543
                                        'action' => 'reportall'
3544
                                    ]
3545
                                ]
3462 nelberth 3546
                            ],
4041 nelberth 3547
 
3548
                            'matriz' => [
3549
                                'type' => Literal::class,
3550
                                'options' => [
3551
                                    'route' => '/matriz',
3552
                                    'defaults' => [
3553
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController',
3554
                                        'action' => 'matriz'
3555
                                    ]
3556
                                ]
3557
                            ],
2324 nelberth 3558
                            'goals' => [
2336 nelberth 3559
                                'type' => Segment::class,
2324 nelberth 3560
                                'options' => [
11092 nelberth 3561
                                    'route' => '/:objective_id/goals',
2324 nelberth 3562
                                    'constraints' => [
11092 nelberth 3563
                                        'objective_id' => '[A-Za-z0-9\-]+\=*'
2324 nelberth 3564
                                    ],
3565
                                    'defaults' => [
3566
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsGoalsController',
3567
                                        'action' => 'index'
3568
                                    ]
2369 nelberth 3569
                                ],
2370 nelberth 3570
 
3571
                                'may_terminate' => true,
3572
                                'child_routes' => [
3573
                                    'add' => [
3574
                                        'type' => Literal::class,
3575
                                        'options' => [
3576
                                            'route' => '/add',
3577
                                            'defaults' => [
3578
                                                'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsGoalsController',
3579
                                                'action' => 'add'
3580
                                            ]
2369 nelberth 3581
                                        ]
2370 nelberth 3582
                                    ],
3583
                                    'edit' => [
3584
                                        'type' => Segment::class,
3585
                                        'options' => [
3586
                                            'route' => '/edit/:id',
3587
                                            'constraints' => [
3588
                                                'id' => '[A-Za-z0-9\-]+\=*'
3589
                                            ],
3590
                                            'defaults' => [
3591
                                                'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsGoalsController',
3592
                                                'action' => 'edit'
3593
                                            ]
2369 nelberth 3594
                                        ]
2370 nelberth 3595
                                    ],
3596
                                    'delete' => [
3597
                                        'type' => Segment::class,
3598
                                        'options' => [
3599
                                            'route' => '/delete/:id',
3600
                                            'constraints' => [
3601
                                                'id' => '[A-Za-z0-9\-]+\=*'
3602
                                            ],
3603
                                            'defaults' => [
3604
                                                'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsGoalsController',
3605
                                                'action' => 'delete'
3606
                                            ]
3607
                                        ]
3608
                                    ],
2517 nelberth 3609
                                    'task' => [
3610
                                        'type' => Segment::class,
3611
                                        'options' => [
11092 nelberth 3612
                                            'route' => '/:goal_id/task',
2517 nelberth 3613
                                            'constraints' => [
11092 nelberth 3614
                                                'goal_id' => '[A-Za-z0-9\-]+\=*'
2517 nelberth 3615
                                            ],
3616
                                            'defaults' => [
3617
                                                'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController',
3618
                                                'action' => 'index'
3619
                                            ]
3620
                                        ],
3621
 
3622
                                        'may_terminate' => true,
3623
                                        'child_routes' => [
3624
                                            'add' => [
3625
                                                'type' => Literal::class,
3626
                                                'options' => [
3627
                                                    'route' => '/add',
3628
                                                    'defaults' => [
3629
                                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController',
3630
                                                        'action' => 'add'
3631
                                                    ]
3632
                                                ]
3633
                                            ],
3634
                                            'edit' => [
3635
                                                'type' => Segment::class,
3636
                                                'options' => [
3637
                                                    'route' => '/edit/:id',
3638
                                                    'constraints' => [
3639
                                                        'id' => '[A-Za-z0-9\-]+\=*'
3640
                                                    ],
3641
                                                    'defaults' => [
3642
                                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController',
3643
                                                        'action' => 'edit'
3644
                                                    ]
3645
                                                ]
3646
                                            ],
3647
                                            'delete' => [
3648
                                                'type' => Segment::class,
3649
                                                'options' => [
3650
                                                    'route' => '/delete/:id',
3651
                                                    'constraints' => [
3652
                                                        'id' => '[A-Za-z0-9\-]+\=*'
3653
                                                    ],
3654
                                                    'defaults' => [
3655
                                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController',
3656
                                                        'action' => 'delete'
3657
                                                    ]
3658
                                                ]
3659
                                            ],
2822 nelberth 3660
                                            'view' => [
3661
                                                'type' => Segment::class,
3662
                                                'options' => [
3663
                                                    'route' => '/view/:id',
3664
                                                    'constraints' => [
3665
                                                        'id' => '[A-Za-z0-9\-]+\=*'
3666
                                                    ],
3667
                                                    'defaults' => [
3668
                                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController',
3669
                                                        'action' => 'view'
3670
                                                    ]
3671
                                                ]
3672
                                            ],
2517 nelberth 3673
                                    ]
3674
                                ],
2369 nelberth 3675
                            ]
2370 nelberth 3676
                        ],
1914 nelberth 3677
                        ]
2246 nelberth 3678
                    ]
2238 nelberth 3679
 
1333 efrain 3680
                ]
3681
            ],
3682
 
3683
            'development-and-training' => [
3684
                'type' => Literal::class,
3685
                'options' => [
3686
                    'route' => '/development-and-training',
3687
                    'defaults' => [
3688
                        'controller' => '\LeadersLinked\Controller\UnknownController',
3689
                        'action' => 'index'
3690
                    ]
3691
                ],
3692
                'may_terminate' => true,
3693
                'child_routes' => [
3694
                ]
3695
            ],
1477 efrain 3696
 
1333 efrain 3697
 
1477 efrain 3698
            'recruitment-and-selection' => [
1333 efrain 3699
                'type' => Literal::class,
3700
                'options' => [
1477 efrain 3701
                    'route' => '/recruitment-and-selection',
1333 efrain 3702
                    'defaults' => [
1477 efrain 3703
                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionController',
1333 efrain 3704
                        'action' => 'index'
3705
                    ]
3706
                ],
3707
                'may_terminate' => true,
3708
                'child_routes' => [
1477 efrain 3709
                    'vacancies' => [
1345 eleazar 3710
                        'type' => Literal::class,
3711
                        'options' => [
1477 efrain 3712
                            'route' => '/vacancies',
1345 eleazar 3713
                            'defaults' => [
1385 eleazar 3714
                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionVacancyController',
1345 eleazar 3715
                                'action' => 'index'
3716
                            ]
3717
                        ],
3718
                        'may_terminate' => true,
3719
                        'child_routes' => [
3720
                            'add' => [
3721
                                'type' => Literal::class,
3722
                                'options' => [
3723
                                    'route' => '/add',
3724
                                    'defaults' => [
1385 eleazar 3725
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionVacancyController',
1345 eleazar 3726
                                        'action' => 'add'
3727
                                    ]
3728
                                ]
3729
                            ],
3730
                            'edit' => [
3731
                                'type' => Segment::class,
3732
                                'options' => [
3733
                                    'route' => '/edit/:id',
3734
                                    'constraints' => [
3735
                                        'id' => '[A-Za-z0-9\-]+\=*'
3736
                                    ],
3737
                                    'defaults' => [
1385 eleazar 3738
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionVacancyController',
1345 eleazar 3739
                                        'action' => 'edit'
3740
                                    ]
3741
                                ]
3742
                            ],
3743
                            'delete' => [
3744
                                'type' => Segment::class,
3745
                                'options' => [
3746
                                    'route' => '/delete/:id',
3747
                                    'constraints' => [
3748
                                        'id' => '[A-Za-z0-9\-]+\=*'
3749
                                    ],
3750
                                    'defaults' => [
1385 eleazar 3751
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionVacancyController',
1345 eleazar 3752
                                        'action' => 'delete'
3753
                                    ]
3754
                                ]
3755
                            ]
3756
                        ]
3757
                    ],
1459 eleazar 3758
                    'candidates' => [
3759
                        'type' => Segment::class,
3760
                        'options' => [
1501 eleazar 3761
                            'route' => '/candidates[/:vacancy_uuid]',
1459 eleazar 3762
                            'constraints' => [
1508 eleazar 3763
                                'vacancy_uuid' => '[A-Za-z0-9\-]+\=*'
1459 eleazar 3764
                            ],
3765
                            'defaults' => [
3766
                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
1502 eleazar 3767
                                'action' => 'index',
1503 eleazar 3768
                                'vacancy_uuid' => '',
1459 eleazar 3769
                            ]
3770
                        ],
3771
                        'may_terminate' => true,
3772
                        'child_routes' => [
3773
                            'add' => [
3774
                                'type' => Literal::class,
3775
                                'options' => [
1506 eleazar 3776
                                    'route' => '/add',
1459 eleazar 3777
                                    'defaults' => [
3778
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
3779
                                        'action' => 'add'
3780
                                    ]
3781
                                ]
3782
                            ],
3783
                            'edit' => [
3784
                                'type' => Segment::class,
3785
                                'options' => [
3786
                                    'route' => '/edit/:id',
3787
                                    'constraints' => [
3788
                                        'id' => '[A-Za-z0-9\-]+\=*'
3789
                                    ],
3790
                                    'defaults' => [
3791
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
3792
                                        'action' => 'edit'
3793
                                    ]
3794
                                ]
3795
                            ],
3796
                            'delete' => [
3797
                                'type' => Segment::class,
3798
                                'options' => [
3799
                                    'route' => '/delete/:id',
3800
                                    'constraints' => [
3801
                                        'id' => '[A-Za-z0-9\-]+\=*'
3802
                                    ],
3803
                                    'defaults' => [
3804
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
3805
                                        'action' => 'delete'
3806
                                    ]
3807
                                ]
1630 eleazar 3808
                            ],
3809
                            'email' => [
3810
                                'type' => Literal::class,
3811
                                'options' => [
3812
                                    'route' => '/email',
3813
                                    'defaults' => [
3814
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
3815
                                        'action' => 'email'
3816
                                    ]
3817
                                ]
3818
                            ],
1459 eleazar 3819
                        ]
3820
                    ],
1635 eleazar 3821
                    'user-by-email' => [
3822
                        'type' => Literal::class,
3823
                        'options' => [
3824
                            'route' => '/user-by-email',
3825
                            'defaults' => [
3826
                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
3827
                                'action' => 'email'
3828
                            ]
3829
                        ]
1709 eleazar 3830
                    ],
3831
                    'interview' => [
3832
                        'type' => Segment::class,
3833
                        'options' => [
3834
                            'route' => '/interview',
3835
                            'defaults' => [
3836
                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewController',
3837
                                'action' => 'index',
3838
                            ],
3839
                        ],
3840
                        'may_terminate' => true,
3841
                        'child_routes' => [
3842
                            'form' => [
4351 eleazar 3843
                                'type' => Segment::class,
1709 eleazar 3844
                                'options' => [
4349 eleazar 3845
                                    'route' => '/form[/:vacancy_uuid]',
3846
                                    'constraints' => [
3847
                                        'vacancy_uuid' => '[A-Za-z0-9\-]+\=*'
3848
                                    ],
1709 eleazar 3849
                                    'defaults' => [
1711 eleazar 3850
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
2029 eleazar 3851
                                        'action' => 'index',
4352 eleazar 3852
                                        'vacancy_uuid' => '',
1709 eleazar 3853
                                    ],
3854
                                ],
3855
                                'may_terminate' => true,
3856
                                'child_routes' => [
3857
                                    'add' => [
2059 eleazar 3858
                                        'type' => Segment::class,
1709 eleazar 3859
                                        'options' => [
3563 eleazar 3860
                                            'route' => '/add',
1709 eleazar 3861
                                            'defaults' => [
1899 eleazar 3862
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
1709 eleazar 3863
                                                'action' => 'add'
3864
                                            ],
3865
                                        ],
3866
                                    ],
3867
                                    'edit' => [
2775 eleazar 3868
                                        'type' => Segment::class,
1709 eleazar 3869
                                        'options' => [
2764 eleazar 3870
                                            'route' => '/edit/:interview_uuid',
2765 eleazar 3871
                                            'constraints' => [
3872
                                                'interview_uuid' => '[A-Za-z0-9\-]+\=*'
3873
                                            ],
1709 eleazar 3874
                                            'defaults' => [
1944 eleazar 3875
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
1709 eleazar 3876
                                                'action' => 'edit'
3877
                                            ],
3878
                                        ],
3879
                                    ],
3880
                                    'delete' => [
2775 eleazar 3881
                                        'type' => Segment::class,
1709 eleazar 3882
                                        'options' => [
2764 eleazar 3883
                                            'route' => '/delete/:interview_uuid',
2765 eleazar 3884
                                            'constraints' => [
3885
                                                'interview_uuid' => '[A-Za-z0-9\-]+\=*'
3886
                                            ],
1709 eleazar 3887
                                            'defaults' => [
2766 eleazar 3888
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
1709 eleazar 3889
                                                'action' => 'delete'
3890
                                            ],
3891
                                        ],
3892
                                    ],
8781 eleazar 3893
                                ],
3894
                            ],
3895
                            'file' => [
3896
                                'type' => Segment::class,
3897
                                'options' => [
3898
                                    'route' => '/:interview_uuid/file',
3899
                                    'constraints' => [
3900
                                        'interview_uuid' => '[A-Za-z0-9\-]+\=*'
3901
                                    ],
3902
                                    'defaults' => [
3903
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFileController',
3904
                                        'action' => 'index'
3905
                                    ],
3906
                                ],
3907
                                'may_terminate' => true,
3908
                                'child_routes' => [
3909
                                    'add' => [
3910
                                        'type' => Literal::class,
3911
                                        'options' => [
3912
                                            'route' => '/add',
3913
                                            'defaults' => [
3914
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFileController',
3915
                                                'action' => 'add'
3916
                                            ]
3917
                                        ]
3918
                                    ],
3919
                                    'edit' => [
8779 eleazar 3920
                                        'type' => Segment::class,
3921
                                        'options' => [
8874 eleazar 3922
                                            'route' => '/edit/:id',
8779 eleazar 3923
                                            'constraints' => [
8781 eleazar 3924
                                                'id' => '[A-Za-z0-9\-]+\=*'
8779 eleazar 3925
                                            ],
3926
                                            'defaults' => [
3927
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFileController',
8781 eleazar 3928
                                                'action' => 'edit'
3929
                                            ]
3930
                                        ]
3931
                                    ],
3932
                                    'delete' => [
3933
                                        'type' => Segment::class,
3934
                                        'options' => [
8874 eleazar 3935
                                            'route' => '/delete/:id',
8781 eleazar 3936
                                            'constraints' => [
3937
                                                'id' => '[A-Za-z0-9\-]+\=*'
8779 eleazar 3938
                                            ],
8781 eleazar 3939
                                            'defaults' => [
3940
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFileController',
3941
                                                'action' => 'delete'
8779 eleazar 3942
                                            ]
3943
                                        ]
8874 eleazar 3944
                                    ],
8781 eleazar 3945
                                ]
1709 eleazar 3946
                            ],
3947
                            'report' =>[
3948
                                'type' => Segment::class,
3949
                                'options' => [
2864 eleazar 3950
                                    'route' => '/report/:interview_uuid',
3951
                                    'constraints' => [
3952
                                        'interview_uuid' => '[A-Za-z0-9\-]+\=*'
3953
                                    ],
1709 eleazar 3954
                                    'defaults' => [
2864 eleazar 3955
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
3956
                                        'action' => 'report',
1709 eleazar 3957
                                    ],
3958
                                ],
3959
                            ],
3571 eleazar 3960
                            'vacancy' =>[
3961
                                'type' => Segment::class,
3962
                                'options' => [
3963
                                    'route' => '/vacancy/:vacancy_uuid',
3964
                                    'constraints' => [
3965
                                        'vacancy_uuid' => '[A-Za-z0-9\-]+\=*'
3966
                                    ],
3967
                                    'defaults' => [
3968
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
3969
                                        'action' => 'vacancy',
3970
                                    ],
3971
                                ],
3972
                            ],
4367 eleazar 3973
                            'type' =>[
4365 eleazar 3974
                                'type' => Segment::class,
3975
                                'options' => [
4367 eleazar 3976
                                    'route' => '/type/:candidate_uuid',
4365 eleazar 3977
                                    'constraints' => [
3978
                                        'candidate_uuid' => '[A-Za-z0-9\-]+\=*'
3979
                                    ],
3980
                                    'defaults' => [
3981
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
4367 eleazar 3982
                                        'action' => 'type',
4365 eleazar 3983
                                    ],
3984
                                ],
3985
                            ],
1709 eleazar 3986
                        ],
8779 eleazar 3987
                    ],
1459 eleazar 3988
                ],
1333 efrain 3989
            ],
3990
 
3991
            'induction' => [
3992
                'type' => Literal::class,
3993
                'options' => [
3994
                    'route' => '/induction',
3995
                    'defaults' => [
3996
                        'controller' => '\LeadersLinked\Controller\UnknownController',
3997
                        'action' => 'index'
3998
                    ]
3999
                ],
4000
                'may_terminate' => true,
4001
                'child_routes' => [
4002
                ]
4003
            ],
4004
 
4005
            'organizational-climate' => [
4006
                'type' => Literal::class,
4007
                'options' => [
4008
                    'route' => '/organizational-climate',
4009
                    'defaults' => [
7218 eleazar 4010
                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateController',
1333 efrain 4011
                        'action' => 'index'
4012
                    ]
4013
                ],
4014
                'may_terminate' => true,
4015
                'child_routes' => [
7218 eleazar 4016
                    'add' => [
4017
                        'type' => Segment::class,
4018
                        'options' => [
4019
                            'route' => '/add',
4020
                            'defaults' => [
7295 eleazar 4021
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateController',
7218 eleazar 4022
                                'action' => 'add'
4023
                            ],
4024
                        ],
4025
                    ],
4026
                    'edit' => [
4027
                        'type' => Segment::class,
4028
                        'options' => [
4029
                            'route' => '/edit/:id',
4030
                            'defaults' => [
7295 eleazar 4031
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateController',
7218 eleazar 4032
                                'action' => 'edit'
4033
                            ],
4034
                        ],
4035
                    ],
4036
                    'delete' => [
4037
                        'type' => Segment::class,
4038
                        'options' => [
4039
                            'route' => '/delete/:id',
4040
                            'defaults' => [
7295 eleazar 4041
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateController',
7218 eleazar 4042
                                'action' => 'delete'
4043
                            ],
4044
                        ],
4045
                    ],
4046
                    'segment' => [
4047
                        'type' => Segment::class,
4048
                        'options' => [
4049
                            'route' => '/segment/:id',
8536 efrain 4050
                            'constraints' => [
4051
                                'id' => '[A-Za-z0-9\-]+\=*'
4052
                            ],
7218 eleazar 4053
                            'defaults' => [
7295 eleazar 4054
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateController',
7218 eleazar 4055
                                'action' => 'segment'
4056
                            ],
4057
                        ],
4058
                    ],
4059
                    'form' => [
4060
                        'type' => Segment::class,
4061
                        'options' => [
4062
                            'route' => '/form',
4063
                            'defaults' => [
7295 eleazar 4064
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateFormController',
7218 eleazar 4065
                                'action' => 'index',
4066
                            ],
4067
                        ],
4068
                        'may_terminate' => true,
4069
                        'child_routes' => [
4070
                            'add' => [
4071
                                'type' => Segment::class,
4072
                                'options' => [
4073
                                    'route' => '/add',
4074
                                    'defaults' => [
7295 eleazar 4075
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateFormController',
7218 eleazar 4076
                                        'action' => 'add'
4077
                                    ],
4078
                                ],
4079
                            ],
4080
                            'edit' => [
4081
                                'type' => Segment::class,
4082
                                'options' => [
4083
                                    'route' => '/edit/:id',
4084
                                    'constraints' => [
4085
                                        'id' => '[A-Za-z0-9\-]+\=*'
4086
                                    ],
4087
                                    'defaults' => [
7295 eleazar 4088
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateFormController',
7218 eleazar 4089
                                        'action' => 'edit'
4090
                                    ]
4091
                                ]
4092
                            ],
4093
                            'delete' => [
4094
                                'type' => Segment::class,
4095
                                'options' => [
4096
                                    'route' => '/delete/:id',
4097
                                    'constraints' => [
4098
                                        'id' => '[A-Za-z0-9\-]+\=*'
4099
                                    ],
4100
                                    'defaults' => [
7295 eleazar 4101
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateFormController',
7218 eleazar 4102
                                        'action' => 'delete'
4103
                                    ]
4104
                                ]
4105
                            ]
4106
                        ],
4107
                    ],
4108
                    'test' => [
4109
                        'type' => Segment::class,
4110
                        'options' => [
14187 efrain 4111
                            'route' => '/test[/:organizational_climate_id]',
7218 eleazar 4112
                            'constraints' => [
14187 efrain 4113
                                'organizational_climate_id' => '[A-Za-z0-9\-]+\=*'
7218 eleazar 4114
                            ],
4115
                            'defaults' => [
7295 eleazar 4116
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateTestController',
7218 eleazar 4117
                                'action' => 'index',
14187 efrain 4118
                                'organizational_climate_id' => '',
7218 eleazar 4119
                            ],
4120
                        ],
4121
                        'may_terminate' => true,
4122
                        'child_routes' => [
4123
                            'add' => [
4124
                                'type' => Segment::class,
4125
                                'options' => [
4126
                                    'route' => '/add',
4127
                                    'defaults' => [
7295 eleazar 4128
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateTestController',
7218 eleazar 4129
                                        'action' => 'add',
4130
                                    ],
4131
                                ],
4132
                            ],
4133
                            'report' => [
4134
                                'type' => Segment::class,
4135
                                'options' => [
4136
                                    'route' => '/report/:uuid',
4137
                                    'defaults' => [
7295 eleazar 4138
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateTestController',
7218 eleazar 4139
                                        'action' => 'report',
4140
                                    ],
4141
                                ],
4142
                            ],
4143
                            'delete' => [
4144
                                'type' => Segment::class,
4145
                                'options' => [
4146
                                    'route' => '/delete/:id',
4147
                                    'defaults' => [
7295 eleazar 4148
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateTestController',
7218 eleazar 4149
                                        'action' => 'delete'
4150
                                    ]
4151
                                ]
4152
                            ]
4153
                        ],
4154
                    ],
4155
                    'report' => [
4156
                        'type' => Segment::class,
4157
                        'options' => [
14187 efrain 4158
                            'route' => '/report[/:organizational_climate_id]',
7218 eleazar 4159
                            'constraints' => [
14187 efrain 4160
                                'organizational_climate_id' => '[A-Za-z0-9\-]+\=*'
7218 eleazar 4161
                            ],
4162
                            'defaults' => [
7295 eleazar 4163
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateReportController',
7218 eleazar 4164
                                'action' => 'index',
14187 efrain 4165
                                'organizational_climate_id' => '',
7218 eleazar 4166
                            ],
4167
                        ],
4168
                        'may_terminate' => true,
4169
                        'child_routes' => [
4170
                            'all' => [
4171
                                'type' => Segment::class,
4172
                                'options' => [
4173
                                    'route' => '/all',
4174
                                    'defaults' => [
7295 eleazar 4175
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateReportController',
7218 eleazar 4176
                                        'action' => 'all',
4177
                                    ]
4178
                                ]
4179
                            ],
4180
                            'overview' => [
4181
                                'type' => Segment::class,
4182
                                'options' => [
4183
                                    'route' => '/overview',
4184
                                    'defaults' => [
7295 eleazar 4185
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateReportController',
7218 eleazar 4186
                                        'action' => 'overview',
4187
                                    ]
4188
                                ]
4189
                            ],
15149 efrain 4190
                            'excel' => [
7218 eleazar 4191
                                'type' => Segment::class,
4192
                                'options' => [
15149 efrain 4193
                                    'route' => '/excel',
7218 eleazar 4194
                                    'defaults' => [
7295 eleazar 4195
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateReportController',
15149 efrain 4196
                                        'action' => 'excel',
7218 eleazar 4197
                                    ]
4198
                                ]
4199
                            ],
4200
                        ],
4201
                    ],
4202
                ],
1333 efrain 4203
            ],
4204
 
4205
            'culture' => [
4206
                'type' => Literal::class,
4207
                'options' => [
4208
                    'route' => '/culture',
4209
                    'defaults' => [
4210
                        'controller' => '\LeadersLinked\Controller\UnknownController',
4211
                        'action' => 'index'
4212
                    ]
4213
                ],
4214
                'may_terminate' => true,
4215
                'child_routes' => [
4216
                ]
4217
            ],
13524 nelberth 4218
            'inmail' => [
13553 nelberth 4219
                'type' => Literal::class,
1333 efrain 4220
                'options' => [
13553 nelberth 4221
                    'route' => '/inmail',
4222
 
1333 efrain 4223
                    'defaults' => [
13528 nelberth 4224
                        'controller' => '\LeadersLinked\Controller\InMailController',
13170 nelberth 4225
                        'action' => 'index'
1333 efrain 4226
                    ]
4227
                ],
4228
                'may_terminate' => true,
4229
                'child_routes' => [
13760 nelberth 4230
                    'sendall' => [
4231
                        'type' => Literal::class,
4232
                        'options' => [
4233
                            'route' => '/sendall',
4234
                            'defaults' => [
13761 nelberth 4235
                                'controller' => '\LeadersLinked\Controller\InMailController',
13760 nelberth 4236
                                'action' => 'sendAll'
4237
                            ]
4238
                        ]
4239
                    ],
13524 nelberth 4240
                    'search-people' => [
4241
                        'type' => Literal::class,
13013 nelberth 4242
                        'options' => [
13524 nelberth 4243
                            'route' => '/search-people',
13013 nelberth 4244
                            'defaults' => [
13528 nelberth 4245
                                'controller' => '\LeadersLinked\Controller\InMailController',
13524 nelberth 4246
                                'action' => 'searchPeople'
13028 nelberth 4247
                            ]
13524 nelberth 4248
                        ]
4249
                    ],
13553 nelberth 4250
                    'view' => [
4251
                        'type' => Segment::class,
13524 nelberth 4252
                        'options' => [
13553 nelberth 4253
                            'route' => '/view[/:id]',
4254
                            'constraints' => [
4255
                                'id' => '[A-Za-z0-9\-]+\=*',
4256
                            ],
13524 nelberth 4257
                            'defaults' => [
13528 nelberth 4258
                                'controller' => '\LeadersLinked\Controller\InMailController',
13553 nelberth 4259
                                'action' => 'view'
13524 nelberth 4260
                            ]
13028 nelberth 4261
                        ],
4262
                        'may_terminate' => true,
4263
                        'child_routes' => [
13553 nelberth 4264
                            'message' => [
4265
                                'type' => Literal::class,
13028 nelberth 4266
                                'options' => [
13553 nelberth 4267
                                    'route' => '/message',
13028 nelberth 4268
                                    'defaults' => [
13528 nelberth 4269
                                        'controller' => '\LeadersLinked\Controller\InMailController',
13553 nelberth 4270
                                        'action' => 'message'
13028 nelberth 4271
                                    ]
13553 nelberth 4272
                                ],
4273
                                'may_terminate' => true,
4274
                                'child_routes' => [
4275
                                    'send' => [
4276
                                        'type' => Segment::class,
4277
                                        'options' => [
4278
                                            'route' => '/send[/encoding/:encoding]',
4279
                                            'constraints' => [
4280
                                                'encoding' => 'base64'
4281
                                            ],
4282
                                            'defaults' => [
4283
                                                'controller' => '\LeadersLinked\Controller\InMailController',
4284
                                                'action' => 'sendMessage'
4285
                                            ]
4286
                                        ]
4287
                                    ],
4288
                                ],
13013 nelberth 4289
                            ],
13553 nelberth 4290
                        ]
13013 nelberth 4291
                    ],
13778 nelberth 4292
                    'company' => [
4293
                        'type' => Segment::class,
4294
                        'options' => [
13798 nelberth 4295
                            'route' => '/company[/id/:id][/type/:type]',
13778 nelberth 4296
                            'constraints' => [
4297
                                'id' => '[A-Za-z0-9\-]+\=*',
13798 nelberth 4298
                                'type'=>'company',
13778 nelberth 4299
                            ],
4300
                            'defaults' => [
4301
                                'controller' => '\LeadersLinked\Controller\InMailController',
4302
                                'action' => 'view'
4303
                            ]
4304
                        ],
4305
                        'may_terminate' => true,
4306
                        'child_routes' => [
4307
                            'message' => [
4308
                                'type' => Literal::class,
4309
                                'options' => [
4310
                                    'route' => '/message',
4311
                                    'defaults' => [
4312
                                        'controller' => '\LeadersLinked\Controller\InMailController',
4313
                                        'action' => 'message'
4314
                                    ]
4315
                                ],
4316
                                'may_terminate' => true,
4317
                                'child_routes' => [
4318
                                    'send' => [
4319
                                        'type' => Segment::class,
4320
                                        'options' => [
4321
                                            'route' => '/send[/encoding/:encoding]',
4322
                                            'constraints' => [
4323
                                                'encoding' => 'base64'
4324
                                            ],
4325
                                            'defaults' => [
4326
                                                'controller' => '\LeadersLinked\Controller\InMailController',
4327
                                                'action' => 'sendMessage'
4328
                                            ]
4329
                                        ]
4330
                                    ],
4331
                                ],
4332
                            ],
4333
                        ]
4334
                    ],
13553 nelberth 4335
 
13524 nelberth 4336
                ],
4337
            ],
4338
 
4339
 
4340
            'communication' => [
4341
                'type' => Literal::class,
4342
                'options' => [
4343
                    'route' => '/communication',
4344
                    'defaults' => [
4345
                        'controller' => '\LeadersLinked\Controller\CommunicationController',
4346
                        'action' => 'index'
4347
                    ]
4348
                ],
4349
                'may_terminate' => true,
4350
                'child_routes' => [
13672 nelberth 4351
                    'inbox' => [
13652 nelberth 4352
                        'type' => Literal::class,
4353
                        'options' => [
13672 nelberth 4354
                            'route' => '/inbox',
13652 nelberth 4355
 
4356
                            'defaults' => [
13672 nelberth 4357
                                'controller' => '\LeadersLinked\Controller\CommunicationInboxController',
13652 nelberth 4358
                                'action' => 'index'
4359
                            ]
4360
                        ],
4361
                        'may_terminate' => true,
4362
                        'child_routes' => [
13732 nelberth 4363
                            'sendall' => [
4364
                                'type' => Literal::class,
4365
                                'options' => [
4366
                                    'route' => '/sendall',
4367
                                    'defaults' => [
4368
                                        'controller' => '\LeadersLinked\Controller\CommunicationInboxController',
4369
                                        'action' => 'sendAll'
4370
                                    ]
4371
                                ]
4372
                            ],
13652 nelberth 4373
                            'search-people' => [
4374
                                'type' => Literal::class,
4375
                                'options' => [
4376
                                    'route' => '/search-people',
4377
                                    'defaults' => [
13672 nelberth 4378
                                        'controller' => '\LeadersLinked\Controller\CommunicationInboxController',
13652 nelberth 4379
                                        'action' => 'searchPeople'
4380
                                    ]
4381
                                ]
4382
                            ],
4383
                            'view' => [
4384
                                'type' => Segment::class,
4385
                                'options' => [
4386
                                    'route' => '/view[/:id]',
4387
                                    'constraints' => [
4388
                                        'id' => '[A-Za-z0-9\-]+\=*',
4389
                                    ],
4390
                                    'defaults' => [
13672 nelberth 4391
                                        'controller' => '\LeadersLinked\Controller\CommunicationInboxController',
13652 nelberth 4392
                                        'action' => 'view'
4393
                                    ]
4394
                                ],
4395
                                'may_terminate' => true,
4396
                                'child_routes' => [
4397
                                    'message' => [
4398
                                        'type' => Literal::class,
4399
                                        'options' => [
4400
                                            'route' => '/message',
4401
                                            'defaults' => [
13672 nelberth 4402
                                                'controller' => '\LeadersLinked\Controller\CommunicationInboxController',
13652 nelberth 4403
                                                'action' => 'message'
4404
                                            ]
4405
                                        ],
4406
                                        'may_terminate' => true,
4407
                                        'child_routes' => [
4408
                                            'send' => [
4409
                                                'type' => Segment::class,
4410
                                                'options' => [
4411
                                                    'route' => '/send[/encoding/:encoding]',
4412
                                                    'constraints' => [
4413
                                                        'encoding' => 'base64'
4414
                                                    ],
4415
                                                    'defaults' => [
13672 nelberth 4416
                                                        'controller' => '\LeadersLinked\Controller\CommunicationInboxController',
13652 nelberth 4417
                                                        'action' => 'sendMessage'
4418
                                                    ]
4419
                                                ]
4420
                                            ],
4421
                                        ],
4422
                                    ],
4423
                                ]
4424
                            ],
4425
 
4426
                        ],
4427
                    ],
13028 nelberth 4428
 
1333 efrain 4429
                ]
4430
            ],
4431
 
4432
            'career-development' => [
4433
                'type' => Literal::class,
4434
                'options' => [
4435
                    'route' => '/career-development',
4436
                    'defaults' => [
4437
                        'controller' => '\LeadersLinked\Controller\UnknownController',
4438
                        'action' => 'index'
4439
                    ]
4440
                ],
4441
                'may_terminate' => true,
4442
                'child_routes' => [
4443
                ]
4444
            ],
4445
 
4386 eleazar 4446
            'survey' => [
1333 efrain 4447
                'type' => Literal::class,
4448
                'options' => [
4397 eleazar 4449
                    'route' => '/survey',
1333 efrain 4450
                    'defaults' => [
4375 eleazar 4451
                        'controller' => '\LeadersLinked\Controller\SurveyController',
1333 efrain 4452
                        'action' => 'index'
4453
                    ]
4454
                ],
4455
                'may_terminate' => true,
4456
                'child_routes' => [
4579 eleazar 4457
                    'add' => [
4458
                        'type' => Segment::class,
4459
                        'options' => [
4460
                            'route' => '/add',
4461
                            'defaults' => [
4462
                                'controller' => '\LeadersLinked\Controller\SurveyController',
4463
                                'action' => 'add'
4464
                            ],
4465
                        ],
4466
                    ],
4467
                    'edit' => [
4468
                        'type' => Segment::class,
4469
                        'options' => [
4470
                            'route' => '/edit/:id',
4471
                            'defaults' => [
4472
                                'controller' => '\LeadersLinked\Controller\SurveyController',
4473
                                'action' => 'edit'
4474
                            ],
4475
                        ],
4476
                    ],
4477
                    'delete' => [
4478
                        'type' => Segment::class,
4479
                        'options' => [
4480
                            'route' => '/delete/:id',
4481
                            'defaults' => [
4482
                                'controller' => '\LeadersLinked\Controller\SurveyController',
4483
                                'action' => 'delete'
4484
                            ],
4485
                        ],
4486
                    ],
4487
                    'segment' => [
4488
                        'type' => Segment::class,
4489
                        'options' => [
4490
                            'route' => '/segment/:id',
4491
                            'defaults' => [
4492
                                'controller' => '\LeadersLinked\Controller\SurveyController',
4493
                                'action' => 'segment'
4494
                            ],
4495
                        ],
4496
                    ],
4374 eleazar 4497
                    'form' => [
4498
                        'type' => Segment::class,
4499
                        'options' => [
4500
                            'route' => '/form',
4501
                            'defaults' => [
4375 eleazar 4502
                                'controller' => '\LeadersLinked\Controller\SurveyFormController',
4374 eleazar 4503
                                'action' => 'index',
4504
                            ],
4505
                        ],
4506
                        'may_terminate' => true,
4507
                        'child_routes' => [
4508
                            'add' => [
4509
                                'type' => Segment::class,
4510
                                'options' => [
4511
                                    'route' => '/add',
4512
                                    'defaults' => [
4375 eleazar 4513
                                        'controller' => '\LeadersLinked\Controller\SurveyFormController',
4374 eleazar 4514
                                        'action' => 'add'
4515
                                    ],
4516
                                ],
4517
                            ],
4518
                            'edit' => [
4519
                                'type' => Segment::class,
4520
                                'options' => [
4521
                                    'route' => '/edit/:id',
4522
                                    'constraints' => [
4523
                                        'id' => '[A-Za-z0-9\-]+\=*'
4524
                                    ],
4525
                                    'defaults' => [
4375 eleazar 4526
                                        'controller' => '\LeadersLinked\Controller\SurveyFormController',
4374 eleazar 4527
                                        'action' => 'edit'
4528
                                    ]
4529
                                ]
4530
                            ],
4531
                            'delete' => [
4532
                                'type' => Segment::class,
4533
                                'options' => [
4534
                                    'route' => '/delete/:id',
4535
                                    'constraints' => [
4536
                                        'id' => '[A-Za-z0-9\-]+\=*'
4537
                                    ],
4538
                                    'defaults' => [
4375 eleazar 4539
                                        'controller' => '\LeadersLinked\Controller\SurveyFormController',
4374 eleazar 4540
                                        'action' => 'delete'
4541
                                    ]
4542
                                ]
4543
                            ]
4544
                        ],
4545
                    ],
5287 eleazar 4546
                    'test' => [
4547
                        'type' => Segment::class,
4548
                        'options' => [
5884 eleazar 4549
                            'route' => '/test[/:survey_id]',
4550
                            'constraints' => [
4551
                                'survey_id' => '[A-Za-z0-9\-]+\=*'
4552
                            ],
5287 eleazar 4553
                            'defaults' => [
4554
                                'controller' => '\LeadersLinked\Controller\SurveyTestController',
4555
                                'action' => 'index',
5884 eleazar 4556
                                'survey_id' => '',
5287 eleazar 4557
                            ],
4558
                        ],
4559
                        'may_terminate' => true,
4560
                        'child_routes' => [
4561
                            'add' => [
4562
                                'type' => Segment::class,
4563
                                'options' => [
6036 eleazar 4564
                                    'route' => '/add',
5287 eleazar 4565
                                    'defaults' => [
4566
                                        'controller' => '\LeadersLinked\Controller\SurveyTestController',
5732 eleazar 4567
                                        'action' => 'add',
5287 eleazar 4568
                                    ],
4569
                                ],
4570
                            ],
6662 eleazar 4571
                            'report' => [
4572
                                'type' => Segment::class,
4573
                                'options' => [
6882 eleazar 4574
                                    'route' => '/report/:uuid',
6662 eleazar 4575
                                    'defaults' => [
4576
                                        'controller' => '\LeadersLinked\Controller\SurveyTestController',
4577
                                        'action' => 'report',
4578
                                    ],
4579
                                ],
4580
                            ],
5287 eleazar 4581
                            'delete' => [
4582
                                'type' => Segment::class,
4583
                                'options' => [
6882 eleazar 4584
                                    'route' => '/delete/:id',
5287 eleazar 4585
                                    'defaults' => [
4586
                                        'controller' => '\LeadersLinked\Controller\SurveyTestController',
4587
                                        'action' => 'delete'
4588
                                    ]
4589
                                ]
4590
                            ]
4591
                        ],
4592
                    ],
5823 eleazar 4593
                    'report' => [
4594
                        'type' => Segment::class,
4595
                        'options' => [
5911 eleazar 4596
                            'route' => '/report[/:survey_id]',
4597
                            'constraints' => [
4598
                                'survey_id' => '[A-Za-z0-9\-]+\=*'
4599
                            ],
5823 eleazar 4600
                            'defaults' => [
4601
                                'controller' => '\LeadersLinked\Controller\SurveyReportController',
4602
                                'action' => 'index',
5911 eleazar 4603
                                'survey_id' => '',
5823 eleazar 4604
                            ],
4605
                        ],
4606
                        'may_terminate' => true,
4607
                        'child_routes' => [
4608
                            'all' => [
4609
                                'type' => Segment::class,
4610
                                'options' => [
5868 eleazar 4611
                                    'route' => '/all',
5823 eleazar 4612
                                    'defaults' => [
4613
                                        'controller' => '\LeadersLinked\Controller\SurveyReportController',
5868 eleazar 4614
                                        'action' => 'all',
5823 eleazar 4615
                                    ]
4616
                                ]
4617
                            ],
6496 eleazar 4618
                            'overview' => [
4619
                                'type' => Segment::class,
4620
                                'options' => [
4621
                                    'route' => '/overview',
4622
                                    'defaults' => [
4623
                                        'controller' => '\LeadersLinked\Controller\SurveyReportController',
4624
                                        'action' => 'overview',
4625
                                    ]
4626
                                ]
4627
                            ],
15149 efrain 4628
                            'excel' => [
7024 eleazar 4629
                                'type' => Segment::class,
4630
                                'options' => [
15149 efrain 4631
                                    'route' => '/excel',
7024 eleazar 4632
                                    'defaults' => [
4633
                                        'controller' => '\LeadersLinked\Controller\SurveyReportController',
15149 efrain 4634
                                        'action' => 'excel',
7024 eleazar 4635
                                    ]
4636
                                ]
4637
                            ],
5823 eleazar 4638
                        ],
4639
                    ],
1333 efrain 4640
                ]
4641
            ],
4642
 
4643
            'building-my-future' => [
4644
                'type' => Literal::class,
4645
                'options' => [
4646
                    'route' => '/building-my-future',
4647
                    'defaults' => [
4648
                        'controller' => '\LeadersLinked\Controller\UnknownController',
4649
                        'action' => 'index'
4650
                    ]
4651
                ],
4652
                'may_terminate' => true,
4653
                'child_routes' => [
4654
                ]
4655
            ],
11431 nelberth 4656
 
4657
            'csrf' => [
4658
                'type' => Literal::class,
4659
                'options' => [
4660
                    'route' => '/csrf',
4661
                    'defaults' => [
14692 efrain 4662
                        'controller' => '\LeadersLinked\Controller\DashboardController',
11431 nelberth 4663
                        'action' => 'csrf'
4664
                    ]
4665
                ]
4666
            ],
11340 nelberth 4667
            'chat' => [
4668
                'type' => Literal::class,
4669
                'options' => [
4670
                    'route' => '/chat',
4671
                    'defaults' => [
4672
                        'controller' => '\LeadersLinked\Controller\ChatController',
4673
                        'action' => 'index'
4674
                    ]
4675
                ],
4676
                'may_terminate' => true,
4677
                'child_routes' => [
4678
                    // Inicio de los Routes del Chat //
7184 nelberth 4679
 
11340 nelberth 4680
                    'heart-beat' => [
4681
                        'type' => Literal::class,
4682
                        'options' => [
4683
                            'route' => '/heart-beat',
4684
                            'defaults' => [
4685
                                'controller' => '\LeadersLinked\Controller\ChatController',
4686
                                'action' => 'heartBeat',
4687
                            ],
4688
                        ],
4689
                    ],
4690
                    'create-group' => [
4691
                        'type' => Literal::class,
4692
                        'options' => [
4693
                            'route' => '/create-group',
4694
                            'defaults' => [
4695
                                'controller' => '\LeadersLinked\Controller\ChatController',
4696
                                'action' => 'createGroup',
4697
                            ],
4698
                        ],
4699
                    ],
4700
                    'add-user-to-group' => [
4701
                        'type' => Segment::class,
4702
                        'options' => [
4703
                            'route' => '/add-user-to-group/:group_id',
4704
                            'constraints' => [
4705
                                'group_id' => '[A-Za-z0-9\-]+\=*',
4706
                            ],
4707
                            'defaults' => [
4708
                                'controller' => '\LeadersLinked\Controller\ChatController',
4709
                                'action' => 'addUserToGroup',
4710
                            ],
4711
                        ],
4712
                    ],
4713
                    'mark-seen' => [
4714
                        'type' => Segment::class,
4715
                        'options' => [
4716
                            'route' => '/mark-seen/:id',
4717
                            'constraints' => [
4718
                                'id' => '[A-Za-z0-9\-]+\=*',
4719
                            ],
4720
                            'defaults' => [
4721
                                'controller' => '\LeadersLinked\Controller\ChatController',
4722
                                'action' => 'markSeen',
4723
                            ],
4724
                        ],
4725
                    ],
4726
                    'mark-received' => [
4727
                        'type' => Segment::class,
4728
                        'options' => [
4729
                            'route' => '/mark-received/:id',
4730
                            'constraints' => [
4731
                                'id' => '[A-Za-z0-9\-]+\=*',
4732
                            ],
4733
                            'defaults' => [
4734
                                'controller' => '\LeadersLinked\Controller\ChatController',
4735
                                'action' => 'markReceived',
4736
                            ],
4737
                        ],
4738
                    ],
4739
                    'remove-user-from-group' => [
4740
                        'type' => Segment::class,
4741
                        'options' => [
4742
                            'route' => '/remove-user-from-group/:group_id/:user_id',
4743
                            'constraints' => [
4744
                                'group_id' => '[A-Za-z0-9\-]+\=*',
4745
                                'user_id' => '[A-Za-z0-9\-]+\=*',
4746
                            ],
4747
                            'defaults' => [
4748
                                'controller' => '\LeadersLinked\Controller\ChatController',
4749
                                'action' => 'removeUserFromGroup',
4750
                            ],
4751
                        ],
4752
                    ],
4753
                    'get-all-messages' => [
4754
                        'type' => Segment::class,
4755
                        'options' => [
4756
                            'route' => '/get-all-messages/:id',
4757
                            'constraints' => [
4758
                                'id' => '[A-Za-z0-9\-]+\=*',
4759
                            ],
4760
                            'defaults' => [
4761
                                'controller' => '\LeadersLinked\Controller\ChatController',
4762
                                'action' => 'getAllMessages',
4763
                            ],
4764
                        ],
4765
                    ],
4766
                    'send' => [
4767
                        'type' => Segment::class,
4768
                        'options' => [
4769
                            'route' => '/send/:id',
4770
                            'constraints' => [
4771
                                'id' => '[A-Za-z0-9\-]+\=*',
4772
                            ],
4773
                            'defaults' => [
4774
                                'controller' => '\LeadersLinked\Controller\ChatController',
4775
                                'action' => 'send',
4776
                            ],
4777
                        ],
4778
                    ],
4779
                    'get-contacts-availables-for-group' => [
4780
                        'type' => Segment::class,
4781
                        'options' => [
4782
                            'route' => '/get-contacts-availables-for-group/:group_id',
4783
                            'constraints' => [
4784
                                'group_id' => '[A-Za-z0-9\-]+\=*',
4785
                            ],
4786
                            'defaults' => [
4787
                                'controller' => '\LeadersLinked\Controller\ChatController',
4788
                                'action' => 'contactAvailableGroupList',
4789
                            ],
4790
                        ],
4791
                    ],
4792
                    'get-contact-group-list' => [
4793
                        'type' => Segment::class,
4794
                        'options' => [
4795
                            'route' => '/get-contact-group-list/:group_id',
4796
                            'constraints' => [
4797
                                'group_id' => '[A-Za-z0-9\-]+\=*',
4798
                            ],
4799
                            'defaults' => [
4800
                                'controller' => '\LeadersLinked\Controller\ChatController',
4801
                                'action' => 'contactGroupList',
4802
                            ],
4803
                        ],
4804
                    ],
4805
                    'leave-group' => [
4806
                        'type' => Segment::class,
4807
                        'options' => [
4808
                            'route' => '/leave-group/:group_id',
4809
                            'constraints' => [
4810
                                'group_id' => '[A-Za-z0-9\-]+\=*',
4811
                            ],
4812
                            'defaults' => [
4813
                                'controller' => '\LeadersLinked\Controller\ChatController',
4814
                                'action' => 'leaveGroup',
4815
                            ],
4816
                        ],
4817
                    ],
4818
                    'delete-group' => [
4819
                        'type' => Segment::class,
4820
                        'options' => [
4821
                            'route' => '/delete-group/:group_id',
4822
                            'constraints' => [
4823
                                'group_id' => '[A-Za-z0-9\-]+\=*',
4824
                            ],
4825
                            'defaults' => [
4826
                                'controller' => '\LeadersLinked\Controller\ChatController',
4827
                                'action' => 'deleteGroup',
4828
                            ],
4829
                        ],
4830
                    ],
14692 efrain 4831
                    'open' => [
4832
                        'type' => Segment::class,
4833
                        'options' => [
4834
                            'route' => '/open/:id',
4835
                            'constraints' => [
4836
                                'id' => '[A-Za-z0-9\-]+\=*',
4837
                            ],
4838
                            'defaults' => [
4839
                                'controller' => '\LeadersLinked\Controller\ChatController',
4840
                                'action' => 'open',
4841
                            ],
4842
                        ],
4843
                    ],
11340 nelberth 4844
                    'close' => [
4845
                        'type' => Segment::class,
4846
                        'options' => [
4847
                            'route' => '/close/:id',
4848
                            'constraints' => [
4849
                                'id' => '[A-Za-z0-9\-]+\=*',
4850
                            ],
4851
                            'defaults' => [
4852
                                'controller' => '\LeadersLinked\Controller\ChatController',
4853
                                'action' => 'close',
4854
                            ],
4855
                        ],
4856
                    ],
4857
                    'clear' => [
4858
                        'type' => Segment::class,
4859
                        'options' => [
4860
                            'route' => '/clear/:id',
4861
                            'constraints' => [
4862
                                'id' => '[A-Za-z0-9\-]+\=*',
4863
                            ],
4864
                            'defaults' => [
4865
                                'controller' => '\LeadersLinked\Controller\ChatController',
4866
                                'action' => 'clear',
4867
                            ],
4868
                        ],
4869
                    ],
4870
                    'upload' => [
4871
                        'type' => Segment::class,
4872
                        'options' => [
4873
                            'route' => '/upload/:id',
4874
                            'constraints' => [
4875
                                'id' => '[A-Za-z0-9\-]+\=*',
4876
                            ],
4877
                            'defaults' => [
4878
                                'controller' => '\LeadersLinked\Controller\ChatController',
4879
                                'action' => 'upload',
4880
                            ],
4881
                        ],
4882
                    ],
4883
                ],
4884
            ],
7224 nelberth 4885
 
1333 efrain 4886
            'high-performance-teams' => [
4887
                'type' => Literal::class,
4888
                'options' => [
4591 nelberth 4889
                    'route' => '/high-performance-teams',
4588 nelberth 4890
                    'defaults' => [
4376 nelberth 4891
                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsController',
1333 efrain 4892
                        'action' => 'index'
4893
                    ]
4894
                ],
4895
                'may_terminate' => true,
4896
                'child_routes' => [
7240 nelberth 4897
                    'groups' => [
4388 nelberth 4898
                        'type' => Literal::class,
4899
                        'options' => [
7224 nelberth 4900
                            'route' => '/groups',
4388 nelberth 4901
                            'defaults' => [
7224 nelberth 4902
                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsController',
4388 nelberth 4903
                                'action' => 'index'
4904
                            ]
4411 nelberth 4905
                        ],'may_terminate' => true,
4906
                        'child_routes' => [
4907
 
4908
                            'add' => [
4909
                                'type' => Literal::class,
4910
                                'options' => [
4911
                                    'route' => '/add',
4912
                                    'defaults' => [
7224 nelberth 4913
                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsController',
4411 nelberth 4914
                                        'action' => 'add'
4915
                                    ]
4916
                                ]
4917
                            ],
4918
                            'edit' => [
4919
                                'type' => Segment::class,
4920
                                'options' => [
11082 nelberth 4921
                                    'route' => '/edit/:group_id',
4411 nelberth 4922
                                    'constraints' => [
11082 nelberth 4923
                                        'group_id' => '[A-Za-z0-9\-]+\=*'
4411 nelberth 4924
                                    ],
4925
                                    'defaults' => [
7224 nelberth 4926
                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsController',
4411 nelberth 4927
                                        'action' => 'edit'
4928
                                    ]
4929
                                ]
4930
                            ],
4931
                            'delete' => [
4932
                                'type' => Segment::class,
4933
                                'options' => [
11082 nelberth 4934
                                    'route' => '/delete/:group_id',
4411 nelberth 4935
                                    'constraints' => [
11082 nelberth 4936
                                        'group_id' => '[A-Za-z0-9\-]+\=*'
4411 nelberth 4937
                                    ],
4938
                                    'defaults' => [
7224 nelberth 4939
                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsController',
4411 nelberth 4940
                                        'action' => 'delete'
4941
                                    ]
4942
                                ]
7261 nelberth 4943
                            ],'view' => [
4509 nelberth 4944
                                'type' => Segment::class,
4945
                                'options' => [
11082 nelberth 4946
                                    'route' => '/view/:group_id',
4509 nelberth 4947
                                    'constraints' => [
11082 nelberth 4948
                                        'group_id' => '[A-Za-z0-9\-]+\=*',
4509 nelberth 4949
                                    ],
4950
                                    'defaults' => [
7308 nelberth 4951
                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewController',
4571 nelberth 4952
                                        'action' => 'index'
4509 nelberth 4953
                                    ]
7483 nelberth 4954
                                ],
4955
                                    'may_terminate' => true,
4956
                                    'child_routes' => [
12408 nelberth 4957
                                        'objectives' => [
11902 nelberth 4958
                                            'type' => Literal::class,
4959
                                            'options' => [
12408 nelberth 4960
                                                'route' => '/objectives',
4961
                                                'defaults' => [
12433 nelberth 4962
                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController',
12408 nelberth 4963
                                                    'action' => 'index'
4964
                                                ]
4965
                                            ],
4966
 
4967
                                            'may_terminate' => true,
4968
                                            'child_routes' => [
4969
 
4970
                                                'add' => [
4971
                                                    'type' => Literal::class,
4972
                                                    'options' => [
4973
                                                        'route' => '/add',
4974
                                                        'defaults' => [
12675 nelberth 4975
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController',
12408 nelberth 4976
                                                            'action' => 'add'
4977
                                                        ]
4978
                                                    ]
4979
                                                ],
4980
                                                'edit' => [
4981
                                                    'type' => Segment::class,
4982
                                                    'options' => [
4983
                                                        'route' => '/edit/:id',
4984
                                                        'constraints' => [
4985
                                                            'id' => '[A-Za-z0-9\-]+\=*'
4986
                                                        ],
4987
                                                        'defaults' => [
12675 nelberth 4988
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController',
12408 nelberth 4989
                                                            'action' => 'edit'
4990
                                                        ]
4991
                                                    ]
4992
                                                ],
4993
                                                'delete' => [
4994
                                                    'type' => Segment::class,
4995
                                                    'options' => [
4996
                                                        'route' => '/delete/:id',
4997
                                                        'constraints' => [
4998
                                                            'id' => '[A-Za-z0-9\-]+\=*'
4999
                                                        ],
5000
                                                        'defaults' => [
12675 nelberth 5001
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController',
12408 nelberth 5002
                                                            'action' => 'delete'
5003
                                                        ]
5004
                                                    ]
5005
                                                ],
5006
                                                'report' => [
5007
                                                    'type' => Segment::class,
5008
                                                    'options' => [
5009
                                                        'route' => '/report/:id',
5010
                                                        'constraints' => [
5011
                                                            'id' => '[A-Za-z0-9\-]+\=*'
5012
                                                        ],
5013
                                                        'defaults' => [
12675 nelberth 5014
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController',
12408 nelberth 5015
                                                            'action' => 'report'
5016
                                                        ]
5017
                                                    ]
5018
                                                ],
5019
                                                'reportall' => [
5020
                                                    'type' => Literal::class,
5021
                                                    'options' => [
5022
                                                        'route' => '/reportall',
5023
                                                        'defaults' => [
12675 nelberth 5024
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController',
12408 nelberth 5025
                                                            'action' => 'reportall'
5026
                                                        ]
5027
                                                    ]
5028
                                                ],
5029
 
5030
                                                'matriz' => [
5031
                                                    'type' => Literal::class,
5032
                                                    'options' => [
5033
                                                        'route' => '/matriz',
5034
                                                        'defaults' => [
12675 nelberth 5035
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController',
12408 nelberth 5036
                                                            'action' => 'matriz'
5037
                                                        ]
5038
                                                    ]
5039
                                                ],
5040
                                                'goals' => [
5041
                                                    'type' => Segment::class,
5042
                                                    'options' => [
5043
                                                        'route' => '/:objective_id/goals',
5044
                                                        'constraints' => [
5045
                                                            'objective_id' => '[A-Za-z0-9\-]+\=*'
5046
                                                        ],
5047
                                                        'defaults' => [
12736 nelberth 5048
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewGoalsController',
12408 nelberth 5049
                                                            'action' => 'index'
5050
                                                        ]
5051
                                                    ],
5052
 
5053
                                                    'may_terminate' => true,
5054
                                                    'child_routes' => [
5055
                                                        'add' => [
5056
                                                            'type' => Literal::class,
5057
                                                            'options' => [
5058
                                                                'route' => '/add',
5059
                                                                'defaults' => [
12736 nelberth 5060
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewGoalsController',
12408 nelberth 5061
                                                                    'action' => 'add'
5062
                                                                ]
5063
                                                            ]
5064
                                                        ],
5065
                                                        'edit' => [
5066
                                                            'type' => Segment::class,
5067
                                                            'options' => [
5068
                                                                'route' => '/edit/:id',
5069
                                                                'constraints' => [
5070
                                                                    'id' => '[A-Za-z0-9\-]+\=*'
5071
                                                                ],
5072
                                                                'defaults' => [
12736 nelberth 5073
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewGoalsController',
12408 nelberth 5074
                                                                    'action' => 'edit'
5075
                                                                ]
5076
                                                            ]
5077
                                                        ],
5078
                                                        'delete' => [
5079
                                                            'type' => Segment::class,
5080
                                                            'options' => [
5081
                                                                'route' => '/delete/:id',
5082
                                                                'constraints' => [
5083
                                                                    'id' => '[A-Za-z0-9\-]+\=*'
5084
                                                                ],
5085
                                                                'defaults' => [
12736 nelberth 5086
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewGoalsController',
12408 nelberth 5087
                                                                    'action' => 'delete'
5088
                                                                ]
5089
                                                            ]
5090
                                                        ],
5091
                                                        'task' => [
5092
                                                            'type' => Segment::class,
5093
                                                            'options' => [
5094
                                                                'route' => '/:goal_id/task',
5095
                                                                'constraints' => [
5096
                                                                    'goal_id' => '[A-Za-z0-9\-]+\=*'
5097
                                                                ],
5098
                                                                'defaults' => [
12829 nelberth 5099
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController',
12408 nelberth 5100
                                                                    'action' => 'index'
5101
                                                                ]
5102
                                                            ],
5103
 
5104
                                                            'may_terminate' => true,
5105
                                                            'child_routes' => [
5106
                                                                'add' => [
5107
                                                                    'type' => Literal::class,
5108
                                                                    'options' => [
5109
                                                                        'route' => '/add',
5110
                                                                        'defaults' => [
12829 nelberth 5111
                                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController',
12408 nelberth 5112
                                                                            'action' => 'add'
5113
                                                                        ]
5114
                                                                    ]
5115
                                                                ],
5116
                                                                'edit' => [
5117
                                                                    'type' => Segment::class,
5118
                                                                    'options' => [
5119
                                                                        'route' => '/edit/:id',
5120
                                                                        'constraints' => [
5121
                                                                            'id' => '[A-Za-z0-9\-]+\=*'
5122
                                                                        ],
5123
                                                                        'defaults' => [
12829 nelberth 5124
                                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController',
12408 nelberth 5125
                                                                            'action' => 'edit'
5126
                                                                        ]
5127
                                                                    ]
5128
                                                                ],
5129
                                                                'delete' => [
5130
                                                                    'type' => Segment::class,
5131
                                                                    'options' => [
5132
                                                                        'route' => '/delete/:id',
5133
                                                                        'constraints' => [
5134
                                                                            'id' => '[A-Za-z0-9\-]+\=*'
5135
                                                                        ],
5136
                                                                        'defaults' => [
12829 nelberth 5137
                                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController',
12408 nelberth 5138
                                                                            'action' => 'delete'
5139
                                                                        ]
5140
                                                                    ]
5141
                                                                ],
5142
                                                                'view' => [
5143
                                                                    'type' => Segment::class,
5144
                                                                    'options' => [
5145
                                                                        'route' => '/view/:id',
5146
                                                                        'constraints' => [
5147
                                                                            'id' => '[A-Za-z0-9\-]+\=*'
5148
                                                                        ],
5149
                                                                        'defaults' => [
12829 nelberth 5150
                                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController',
12408 nelberth 5151
                                                                            'action' => 'view'
5152
                                                                        ]
5153
                                                                    ]
5154
                                                                ],
5155
                                                        ]
5156
                                                    ],
5157
                                                ]
5158
                                            ],
5159
                                            ]
5160
                                        ]
5161
                                        ,'feeds' => [
5162
                                            'type' => Literal::class,
5163
                                            'options' => [
11902 nelberth 5164
                                                'route' => '/feeds',
11908 nelberth 5165
 
11902 nelberth 5166
                                            ],
5167
                                            'may_terminate' => true,
5168
                                            'child_routes' => [
5169
                                                'timeline' => [
5170
                                                    'type' => Segment::class,
5171
                                                    'options' => [
11914 nelberth 5172
                                                        'route' => '/timeline[/urgent/:urgent][/topic_id/:topic_id]',
11902 nelberth 5173
                                                        'constraints' => [
5174
                                                            'hptg_id'=>'[A-Za-z0-9\-]+\=*',
5175
                                                            'topic_id' => '[A-Za-z0-9\-]+\=*',
5176
                                                            'urgent' => 'u',
5177
                                                        ],
5178
                                                        'defaults' => [
5179
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController',
5180
                                                            'action' => 'timeline'
5181
                                                        ]
5182
                                                    ]
5183
                                                ],
5184
                                                'onefeed' => [
5185
                                                    'type' => Segment::class,
5186
                                                    'options' => [
11997 nelberth 5187
                                                        'route' => '/onefeed[/:feed_id][/:topic_id]',
11902 nelberth 5188
                                                        'constraints' => [
5189
                                                            'group_id' => '[A-Za-z0-9\-]+\=*',
5190
                                                            'feed_id' => '[A-Za-z0-9\-]+\=*',
5191
                                                            'topic_id' => '[A-Za-z0-9\-]+\=*',
5192
                                                        ],
5193
                                                        'defaults' => [
5194
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController',
5195
                                                            'action' => 'oneFeed'
5196
                                                        ]
5197
                                                    ]
5198
                                                ],
5199
                                                'delete' => [
5200
                                                    'type' => Segment::class,
5201
                                                    'options' => [
5202
                                                        'route' => '/delete/:id',
5203
                                                        'constraints' => [
5204
                                                            'id' => '[A-Za-z0-9\-]+\=*',
5205
                                                        ],
5206
                                                        'defaults' => [
5207
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController',
5208
                                                            'action' => 'delete'
5209
                                                        ],
5210
                                                    ]
5211
                                                ],
5212
                                                'comments' => [
5213
                                                    'type' => Segment::class,
5214
                                                    'options' => [
5215
                                                        'route' => '/comments/:id',
5216
                                                        'constraints' => [
5217
                                                            'id' => '[A-Za-z0-9\-]+\=*',
5218
                                                        ],
5219
                                                        'defaults' => [
5220
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController',
5221
                                                            'action' => 'comment'
5222
                                                        ],
5223
                                                    ],
5224
                                                    'may_terminate' => true,
5225
                                                    'child_routes' => [
5226
                                                        'delete' => [
5227
                                                            'type' => Segment::class,
5228
                                                            'options' => [
5229
                                                                'route' => '/delete/:comment',
5230
                                                                'constraints' => [
5231
                                                                    'comment' => '[A-Za-z0-9\-]+\=*',
5232
                                                                ],
5233
                                                                'defaults' => [
5234
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController',
5235
                                                                    'action' => 'commentDelete'
5236
                                                                ]
5237
                                                            ]
5238
                                                        ],
5239
 
5240
                                                        'answer' => [
5241
                                                            'type' => Segment::class,
5242
                                                            'options' => [
5243
                                                                'route' => '/answer/:comment',
5244
                                                                'constraints' => [
5245
                                                                    'comment' => '[A-Za-z0-9\-]+\=*',
5246
                                                                ],
5247
                                                                'defaults' => [
5248
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController',
5249
                                                                    'action' => 'answer'
5250
                                                                ]
5251
                                                            ]
5252
                                                        ],
5253
                                                    ]
5254
                                                ],
5255
                                                'add' => [
5256
                                                    'type' => Segment::class,
5257
                                                    'options' => [
13857 nelberth 5258
                                                        'route' => '/add[/group/:group_id][/encoding/:encoding][/topic_id/:topic_id]',
11902 nelberth 5259
                                                        'constraints' => [
5260
                                                            'group_id' => '[A-Za-z0-9\-]+\=*',
5261
                                                            'topic_id' => '[A-Za-z0-9\-]+\=*',
5262
                                                            'encoding' => 'base64'
5263
                                                        ],
5264
                                                        'defaults' => [
5265
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController',
5266
                                                            'action' => 'add'
5267
                                                        ]
5268
                                                    ]
5269
                                                ],
5270
                                            ],
5271
                                        ],
7811 nelberth 5272
                                        'members' => [
7823 nelberth 5273
                                            'type' => Literal::class,
7811 nelberth 5274
                                            'options' => [
5275
                                                'route' => '/members',
5276
                                                'defaults' => [
5277
                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController',
5278
                                                    'action' => 'index'
5279
                                                ]
8012 nelberth 5280
                                            ],'may_terminate' => true,
5281
                                            'child_routes' => [
5282
                                                'invite' => [
5283
                                                    'type' => Segment::class,
5284
                                                    'options' => [
11083 nelberth 5285
                                                        'route' => '/invite/:user_id',
8054 nelberth 5286
                                                        'constraints' => [
11083 nelberth 5287
                                                            'user_id' => '[A-Za-z0-9\-]+\=*'
8054 nelberth 5288
                                                        ],
8012 nelberth 5289
                                                        'defaults' => [
5290
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController',
5291
                                                            'action' => 'invite'
5292
                                                        ]
5293
                                                    ]
5294
                                                ],
5295
                                                'edit' => [
5296
                                                    'type' => Segment::class,
5297
                                                    'options' => [
11083 nelberth 5298
                                                        'route' => '/edit/:user_id',
8012 nelberth 5299
                                                        'constraints' => [
11083 nelberth 5300
                                                            'user_id' => '[A-Za-z0-9\-]+\=*'
8012 nelberth 5301
                                                        ],
5302
                                                        'defaults' => [
5303
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController',
5304
                                                            'action' => 'edit'
5305
                                                        ]
5306
                                                    ]
5307
                                                ],
8054 nelberth 5308
                                                'delete' => [
8012 nelberth 5309
                                                    'type' => Segment::class,
5310
                                                    'options' => [
11083 nelberth 5311
                                                        'route' => '/delete[/:user_id]',
8012 nelberth 5312
                                                        'constraints' => [
11083 nelberth 5313
                                                            'user_id' => '[A-Za-z0-9\-]+\=*'
8012 nelberth 5314
                                                        ],
5315
                                                        'defaults' => [
5316
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController',
8054 nelberth 5317
                                                            'action' => 'delete'
8012 nelberth 5318
                                                        ]
5319
                                                    ]
5320
                                                ],
5321
                                            ]
7811 nelberth 5322
                                        ],
8686 nelberth 5323
                                        'urgent' => [
8702 nelberth 5324
                                            'type' => Segment::class,
5325
                                            'options' => [
5326
                                                'route' => '/urgent[/:urgent]',
5327
                                                'constraints' => [
5328
                                                    'urgent' => 'u'
8686 nelberth 5329
                                                ],
8702 nelberth 5330
                                                'defaults' => [
5331
                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewController',
5332
                                                    'action' => 'index'
5333
                                                ]
5334
                                            ]
5335
                                        ],
9095 nelberth 5336
                                        'calendar' => [
9924 nelberth 5337
                                            'type' => Literal::class,
9095 nelberth 5338
                                            'options' => [
9924 nelberth 5339
                                                'route' => '/calendar',
5340
 
9095 nelberth 5341
                                                'defaults' => [
5342
                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewCalendarController',
5343
                                                    'action' => 'index'
5344
                                                ]
9923 nelberth 5345
                                            ],'may_terminate' => true,
5346
                                            'child_routes' => [
5347
                                                'view' => [
9924 nelberth 5348
                                                    'type' => Segment::class,
9923 nelberth 5349
                                                    'options' => [
11083 nelberth 5350
                                                        'route' => '/view[/:feed_id]',
9924 nelberth 5351
                                                        'constraints' => [
11083 nelberth 5352
                                                            'feed_id' => '[A-Za-z0-9\-]+\=*'
9924 nelberth 5353
                                                        ],
9923 nelberth 5354
                                                        'defaults' => [
5355
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewCalendarController',
5356
                                                            'action' => 'view'
5357
                                                        ]
5358
                                                    ]
5359
                                                ],
9095 nelberth 5360
                                            ]
5361
                                        ],
9631 nelberth 5362
                                        'foro' => [
9621 nelberth 5363
                                            'type' => Literal::class,
9424 nelberth 5364
                                            'options' => [
9631 nelberth 5365
                                                'route' => '/foro',
10143 nelberth 5366
                                                'defaults' => [
5367
                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoController',
5368
                                                    'action' => 'index'
5369
                                                ]
9644 nelberth 5370
                                            ],
5371
                                            'may_terminate' => true,
9631 nelberth 5372
                                            'child_routes' => [
10150 nelberth 5373
                                                'view' => [
5374
                                                    'type' => Literal::class,
5375
                                                    'options' => [
5376
                                                        'route' => '/view',
5377
                                                        'defaults' => [
5378
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoController',
5379
                                                            'action' => 'view'
5380
                                                        ]
5381
                                                    ]
5382
                                                ],
9631 nelberth 5383
                                                'categories' => [
5384
                                                    'type' => Literal::class,
5385
                                                    'options' => [
5386
                                                        'route' => '/categories',
5387
                                                        'defaults' => [
5388
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController',
5389
                                                            'action' => 'index'
5390
                                                        ]
9638 nelberth 5391
                                                    ],
9644 nelberth 5392
                                                    'may_terminate' => true,
9640 nelberth 5393
                                                    'child_routes' => [
9720 nelberth 5394
                                                        'view' => [
5395
                                                            'type' => Literal::class,
5396
                                                            'options' => [
5397
                                                                'route' => '/view',
5398
                                                                'defaults' => [
5399
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController',
5400
                                                                    'action' => 'view'
5401
                                                                ]
5402
                                                            ]
5403
                                                        ],
9644 nelberth 5404
                                                        'add' => [
5405
                                                            'type' => Literal::class,
5406
                                                            'options' => [
5407
                                                                'route' => '/add',
5408
                                                                'defaults' => [
5409
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController',
5410
                                                                    'action' => 'add'
5411
                                                                ]
5412
                                                            ]
5413
                                                        ],
9643 nelberth 5414
                                                        'edit' => [
5415
                                                            'type' => Segment::class,
9640 nelberth 5416
                                                            'options' => [
11083 nelberth 5417
                                                                'route' => '/edit/:category_id',
9643 nelberth 5418
                                                                'constraints' => [
11083 nelberth 5419
                                                                    'category_id' => '[A-Za-z0-9\-]+\=*'
9643 nelberth 5420
                                                                ],
9640 nelberth 5421
                                                                'defaults' => [
5422
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController',
9643 nelberth 5423
                                                                    'action' => 'edit'
9640 nelberth 5424
                                                                ]
5425
                                                            ]
5426
                                                        ],
9643 nelberth 5427
                                                        'delete' => [
5428
                                                            'type' => Segment::class,
5429
                                                            'options' => [
11083 nelberth 5430
                                                                'route' => '/delete/:category_id',
9643 nelberth 5431
                                                                'constraints' => [
11083 nelberth 5432
                                                                    'category_id' => '[A-Za-z0-9\-]+\=*'
9643 nelberth 5433
                                                                ],
5434
                                                                'defaults' => [
5435
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController',
5436
                                                                    'action' => 'delete'
5437
                                                                ]
5438
                                                            ]
5439
                                                        ],
9760 nelberth 5440
                                                        'articles' => [
5441
                                                            'type' => Segment::class,
5442
                                                            'options' => [
11083 nelberth 5443
                                                                'route' => '/:category_id/articles',
9760 nelberth 5444
                                                                'constraints' => [
11083 nelberth 5445
                                                                    'category_id' => '[A-Za-z0-9\-]+\=*'
9760 nelberth 5446
                                                                ],
5447
                                                                'defaults' => [
5448
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesController',
5449
                                                                    'action' => 'index'
5450
                                                                ]
9845 nelberth 5451
                                                            ],
5452
                                                            'may_terminate' => true,
5453
                                                            'child_routes' => [
5454
                                                                'add' => [
5455
                                                                    'type' => Literal::class,
5456
                                                                    'options' => [
5457
                                                                        'route' => '/add',
5458
                                                                        'defaults' => [
5459
                                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesController',
5460
                                                                            'action' => 'add'
5461
                                                                        ]
5462
                                                                    ]
5463
                                                                ],
5464
                                                                'edit' => [
5465
                                                                    'type' => Segment::class,
5466
                                                                    'options' => [
11083 nelberth 5467
                                                                        'route' => '/edit/:article_id',
9845 nelberth 5468
                                                                        'constraints' => [
11083 nelberth 5469
                                                                            'articles_id' => '[A-Za-z0-9\-]+\=*'
9845 nelberth 5470
                                                                        ],
5471
                                                                        'defaults' => [
5472
                                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesController',
5473
                                                                            'action' => 'edit'
5474
                                                                        ]
5475
                                                                    ]
5476
                                                                ],
5477
 
5478
                                                                'delete' => [
5479
                                                                    'type' => Segment::class,
5480
                                                                    'options' => [
11083 nelberth 5481
                                                                        'route' => '/delete/:article_id',
9845 nelberth 5482
                                                                        'constraints' => [
11083 nelberth 5483
                                                                            'articles_id' => '[A-Za-z0-9\-]+\=*'
9845 nelberth 5484
                                                                        ],
5485
                                                                        'defaults' => [
5486
                                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesController',
5487
                                                                            'action' => 'delete'
5488
                                                                        ]
5489
                                                                    ]
5490
                                                                ],
5491
                                                                'view' => [
5492
                                                                    'type' => Segment::class,
5493
                                                                    'options' => [
11083 nelberth 5494
                                                                        'route' => '/view/:article_id',
9845 nelberth 5495
                                                                        'constraints' => [
11083 nelberth 5496
                                                                            'articles_id' => '[A-Za-z0-9\-]+\=*'
9845 nelberth 5497
                                                                        ],
5498
                                                                        'defaults' => [
9921 nelberth 5499
                                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesViewController',
5500
                                                                            'action' => 'index'
9845 nelberth 5501
                                                                        ]
5502
                                                                    ]
5503
                                                                ],
9760 nelberth 5504
                                                            ]
5505
                                                        ],
9640 nelberth 5506
                                                    ],
9424 nelberth 5507
                                                ],
5508
                                            ]
5509
                                        ],
7483 nelberth 5510
                                        'topic' => [
8649 nelberth 5511
                                            'type' => Literal::class,
7483 nelberth 5512
                                            'options' => [
8649 nelberth 5513
                                                'route' => '/topic',
7483 nelberth 5514
                                                'defaults' => [
7491 nelberth 5515
                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController',
7483 nelberth 5516
                                                    'action' => 'index'
5517
                                                ]
5518
                                            ],'may_terminate' => true,
5519
                                            'child_routes' => [
5520
                                                'add' => [
5521
                                                    'type' => Literal::class,
5522
                                                    'options' => [
5523
                                                        'route' => '/add',
5524
                                                        'defaults' => [
7506 nelberth 5525
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController',
7483 nelberth 5526
                                                            'action' => 'add'
5527
                                                        ]
5528
                                                    ]
5529
                                                ],
5530
                                                'edit' => [
5531
                                                    'type' => Segment::class,
5532
                                                    'options' => [
11083 nelberth 5533
                                                        'route' => '/edit/:topic_id',
7483 nelberth 5534
                                                        'constraints' => [
11083 nelberth 5535
                                                            'topic_id' => '[A-Za-z0-9\-]+\=*'
7483 nelberth 5536
                                                        ],
5537
                                                        'defaults' => [
7491 nelberth 5538
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController',
7483 nelberth 5539
                                                            'action' => 'edit'
5540
                                                        ]
5541
                                                    ]
5542
                                                ],
7636 nelberth 5543
                                                'view' => [
7629 nelberth 5544
                                                    'type' => Segment::class,
5545
                                                    'options' => [
11083 nelberth 5546
                                                        'route' => '/view[/:topic_id]',
7629 nelberth 5547
                                                        'constraints' => [
11083 nelberth 5548
                                                            'topic_id' => '[A-Za-z0-9\-]+\=*'
7629 nelberth 5549
                                                        ],
5550
                                                        'defaults' => [
7635 nelberth 5551
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewController',
7629 nelberth 5552
                                                            'action' => 'index'
5553
                                                        ]
5554
                                                    ]
5555
                                                ],
8686 nelberth 5556
 
7483 nelberth 5557
                                                'delete' => [
5558
                                                    'type' => Segment::class,
5559
                                                    'options' => [
11083 nelberth 5560
                                                        'route' => '/delete/:topic_id',
7483 nelberth 5561
                                                        'constraints' => [
11083 nelberth 5562
                                                            'topic_id' => '[A-Za-z0-9\-]+\=*'
7483 nelberth 5563
                                                        ],
5564
                                                        'defaults' => [
7491 nelberth 5565
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController',
7483 nelberth 5566
                                                            'action' => 'delete'
5567
                                                        ]
5568
                                                    ]
5569
                                                ]
5570
                                            ],
5571
                                        ],
5572
 
5573
                                    ],
5574
 
4411 nelberth 5575
                            ],
5576
                        ]
4388 nelberth 5577
                    ],
1333 efrain 5578
                ]
5579
            ],
7224 nelberth 5580
 
4588 nelberth 5581
 
1333 efrain 5582
            'my-trainer' => [
5583
                'type' => Literal::class,
5584
                'options' => [
5585
                    'route' => '/my-trainer',
5586
                    'defaults' => [
5587
                        'controller' => '\LeadersLinked\Controller\UnknownController',
5588
                        'action' => 'index'
5589
                    ]
5590
                ],
5591
                'may_terminate' => true,
5592
                'child_routes' => [
8462 eleazar 5593
                    'category' => [
5594
                        'type' => Literal::class,
5595
                        'options' => [
5596
                            'route' => '/category',
5597
                            'defaults' => [
8529 eleazar 5598
                                'controller' => '\LeadersLinked\Controller\MyTrainerCategoriesController',
8462 eleazar 5599
                                'action' => 'index'
5600
                            ]
5601
                        ],
5602
                        'may_terminate' => true,
5603
                        'child_routes' => [
5604
                            'add' => [
5605
                                'type' => Literal::class,
5606
                                'options' => [
5607
                                    'route' => '/add',
5608
                                    'defaults' => [
8529 eleazar 5609
                                        'controller' => '\LeadersLinked\Controller\MyTrainerCategoriesController',
8462 eleazar 5610
                                        'action' => 'add'
5611
                                    ]
5612
                                ]
5613
                            ],
5614
                            'edit' => [
5615
                                'type' => Segment::class,
5616
                                'options' => [
5617
                                    'route' => '/edit/:id',
5618
                                    'constraints' => [
5619
                                        'id' => '[A-Za-z0-9\-]+\=*'
5620
                                    ],
5621
                                    'defaults' => [
8529 eleazar 5622
                                        'controller' => '\LeadersLinked\Controller\MyTrainerCategoriesController',
8462 eleazar 5623
                                        'action' => 'edit'
5624
                                    ]
5625
                                ]
5626
                            ],
5627
                            'delete' => [
5628
                                'type' => Segment::class,
5629
                                'options' => [
5630
                                    'route' => '/delete/:id',
5631
                                    'constraints' => [
5632
                                        'id' => '[A-Za-z0-9\-]+\=*'
5633
                                    ],
5634
                                    'defaults' => [
8529 eleazar 5635
                                        'controller' => '\LeadersLinked\Controller\MyTrainerCategoriesController',
8462 eleazar 5636
                                        'action' => 'delete'
5637
                                    ]
5638
                                ]
5639
                            ]
5640
                        ]
5641
                    ],
5642
                    'question' => [
12250 eleazar 5643
                        'type' => segment::class,
8462 eleazar 5644
                        'options' => [
12260 eleazar 5645
                            'route' => '/question',
8462 eleazar 5646
                            'defaults' => [
9350 eleazar 5647
                                'controller' => '\LeadersLinked\Controller\MyTrainerQuestionController',
8462 eleazar 5648
                                'action' => 'index'
5649
                            ]
5650
                        ],
5651
                        'may_terminate' => true,
5652
                        'child_routes' => [
5653
                            'add' => [
5654
                                'type' => Literal::class,
5655
                                'options' => [
5656
                                    'route' => '/add',
5657
                                    'defaults' => [
9350 eleazar 5658
                                        'controller' => '\LeadersLinked\Controller\MyTrainerQuestionController',
8462 eleazar 5659
                                        'action' => 'add'
5660
                                    ]
5661
                                ]
5662
                            ],
5663
                            'edit' => [
5664
                                'type' => Segment::class,
5665
                                'options' => [
5666
                                    'route' => '/edit/:id',
5667
                                    'constraints' => [
5668
                                        'id' => '[A-Za-z0-9\-]+\=*'
5669
                                    ],
5670
                                    'defaults' => [
9350 eleazar 5671
                                        'controller' => '\LeadersLinked\Controller\MyTrainerQuestionController',
8462 eleazar 5672
                                        'action' => 'edit'
5673
                                    ]
5674
                                ]
5675
                            ],
5676
                            'delete' => [
5677
                                'type' => Segment::class,
5678
                                'options' => [
12193 eleazar 5679
                                    'route' => '/delete/:id',
5680
                                    'constraints' => [
5681
                                        'id' => '[A-Za-z0-9\-]+\=*'
5682
                                    ],
8462 eleazar 5683
                                    'defaults' => [
9350 eleazar 5684
                                        'controller' => '\LeadersLinked\Controller\MyTrainerQuestionController',
8462 eleazar 5685
                                        'action' => 'delete'
5686
                                    ]
5687
                                ]
11195 eleazar 5688
                            ],
5689
                            'view' => [
5690
                                'type' => Segment::class,
5691
                                'options' => [
12280 eleazar 5692
                                    'route' => '/:id/view',
11195 eleazar 5693
                                    'constraints' => [
5694
                                        'id' => '[A-Za-z0-9\-]+\=*'
5695
                                    ],
5696
                                    'defaults' => [
12260 eleazar 5697
                                        'controller' => '\LeadersLinked\Controller\MyTrainerQuestionViewController',
5698
                                        'action' => 'index'
11195 eleazar 5699
                                    ]
5700
                                ]
11303 eleazar 5701
                            ],
11840 eleazar 5702
                            'answer' => [
11322 eleazar 5703
                                'type' => Segment::class,
8462 eleazar 5704
                                'options' => [
11852 eleazar 5705
                                    'route' => '/:id/answer',
11337 eleazar 5706
                                    'constraints' => [
5707
                                        'id' => '[A-Za-z0-9\-]+\=*'
5708
                                    ],
8462 eleazar 5709
                                    'defaults' => [
10602 eleazar 5710
                                        'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
11840 eleazar 5711
                                        'action' => 'index'
8462 eleazar 5712
                                    ]
11810 eleazar 5713
                                ],
5714
                                'may_terminate' => true,
5715
                                'child_routes' => [
11840 eleazar 5716
                                    'add' => [
5717
                                        'type' => Segment::class,
5718
                                        'options' => [
5719
                                            'route' => '/add[/:id]',
5720
                                            'constraints' => [
5721
                                                'id' => '[A-Za-z0-9\-]+\=*'
5722
                                            ],
5723
                                            'defaults' => [
5724
                                                'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
5725
                                                'action' => 'add'
5726
                                            ]
5727
                                        ]
5728
                                    ],
5729
                                    'edit' => [
5730
                                        'type' => Segment::class,
5731
                                        'options' => [
11860 eleazar 5732
                                            'route' => '/edit',
5733
 
11840 eleazar 5734
                                            'defaults' => [
5735
                                                'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
5736
                                                'action' => 'edit'
5737
                                            ]
5738
                                        ]
5739
                                    ],
11810 eleazar 5740
                                    'delete' => [
5741
                                        'type' => Segment::class,
5742
                                        'options' => [
11859 eleazar 5743
                                            'route' => '/delete',
11810 eleazar 5744
                                            'defaults' => [
11812 eleazar 5745
                                                'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
11840 eleazar 5746
                                                'action' => 'delete'
11810 eleazar 5747
                                            ]
5748
                                        ]
5749
                                    ],
11884 eleazar 5750
                                    'feed' => [
5751
                                        'type' => Segment::class,
5752
                                        'options' => [
5753
                                            'route' => '/feed',
5754
                                            'defaults' => [
5755
                                                'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
5756
                                                'action' => 'feed'
5757
                                            ],
5758
                                        ],
5759
                                    ],
11913 eleazar 5760
                                    'timeline' => [
5761
                                        'type' => Segment::class,
5762
                                        'options' => [
5763
                                            'route' => '/timeline',
5764
                                            'defaults' => [
11921 eleazar 5765
                                                'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
11913 eleazar 5766
                                                'action' => 'timeline'
11921 eleazar 5767
                                            ],
5768
                                        ],
11913 eleazar 5769
                                    ],
11840 eleazar 5770
                                    'comments' => [
5771
                                        'type' => Segment::class,
5772
                                        'options' => [
11860 eleazar 5773
                                            'route' => '/comments',
5774
 
11840 eleazar 5775
                                            'defaults' => [
5776
                                                'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
5777
                                                'action' => 'comment'
5778
                                            ],
5779
                                        ],
5780
                                        'may_terminate' => true,
5781
                                        'child_routes' => [
5782
                                            'delete' => [
5783
                                                'type' => Segment::class,
5784
                                                'options' => [
5785
                                                    'route' => '/delete/:comment',
5786
                                                    'constraints' => [
5787
                                                        'comment' => '[A-Za-z0-9\-]+\=*',
5788
                                                    ],
5789
                                                    'defaults' => [
5790
                                                        'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
5791
                                                        'action' => 'commentDelete'
5792
                                                    ]
5793
                                                ]
5794
                                            ],
11948 eleazar 5795
                                            'answer' => [
5796
                                                'type' => Segment::class,
5797
                                                'options' => [
5798
                                                    'route' => '/answer/:comment',
5799
                                                    'constraints' => [
5800
                                                        'comment' => '[A-Za-z0-9\-]+\=*',
5801
                                                    ],
5802
                                                    'defaults' => [
5803
                                                        'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
5804
                                                        'action' => 'answer'
5805
                                                    ]
5806
                                                ]
5807
                                            ],
11840 eleazar 5808
                                        ]
5809
                                    ],
5810
                                ],
11810 eleazar 5811
                            ],
11840 eleazar 5812
                        ],
8462 eleazar 5813
                    ],
1333 efrain 5814
                ]
5815
            ],
13354 eleazar 5816
 
5817
            'development-and-content' => [
15028 efrain 5818
                'type' => Literal::class,
13354 eleazar 5819
                'options' => [
15028 efrain 5820
                    'route' => '/development-and-content',
13354 eleazar 5821
                    'defaults' => [
5822
                        'controller' => '\LeadersLinked\Controller\DevelopmentContentController',
14992 kerby 5823
                        'action' => 'index',
13354 eleazar 5824
                    ]
5825
                ],
15028 efrain 5826
 
5827
 
13354 eleazar 5828
                'may_terminate' => true,
5829
                'child_routes' => [
15028 efrain 5830
                    'listing' => [
15014 efrain 5831
                        'type' => Segment::class,
14743 kerby 5832
                        'options' => [
15028 efrain 5833
                            'route' => '/listing[/:category_id]',
5834
                            'constraints' => [
5835
                                'category_id' => '[A-Za-z0-9\-]+\=*'
5836
                            ],
14743 kerby 5837
                            'defaults' => [
5838
                                'controller' => '\LeadersLinked\Controller\DevelopmentContentController',
15028 efrain 5839
                                'action' => 'listing'
14743 kerby 5840
                            ]
5841
                        ]
5842
                    ],
15028 efrain 5843
                    'add' => [
13354 eleazar 5844
                        'type' => Segment::class,
5845
                        'options' => [
15028 efrain 5846
                            'route' => '/add',
13354 eleazar 5847
                            'defaults' => [
5848
                                'controller' => '\LeadersLinked\Controller\DevelopmentContentController',
15028 efrain 5849
                                'action' => 'add'
13354 eleazar 5850
                            ]
5851
                        ]
5852
                    ],
5853
                    'edit' => [
5854
                        'type' => Segment::class,
5855
                        'options' => [
14972 kerby 5856
                            'route' => '/edit/:id',
14743 kerby 5857
                            'constraints' => [
5858
                                'id' => '[A-Za-z0-9\-]+\=*'
5859
                            ],
13354 eleazar 5860
                            'defaults' => [
5861
                                'controller' => '\LeadersLinked\Controller\DevelopmentContentController',
5862
                                'action' => 'edit'
5863
                            ]
5864
                        ]
5865
                    ],
14743 kerby 5866
                    'aproved' => [
5867
                        'type' => Segment::class,
5868
                        'options' => [
14972 kerby 5869
                            'route' => '/aproved/:id',
14743 kerby 5870
                            'constraints' => [
5871
                                'id' => '[A-Za-z0-9\-]+\=*'
5872
                            ],
5873
                            'defaults' => [
5874
                                'controller' => '\LeadersLinked\Controller\DevelopmentContentController',
5875
                                'action' => 'aproved'
5876
                            ]
5877
                        ]
5878
                    ],
13354 eleazar 5879
                    'delete' => [
5880
                        'type' => Segment::class,
5881
                        'options' => [
14972 kerby 5882
                            'route' => '/delete/:id',
14743 kerby 5883
                            'constraints' => [
5884
                                'id' => '[A-Za-z0-9\-]+\=*'
5885
                            ],
13354 eleazar 5886
                            'defaults' => [
5887
                                'controller' => '\LeadersLinked\Controller\DevelopmentContentController',
5888
                                'action' => 'delete'
5889
                            ]
5890
                        ]
5891
                    ],
15029 kerby 5892
                    'category' => [
5893
                        'type' => Literal::class,
14972 kerby 5894
                        'options' => [
15029 kerby 5895
                            'route' => '/category',
14972 kerby 5896
                            'defaults' => [
15029 kerby 5897
                                'controller' => '\LeadersLinked\Controller\DevelopmentContentCategoryController',
5898
                                'action' => 'index'
5899
                            ]
14972 kerby 5900
                        ],
5901
                        'may_terminate' => true,
5902
                        'child_routes' => [
15029 kerby 5903
                            'add' => [
5904
                                'type' => Literal::class,
5905
                                'options' => [
5906
                                    'route' => '/add',
5907
                                    'defaults' => [
5908
                                        'controller' => '\LeadersLinked\Controller\DevelopmentContentCategoryController',
5909
                                        'action' => 'add'
5910
                                    ]
5911
                                ]
5912
                            ],
5913
                            'edit' => [
14972 kerby 5914
                                'type' => Segment::class,
5915
                                'options' => [
15029 kerby 5916
                                    'route' => '/edit/:id',
14972 kerby 5917
                                    'constraints' => [
15029 kerby 5918
                                        'id' => '[A-Za-z0-9\-]+\=*'
14972 kerby 5919
                                    ],
5920
                                    'defaults' => [
15029 kerby 5921
                                        'controller' => '\LeadersLinked\Controller\DevelopmentContentCategoryController',
5922
                                        'action' => 'edit'
14972 kerby 5923
                                    ]
5924
                                ]
5925
                            ],
15029 kerby 5926
                            'delete' => [
14972 kerby 5927
                                'type' => Segment::class,
5928
                                'options' => [
15029 kerby 5929
                                    'route' => '/delete/:id',
14972 kerby 5930
                                    'constraints' => [
15029 kerby 5931
                                        'id' => '[A-Za-z0-9\-]+\=*'
14972 kerby 5932
                                    ],
5933
                                    'defaults' => [
15029 kerby 5934
                                        'controller' => '\LeadersLinked\Controller\DevelopmentContentCategoryController',
5935
                                        'action' => 'delete'
14972 kerby 5936
                                    ]
5937
                                ]
15029 kerby 5938
                            ]
14972 kerby 5939
                        ]
15029 kerby 5940
                    ]
13354 eleazar 5941
                ]
5942
            ],
1333 efrain 5943
 
1 www 5944
        ]
5945
    ],
5946
    'controllers' => [
5947
        'factories' => [
5948
            \LeadersLinked\Controller\AuthController::class => \LeadersLinked\Factory\Controller\AuthControllerFactory::class,
5949
            \LeadersLinked\Controller\FeedController::class => \LeadersLinked\Factory\Controller\FeedControllerFactory::class,
5950
            \LeadersLinked\Controller\FollowerController::class => \LeadersLinked\Factory\Controller\FollowerControllerFactory::class,
5951
            \LeadersLinked\Controller\JobController::class => \LeadersLinked\Factory\Controller\JobControllerFactory::class,
1469 eleazar 5952
            \LeadersLinked\Controller\RecruitmentSelectionController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionFactory::class,
1709 eleazar 5953
            \LeadersLinked\Controller\RecruitmentSelectionInterviewController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionInterviewFactory::class,
1712 eleazar 5954
            \LeadersLinked\Controller\RecruitmentSelectionInterviewFormController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionInterviewFormFactory::class,
8797 eleazar 5955
            \LeadersLinked\Controller\RecruitmentSelectionInterviewFileController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionInterviewFileControllerFactory::class,
1385 eleazar 5956
            \LeadersLinked\Controller\RecruitmentSelectionVacancyController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionVacancyFactory::class,
1459 eleazar 5957
            \LeadersLinked\Controller\RecruitmentSelectionCandidateController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionCandidateFactory::class,
1 www 5958
            \LeadersLinked\Controller\ProfileController::class => \LeadersLinked\Factory\Controller\ProfileControllerFactory::class,
5959
            \LeadersLinked\Controller\CompanyController::class => \LeadersLinked\Factory\Controller\CompanyControllerFactory::class,
5960
            \LeadersLinked\Controller\CompanySizeController::class => \LeadersLinked\Factory\Controller\CompanySizeControllerFactory::class,
1115 geraldo 5961
            \LeadersLinked\Controller\BehaviorsController::class => \LeadersLinked\Factory\Controller\BehaviorsControllerFactory::class,
1 www 5962
            \LeadersLinked\Controller\CompetencyTypeController::class => \LeadersLinked\Factory\Controller\CompetencyTypeControllerFactory::class,
5963
            \LeadersLinked\Controller\CompetencyController::class => \LeadersLinked\Factory\Controller\CompetencyControllerFactory::class,
5964
            \LeadersLinked\Controller\DegreeController::class => \LeadersLinked\Factory\Controller\DegreeControllerFactory::class,
13355 eleazar 5965
            \LeadersLinked\Controller\DevelopmentContentCategoryController::class => \LeadersLinked\Factory\Controller\DevelopmentContentCategoryControllerFactory::class,
5966
            \LeadersLinked\Controller\DevelopmentContentController::class => \LeadersLinked\Factory\Controller\DevelopmentContentControllerFactory::class,
1 www 5967
            \LeadersLinked\Controller\EmailTemplateController::class => \LeadersLinked\Factory\Controller\EmailTemplateControllerFactory::class,
5968
            \LeadersLinked\Controller\PushTemplateController::class => \LeadersLinked\Factory\Controller\PushTemplateControllerFactory::class,
5969
            \LeadersLinked\Controller\GroupTypeController::class => \LeadersLinked\Factory\Controller\GroupTypeControllerFactory::class,
5970
            \LeadersLinked\Controller\IndustryController::class => \LeadersLinked\Factory\Controller\IndustryControllerFactory::class,
5971
            \LeadersLinked\Controller\JobCategoryController::class => \LeadersLinked\Factory\Controller\JobCategoryControllerFactory::class,
28 efrain 5972
            \LeadersLinked\Controller\JobDescriptionController::class => \LeadersLinked\Factory\Controller\JobDescriptionControllerFactory::class,
1 www 5973
            \LeadersLinked\Controller\PageController::class => \LeadersLinked\Factory\Controller\PageControllerFactory::class,
67 efrain 5974
            \LeadersLinked\Controller\PositionController::class => \LeadersLinked\Factory\Controller\PositionControllerFactory::class,
1 www 5975
            \LeadersLinked\Controller\PostController::class => \LeadersLinked\Factory\Controller\PostControllerFactory::class,
5976
            \LeadersLinked\Controller\SkillController::class => \LeadersLinked\Factory\Controller\SkillControllerFactory::class,
5977
            \LeadersLinked\Controller\UserController::class => \LeadersLinked\Factory\Controller\UserControllerFactory::class,
5978
            \LeadersLinked\Controller\DashboardController::class => \LeadersLinked\Factory\Controller\DashboardControllerFactory::class,
115 efrain 5979
            \LeadersLinked\Controller\SelfEvaluationController::class => \LeadersLinked\Factory\Controller\SelfEvaluationControllerFactory::class,
5980
            \LeadersLinked\Controller\SelfEvaluationFormController::class => \LeadersLinked\Factory\Controller\SelfEvaluationFormControllerFactory::class,
1089 geraldo 5981
            \LeadersLinked\Controller\SelfEvaluationFormUserController::class => \LeadersLinked\Factory\Controller\SelfEvaluationFormUserControllerFactory::class,
247 geraldo 5982
            \LeadersLinked\Controller\SelfEvaluationReviewController::class => \LeadersLinked\Factory\Controller\SelfEvaluationReviewControllerFactory::class,
4375 eleazar 5983
            \LeadersLinked\Controller\SurveyController::class => \LeadersLinked\Factory\Controller\SurveyControllerFactory::class,
5984
            \LeadersLinked\Controller\SurveyFormController::class => \LeadersLinked\Factory\Controller\SurveyFormControllerFactory::class,
5868 eleazar 5985
            \LeadersLinked\Controller\SurveyReportController::class => \LeadersLinked\Factory\Controller\SurveyReportControllerFactory::class,
5287 eleazar 5986
            \LeadersLinked\Controller\SurveyTestController::class => \LeadersLinked\Factory\Controller\SurveyTestControllerFactory::class,
7218 eleazar 5987
            \LeadersLinked\Controller\OrganizationalClimateController::class => \LeadersLinked\Factory\Controller\OrganizationalClimateControllerFactory::class,
5988
            \LeadersLinked\Controller\OrganizationalClimateFormController::class => \LeadersLinked\Factory\Controller\OrganizationalClimateFormControllerFactory::class,
5989
            \LeadersLinked\Controller\OrganizationalClimateReportController::class => \LeadersLinked\Factory\Controller\OrganizationalClimateReportControllerFactory::class,
5990
            \LeadersLinked\Controller\OrganizationalClimateTestController::class => \LeadersLinked\Factory\Controller\OrganizationalClimateTestControllerFactory::class,
987 geraldo 5991
            \LeadersLinked\Controller\PerformanceEvaluationFormController::class => \LeadersLinked\Factory\Controller\PerformanceEvaluationFormControllerFactory::class,
9335 eleazar 5992
            \LeadersLinked\Controller\MyTrainerCategoriesController::class => \LeadersLinked\Factory\Controller\MyTrainerCategoriesControllerFactory::class,
12286 eleazar 5993
            \LeadersLinked\Controller\MyTrainerQuestionViewController::class => \LeadersLinked\Factory\Controller\MyTrainerQuestionViewControllerFactory::class,
9350 eleazar 5994
            \LeadersLinked\Controller\MyTrainerQuestionController::class => \LeadersLinked\Factory\Controller\MyTrainerQuestionControllerFactory::class,
10423 eleazar 5995
            \LeadersLinked\Controller\MyTrainerAnswerController::class => \LeadersLinked\Factory\Controller\MyTrainerAnswerControllerFactory::class,
1383 efrain 5996
            \LeadersLinked\Controller\PerformanceEvaluationEvaluationController::class => \LeadersLinked\Factory\Controller\PerformanceEvaluationEvaluationControllerFactory::class,
1 www 5997
            \LeadersLinked\Controller\MicrolearningController::class => \LeadersLinked\Factory\Controller\MicrolearningControllerFactory::class,
66 efrain 5998
            \LeadersLinked\Controller\MicrolearningQuizController::class => \LeadersLinked\Factory\Controller\MicrolearningQuizControllerFactory::class,
5999
            \LeadersLinked\Controller\MicrolearningQuestionController::class => \LeadersLinked\Factory\Controller\MicrolearningQuestionControllerFactory::class,
6000
            \LeadersLinked\Controller\MicrolearningAnswerController::class => \LeadersLinked\Factory\Controller\MicrolearningAnswerControllerFactory::class,
1 www 6001
            \LeadersLinked\Controller\MicrolearningTopicController::class => \LeadersLinked\Factory\Controller\MicrolearningTopicControllerFactory::class,
6002
            \LeadersLinked\Controller\MicrolearningCapsuleController::class => \LeadersLinked\Factory\Controller\MicrolearningCapsuleControllerFactory::class,
6003
            \LeadersLinked\Controller\MicrolearningSlideController::class => \LeadersLinked\Factory\Controller\MicrolearningSlideControllerFactory::class,
6004
            \LeadersLinked\Controller\MicrolearningAccessForStudentsController::class => \LeadersLinked\Factory\Controller\MicrolearningAccessForStudentsControllerFactory::class,
6005
            \LeadersLinked\Controller\MicrolearningStudentsController::class => \LeadersLinked\Factory\Controller\MicrolearningStudentsControllerFactory::class,
6006
            \LeadersLinked\Controller\MicrolearningReportsController::class => \LeadersLinked\Factory\Controller\MicrolearningReportsControllerFactory::class,
6007
            \LeadersLinked\Controller\MicrolearningExtendUserCompanyController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserCompanyControllerFactory::class,
6008
            \LeadersLinked\Controller\MicrolearningExtendUserFunctionController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserFunctionControllerFactory::class,
6009
            \LeadersLinked\Controller\MicrolearningExtendUserGroupController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserGroupControllerFactory::class,
6010
            \LeadersLinked\Controller\MicrolearningExtendUserInstitutionController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserInstitutionControllerFactory::class,
6011
            \LeadersLinked\Controller\MicrolearningExtendUserPartnerController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserPartnerControllerFactory::class,
6012
            \LeadersLinked\Controller\MicrolearningExtendUserProgramController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserProgramControllerFactory::class,
6013
            \LeadersLinked\Controller\MicrolearningExtendUserSectorController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserSectorControllerFactory::class,
6014
            \LeadersLinked\Controller\MicrolearningExtendUserStudentTypeController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserStudentTypeControllerFactory::class,
6015
            \LeadersLinked\Controller\StorageController::class => \LeadersLinked\Factory\Controller\StorageControllerFactory::class,
15336 efrain 6016
            \LeadersLinked\Controller\StorageNetworkController::class => \LeadersLinked\Factory\Controller\StorageNetworkControllerFactory::class,
2232 nelberth 6017
            \LeadersLinked\Controller\PlanningObjectivesAndGoalsController::class => \LeadersLinked\Factory\Controller\PlanningObjectivesAndGoalsControllerFactory::class,
2228 nelberth 6018
            \LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController::class => \LeadersLinked\Factory\Controller\PlanningObjectivesAndGoalsObjectivesControllerFactory::class,
2327 nelberth 6019
            \LeadersLinked\Controller\PlanningObjectivesAndGoalsGoalsController::class => \LeadersLinked\Factory\Controller\PlanningObjectivesAndGoalsGoalsControllerFactory::class,
2517 nelberth 6020
            \LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController::class => \LeadersLinked\Factory\Controller\PlanningObjectivesAndGoalsTaskControllerFactory::class,
15336 efrain 6021
            \LeadersLinked\Controller\PrivateNetworksController::class => \LeadersLinked\Factory\Controller\PrivateNetworksControllerFactory::class,
6022
            \LeadersLinked\Controller\MyPrivateNetworkController::class => \LeadersLinked\Factory\Controller\MyPrivateNetworkControllerFactory::class,
4377 nelberth 6023
            \LeadersLinked\Controller\HighPerformanceTeamsController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsControllerFactory::class,
7224 nelberth 6024
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsControllerFactory::class,
9095 nelberth 6025
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewCalendarController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewCalendarControllerFactory::class,
9619 nelberth 6026
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewForoCategoriesControllerFactory::class,
9764 nelberth 6027
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewForoArticlesControllerFactory::class,
10143 nelberth 6028
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewForoControllerFactory::class,
9921 nelberth 6029
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesViewController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewForoArticlesViewControllerFactory::class,
7308 nelberth 6030
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewControllerFactory::class,
12433 nelberth 6031
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewObjectivesControllerFactory::class,
12736 nelberth 6032
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewGoalsController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewGoalsControllerFactory::class,
12835 nelberth 6033
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewTaskControllerFactory::class,
11898 nelberth 6034
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewFeedControllerFactory::class,
7494 nelberth 6035
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewTopicControllerFactory::class,
7811 nelberth 6036
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsMembersControllerFactory::class,
13014 nelberth 6037
            \LeadersLinked\Controller\ChatController::class => \LeadersLinked\Factory\Controller\ChatControllerFactory::class,
13010 nelberth 6038
            \LeadersLinked\Controller\CommunicationController::class => \LeadersLinked\Factory\Controller\CommunicationControllerFactory::class,
13675 nelberth 6039
            \LeadersLinked\Controller\CommunicationInboxController::class => \LeadersLinked\Factory\Controller\CommunicationInboxControllerFactory::class,
13528 nelberth 6040
            \LeadersLinked\Controller\InMailController::class => \LeadersLinked\Factory\Controller\InMailControllerFactory::class,
1333 efrain 6041
 
6042
 
15387 efrain 6043
            \LeadersLinked\Controller\ReportController::class => \LeadersLinked\Factory\Controller\ReportControllerFactory::class,
1333 efrain 6044
            \LeadersLinked\Controller\UnknownController::class => \LeadersLinked\Factory\Controller\UnknownControllerFactory::class,
66 efrain 6045
            \LeadersLinked\Controller\TestController::class => \LeadersLinked\Factory\Controller\TestControllerFactory::class,
15392 efrain 6046
 
6047
            \LeadersLinked\Controller\AptitudeController::class => \LeadersLinked\Factory\Controller\AptitudeControllerFactory::class,
6048
            \LeadersLinked\Controller\HobbyAndInterestController::class => \LeadersLinked\Factory\Controller\HobbyAndInterestControllerFactory::class,
1 www 6049
        ],
6050
        'aliases' => [
6051
            '\LeadersLinked\Controller\AuthController' => \LeadersLinked\Controller\AuthController::class,
6052
            '\LeadersLinked\Controller\FollowerController' => \LeadersLinked\Controller\FollowerController::class,
6053
            '\LeadersLinked\Controller\FeedController' => \LeadersLinked\Controller\FeedController::class,
6054
            '\LeadersLinked\Controller\JobController' => \LeadersLinked\Controller\JobController::class,
1343 eleazar 6055
            '\LeadersLinked\Controller\RecruitmentSelectionController' => \LeadersLinked\Controller\RecruitmentSelectionController::class,
1385 eleazar 6056
            '\LeadersLinked\Controller\RecruitmentSelectionVacancyController' => \LeadersLinked\Controller\RecruitmentSelectionVacancyController::class,
1459 eleazar 6057
            '\LeadersLinked\Controller\RecruitmentSelectionCandidateController' => \LeadersLinked\Controller\RecruitmentSelectionCandidateController::class,
1712 eleazar 6058
            '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController' => \LeadersLinked\Controller\RecruitmentSelectionInterviewFormController::class,
8795 eleazar 6059
            '\LeadersLinked\Controller\RecruitmentSelectionInterviewFileController' => \LeadersLinked\Controller\RecruitmentSelectionInterviewFileController::class,
1 www 6060
            '\LeadersLinked\Controller\ProfileController' => \LeadersLinked\Controller\ProfileController::class,
6061
            '\LeadersLinked\Controller\CompanyController' => \LeadersLinked\Controller\CompanyController::class,
6062
            '\LeadersLinked\Controller\CompanySizeController' => \LeadersLinked\Controller\CompanySizeController::class,
6063
            '\LeadersLinked\Controller\CompetencyTypeController' => \LeadersLinked\Controller\CompetencyTypeController::class,
1102 geraldo 6064
            '\LeadersLinked\Controller\BehaviorsController' => \LeadersLinked\Controller\BehaviorsController::class,
1 www 6065
            '\LeadersLinked\Controller\CompetencyController' => \LeadersLinked\Controller\CompetencyController::class,
6066
            '\LeadersLinked\Controller\DegreeController' => \LeadersLinked\Controller\DegreeController::class,
13355 eleazar 6067
            '\LeadersLinked\Controller\DevelopmentContentCategoryController' => \LeadersLinked\Controller\DevelopmentContentCategoryController::class,
6068
            '\LeadersLinked\Controller\DevelopmentContentController' => \LeadersLinked\Controller\DevelopmentContentController::class,
1 www 6069
            '\LeadersLinked\Controller\EmailTemplateController' => \LeadersLinked\Controller\EmailTemplateController::class,
1089 geraldo 6070
            '\LeadersLinked\Controller\PushTemplateController' => \LeadersLinked\Controller\PushTemplateController::class,
1 www 6071
            '\LeadersLinked\Controller\GroupTypeController' => \LeadersLinked\Controller\GroupTypeController::class,
6072
            '\LeadersLinked\Controller\IndustryController' => \LeadersLinked\Controller\IndustryController::class,
6073
            '\LeadersLinked\Controller\JobCategoryController' => \LeadersLinked\Controller\JobCategoryController::class,
66 efrain 6074
            '\LeadersLinked\Controller\JobDescriptionController' => \LeadersLinked\Controller\JobDescriptionController::class,
1 www 6075
            '\LeadersLinked\Controller\PageController' => \LeadersLinked\Controller\PageController::class,
67 efrain 6076
            '\LeadersLinked\Controller\PositionController' => \LeadersLinked\Controller\PositionController::class,
1 www 6077
            '\LeadersLinked\Controller\PostController' => \LeadersLinked\Controller\PostController::class,
6078
            '\LeadersLinked\Controller\SkillController' => \LeadersLinked\Controller\SkillController::class,
6079
            '\LeadersLinked\Controller\UserController' => \LeadersLinked\Controller\UserController::class,
6080
            '\LeadersLinked\Controller\DashboardController' => \LeadersLinked\Controller\DashboardController::class,
115 efrain 6081
            '\LeadersLinked\Controller\SelfEvaluationController' => \LeadersLinked\Controller\SelfEvaluationController::class,
6082
            '\LeadersLinked\Controller\SelfEvaluationFormController' => \LeadersLinked\Controller\SelfEvaluationFormController::class,
6083
            '\LeadersLinked\Controller\SelfEvaluationFormUserController' => \LeadersLinked\Controller\SelfEvaluationFormUserController::class,
247 geraldo 6084
            '\LeadersLinked\Controller\SelfEvaluationReviewController' => \LeadersLinked\Controller\SelfEvaluationReviewController::class,
4375 eleazar 6085
            '\LeadersLinked\Controller\SurveyController' => \LeadersLinked\Controller\SurveyController::class,
6086
            '\LeadersLinked\Controller\SurveyFormController' => \LeadersLinked\Controller\SurveyFormController::class,
5868 eleazar 6087
            '\LeadersLinked\Controller\SurveyReportController' => \LeadersLinked\Controller\SurveyReportController::class,
5287 eleazar 6088
            '\LeadersLinked\Controller\SurveyTestController' => \LeadersLinked\Controller\SurveyTestController::class,
7218 eleazar 6089
            '\LeadersLinked\Controller\OrganizationalClimateController' => \LeadersLinked\Controller\OrganizationalClimateController::class,
6090
            '\LeadersLinked\Controller\OrganizationalClimateFormController' => \LeadersLinked\Controller\OrganizationalClimateFormController::class,
6091
            '\LeadersLinked\Controller\OrganizationalClimateReportController' => \LeadersLinked\Controller\OrganizationalClimateReportController::class,
6092
            '\LeadersLinked\Controller\OrganizationalClimateTestController' => \LeadersLinked\Controller\OrganizationalClimateTestController::class,
982 geraldo 6093
            '\LeadersLinked\Controller\PerformanceEvaluationFormController' => \LeadersLinked\Controller\PerformanceEvaluationFormController::class,
1383 efrain 6094
            '\LeadersLinked\Controller\PerformanceEvaluationEvaluationController' => \LeadersLinked\Controller\PerformanceEvaluationEvaluationController::class,
1 www 6095
            '\LeadersLinked\Controller\MicrolearningController' => \LeadersLinked\Controller\MicrolearningController::class,
66 efrain 6096
            '\LeadersLinked\Controller\MicrolearningQuizController' => \LeadersLinked\Controller\MicrolearningQuizController::class,
6097
            '\LeadersLinked\Controller\MicrolearningQuestionController' => \LeadersLinked\Controller\MicrolearningQuestionController::class,
6098
            '\LeadersLinked\Controller\MicrolearningAnswerController' => \LeadersLinked\Controller\MicrolearningAnswerController::class,
1 www 6099
            '\LeadersLinked\Controller\MicrolearningTopicController' => \LeadersLinked\Controller\MicrolearningTopicController::class,
6100
            '\LeadersLinked\Controller\MicrolearningCapsuleController' => \LeadersLinked\Controller\MicrolearningCapsuleController::class,
6101
            '\LeadersLinked\Controller\MicrolearningSlideController' => \LeadersLinked\Controller\MicrolearningSlideController::class,
6102
            '\LeadersLinked\Controller\MicrolearningStudentsController' => \LeadersLinked\Controller\MicrolearningStudentsController::class,
6103
            '\LeadersLinked\Controller\MicrolearningAccessForStudentsController' => \LeadersLinked\Controller\MicrolearningAccessForStudentsController::class,
6104
            '\LeadersLinked\Controller\MicrolearningReportsController' => \LeadersLinked\Controller\MicrolearningReportsController::class,
6105
            '\LeadersLinked\Controller\MicrolearningExtendUserCompanyController' => \LeadersLinked\Controller\MicrolearningExtendUserCompanyController::class,
6106
            '\LeadersLinked\Controller\MicrolearningExtendUserFunctionController' => \LeadersLinked\Controller\MicrolearningExtendUserFunctionController::class,
6107
            '\LeadersLinked\Controller\MicrolearningExtendUserGroupController' => \LeadersLinked\Controller\MicrolearningExtendUserGroupController::class,
6108
            '\LeadersLinked\Controller\MicrolearningExtendUserInstitutionController' => \LeadersLinked\Controller\MicrolearningExtendUserInstitutionController::class,
6109
            '\LeadersLinked\Controller\MicrolearningExtendUserPartnerController' => \LeadersLinked\Controller\MicrolearningExtendUserPartnerController::class,
12792 eleazar 6110
            '\LeadersLinked\Controller\MicrolearningExtendUserStudentTypeController' => \LeadersLinked\Controller\MicrolearningExtendUserStudentTypeController::class,
1 www 6111
            '\LeadersLinked\Controller\MicrolearningExtendUserProgramController' => \LeadersLinked\Controller\MicrolearningExtendUserProgramController::class,
6112
            '\LeadersLinked\Controller\MicrolearningExtendUserSectorController' => \LeadersLinked\Controller\MicrolearningExtendUserSectorController::class,
9335 eleazar 6113
            '\LeadersLinked\Controller\MicrolearningExtendUserSectorController' => \LeadersLinked\Controller\MicrolearningExtendUserSectorController::class,
6114
            '\LeadersLinked\Controller\MyTrainerCategoriesController' => \LeadersLinked\Controller\MyTrainerCategoriesController::class,
12286 eleazar 6115
            '\LeadersLinked\Controller\MyTrainerQuestionViewController' => \LeadersLinked\Controller\MyTrainerQuestionViewController::class,
9350 eleazar 6116
            '\LeadersLinked\Controller\MyTrainerQuestionController' => \LeadersLinked\Controller\MyTrainerQuestionController::class,
10423 eleazar 6117
            '\LeadersLinked\Controller\MyTrainerAnswerController' => \LeadersLinked\Controller\MyTrainerAnswerController::class,
1 www 6118
            '\LeadersLinked\Controller\StorageController' => \LeadersLinked\Controller\StorageController::class,
15336 efrain 6119
            '\LeadersLinked\Controller\StorageNetworkController' => \LeadersLinked\Controller\StorageNetworkController::class,
2232 nelberth 6120
            '\LeadersLinked\Controller\PlanningObjectivesAndGoalsController' => \LeadersLinked\Controller\PlanningObjectivesAndGoalsController::class,
2228 nelberth 6121
            '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController' => \LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController::class,
2517 nelberth 6122
            '\LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController' => \LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController::class,
4377 nelberth 6123
            '\LeadersLinked\Controller\PlanningObjectivesAndGoalsGoalsController' => \LeadersLinked\Controller\PlanningObjectivesAndGoalsGoalsController::class,
15336 efrain 6124
            '\LeadersLinked\Controller\MyPrivateNetworkController' => \LeadersLinked\Controller\MyPrivateNetworkController::class,
6125
            '\LeadersLinked\Controller\PrivateNetworksController' => \LeadersLinked\Controller\PrivateNetworksController::class,
4377 nelberth 6126
            '\LeadersLinked\Controller\HighPerformanceTeamsController' => \LeadersLinked\Controller\HighPerformanceTeamsController::class,
7224 nelberth 6127
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsController::class,
7308 nelberth 6128
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewController::class,
12435 nelberth 6129
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController::class,
12736 nelberth 6130
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewGoalsController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewGoalsController::class,
12835 nelberth 6131
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController::class,
11898 nelberth 6132
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController::class,
7494 nelberth 6133
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController::class,
9095 nelberth 6134
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewCalendarController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewCalendarController::class,
9619 nelberth 6135
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController::class,
9764 nelberth 6136
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesController::class,
10143 nelberth 6137
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoController::class,
9921 nelberth 6138
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesViewController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesViewController::class,
7811 nelberth 6139
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController::class,
11340 nelberth 6140
            '\LeadersLinked\Controller\ChatController' => \LeadersLinked\Controller\ChatController::class,
13010 nelberth 6141
            '\LeadersLinked\Controller\CommunicationController' => \LeadersLinked\Controller\CommunicationController::class,
13675 nelberth 6142
            '\LeadersLinked\Controller\CommunicationInboxController' => \LeadersLinked\Controller\CommunicationInboxController::class,
13528 nelberth 6143
            '\LeadersLinked\Controller\InMailController' => \LeadersLinked\Controller\InMailController::class,
15387 efrain 6144
            '\LeadersLinked\Controller\ReportController' => \LeadersLinked\Controller\ReportController::class,
1333 efrain 6145
            '\LeadersLinked\Controller\UnknownController' => \LeadersLinked\Controller\UnknownController::class,
13014 nelberth 6146
            '\LeadersLinked\Controller\TestController' => \LeadersLinked\Controller\TestController::class,
15392 efrain 6147
            '\LeadersLinked\Controller\AptitudeController' => \LeadersLinked\Controller\AptitudeController::class,
6148
            '\LeadersLinked\Controller\HobbyAndInterestController' => \LeadersLinked\Controller\HobbyAndInterestController::class,
1 www 6149
        ]
6150
    ],
6151
    'laminas-cli' => [
6152
        'commands' => [
1089 geraldo 6153
        ]
1 www 6154
    ],
6155
    'service_manager' => [
6156
        'abstract_factories' => [
6157
            \Laminas\Db\Adapter\AdapterAbstractServiceFactory::class
6158
        ],
6159
        'factories' => [
6160
            'RenderingStrategy' => function ($container) {
6161
                $translator = $container->get('MvcTranslator');
6162
                return new \LeadersLinked\View\RenderingStrategy($translator);
6163
            },
6164
            'menuNavigation' => \LeadersLinked\Navigation\MenuNavigation::class,
6165
            'footerNavigation' => \LeadersLinked\Navigation\FooterNavigation::class,
1089 geraldo 6166
        ],
6167
        'aliases' => [// 'leaders-linked-storage' => \LeadersLinked\Service\StorageService::class
1 www 6168
        ]
6169
    ],
6170
    'view_helpers' => [
6171
        'factories' => [
11351 nelberth 6172
            \LeadersLinked\Helper\ChatHelper::class => \LeadersLinked\Factory\Helper\ChatHelperFactory::class,
1 www 6173
            \LeadersLinked\Helper\CurrentUserHelper::class => \LeadersLinked\Factory\Helper\CurrentUserHelperFactory::class,
15336 efrain 6174
            \LeadersLinked\Helper\CurrentNetworkHelper::class => \LeadersLinked\Factory\Helper\CurrentNetworkHelperFactory::class,
6175
            \LeadersLinked\Helper\NetworkFavicoHelper::class => \LeadersLinked\Factory\Helper\NetworkFavicoHelperFactory::class,
6176
            \LeadersLinked\Helper\NetworkIntroHelper::class => \LeadersLinked\Factory\Helper\NetworkIntroHelperFactory::class,
6177
            \LeadersLinked\Helper\NetworkLogoHelper::class => \LeadersLinked\Factory\Helper\NetworkLogoHelperFactory::class,
6178
            \LeadersLinked\Helper\NetworkNavbarHelper::class => \LeadersLinked\Factory\Helper\NetworkNavbarHelperFactory::class,
6179
            \LeadersLinked\Helper\NetworkStylesAndColorsHelper::class => \LeadersLinked\Factory\Helper\NetworkStylesAndColorsHelperFactory::class,
6180
 
1 www 6181
        ],
6182
        'invokables' => [
11527 nelberth 6183
            'chatHelper' => \LeadersLinked\Helper\ChatHelper::class,
1 www 6184
            'menuHelper' => \LeadersLinked\Helper\MenuHelper::class,
6185
        ],
6186
        'aliases' => [
11527 nelberth 6187
 
1 www 6188
            'currentUserHelper' => \LeadersLinked\Helper\CurrentUserHelper::class,
15336 efrain 6189
            'currentNetworkHelper' =>  \LeadersLinked\Helper\CurrentNetworkHelper::class,
6190
            'networkFavicoHelper'  => \LeadersLinked\Helper\NetworkFavicoHelper::class,
6191
            'networkIntroHelper' => \LeadersLinked\Helper\NetworkIntroHelper::class,
6192
            'networkLogoHelper'  => \LeadersLinked\Helper\NetworkLogoHelper::class,
6193
            'networkNavbarHelper'  => \LeadersLinked\Helper\NetworkNavbarHelper::class,
6194
            'networkStylesAndColorsHelper'  => \LeadersLinked\Helper\NetworkStylesAndColorsHelper::class,
4600 nelberth 6195
 
15336 efrain 6196
 
1 www 6197
        ]
6198
    ],
6199
    'controller_plugins' => [
6200
        'invokables' => [],
6201
        'factories' => [
15336 efrain 6202
            \LeadersLinked\Plugin\CurrentUserPlugin::class => \LeadersLinked\Factory\Plugin\CurrentUserPluginFactory::class,
6203
            \LeadersLinked\Plugin\CurrentNetworkPlugin::class => \LeadersLinked\Factory\Plugin\CurrentNetworkPluginFactory::class,
1 www 6204
        ],
6205
        'aliases' => [
15336 efrain 6206
            'currentUserPlugin' => \LeadersLinked\Plugin\CurrentUserPlugin::class,
6207
            'currentNetworkPlugin' => \LeadersLinked\Plugin\CurrentNetworkPlugin::class,
1 www 6208
        ]
6209
    ],
6210
    'view_manager' => [
6211
        'display_not_found_reason' => true,
6212
        'display_exceptions' => true,
6213
        'doctype' => 'HTML5',
6214
        'not_found_template' => 'error/404',
6215
        'exception_template' => 'error/index',
6216
        'template_map' => [
6217
            'layout/layout' => __DIR__ . '/../view/layout/layout.phtml',
6218
            'error/404' => __DIR__ . '/../view/error/404.phtml',
6219
            'error/index' => __DIR__ . '/../view/error/index.phtml'
6220
        ],
6221
        'template_path_stack' => [
6222
            __DIR__ . '/../view'
6223
        ],
6224
        'strategies' => [
6225
            'ViewJsonStrategy',
6226
            'RenderingStrategy'
6227
        ]
6228
    ]
6229
];
6230