Proyectos de Subversion LeadersLinked - Backend

Rev

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