Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 6879 | 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
553 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
 
10
return [
11
    'navigation' => [
5612 anderson 12
        'menu' => [],
1 www 13
        'footer' => [
14
            [
15
                'label' => 'LABEL_PRIVACY_POLICY',
16
                'route' => 'privacy-policy'
17
            ],
18
            [
19
                'label' => 'LABEL_PROFESSIONALISM_POLICY',
20
                'route' => 'professionalism-policy'
21
            ],
22
            [
23
                'label' => 'LABEL_COOKIES_POLICY',
24
                'route' => 'cookies'
25
            ],
26
            [
27
                'label' => 'LABEL_TERMS_AND_CONDITIONS',
28
                'route' => 'terms-and-conditions'
29
            ],
30
        ]
31
    ],
32
    'router' => [
33
        'routes' => [
34
            'signin' => [
35
                'type' => Literal::class,
36
                'options' => [
37
                    'route' => '/signin',
38
                    'defaults' => [
39
                        'controller' => '\LeadersLinked\Controller\AuthController',
40
                        'action' => 'signin'
41
                    ]
42
                ],
43
                'may_terminate' => true,
44
                'child_routes' => [
3298 efrain 45
 
3639 efrain 46
 
1 www 47
                    'facebook' => [
48
                        'type' => Literal::class,
49
                        'options' => [
50
                            'route' => '/facebook',
51
                            'defaults' => [
52
                                'controller' => '\LeadersLinked\Controller\AuthController',
53
                                'action' => 'facebook',
54
                            ],
55
                        ],
56
                    ],
57
                    'twitter' => [
58
                        'type' => Literal::class,
59
                        'options' => [
60
                            'route' => '/twitter',
61
                            'defaults' => [
62
                                'controller' => '\LeadersLinked\Controller\AuthController',
63
                                'action' => 'twitter',
64
                            ],
65
                        ],
66
                    ],
67
                    'google' => [
68
                        'type' => Literal::class,
69
                        'options' => [
70
                            'route' => '/google',
71
                            'defaults' => [
72
                                'controller' => '\LeadersLinked\Controller\AuthController',
73
                                'action' => 'google',
74
                            ],
75
                        ],
76
                    ],
3639 efrain 77
                    'impersonate' => [
78
                        'type' => Literal::class,
79
                        'options' => [
80
                            'route' => '/impersonate',
81
                            'defaults' => [
82
                                'controller' => '\LeadersLinked\Controller\AuthController',
83
                                'action' => 'impersonate',
84
                            ],
85
                        ],
86
                    ],
1 www 87
                ]
88
            ],
3775 efrain 89
            //85a6de9c-c81e-4e47-b931-4cc32774defa
90
            'shorter' => [
91
                'type' => Segment::class,
92
                'options' => [
93
                    'route' => '/shorter/:code',
94
                    'constraints' => [
95
                        'code' => '[A-Za-z0-9\-]+\=*',
96
                    ],
97
                    'defaults' => [
98
                        'controller' => '\LeadersLinked\Controller\ShorterController',
99
                        'action' => 'index'
100
                    ]
101
                ],
102
                'may_terminate' => true,
103
                'child_routes' => [
104
                    'generate' => [
105
                        'type' => Segment::class,
106
                        'options' => [
107
                            'route' => '/generate/:type',
108
                            'constraints' => [
109
                                'type' => 'feed|post',
5612 anderson 110
 
3775 efrain 111
                            ],
112
                            'defaults' => [
113
                                'controller' => '\LeadersLinked\Controller\ShorterController',
114
                                'action' => 'generate'
115
                            ]
116
                        ]
117
                    ],
118
                ]
5612 anderson 119
 
3775 efrain 120
            ],
5612 anderson 121
 
1 www 122
            'reset-password' => [
123
                'type' => Segment::class,
124
                'options' => [
125
                    'route' => '/reset-password/:code',
126
                    'constraints' => [
127
                        'code' => '[a-zA-Z0-9--]+'
128
                    ],
129
                    'defaults' => [
130
                        'controller' => '\LeadersLinked\Controller\AuthController',
131
                        'action' => 'resetPassword'
132
                    ]
133
                ]
134
            ],
135
            'forgot-password' => [
136
                'type' => Literal::class,
137
                'options' => [
138
                    'route' => '/forgot-password',
139
                    'defaults' => [
140
                        'controller' => '\LeadersLinked\Controller\AuthController',
141
                        'action' => 'forgotPassword'
142
                    ]
143
                ]
144
            ],
145
            'signup' => [
146
                'type' => Literal::class,
147
                'options' => [
148
                    'route' => '/signup',
149
                    'defaults' => [
150
                        'controller' => '\LeadersLinked\Controller\AuthController',
151
                        'action' => 'signup'
152
                    ]
153
                ]
154
            ],
155
            'activate-account' => [
156
                'type' => Segment::class,
157
                'options' => [
158
                    'route' => '/activate-account/:code',
159
                    'constraints' => [
160
                        'code' => '[a-zA-Z0-9]+'
161
                    ],
162
                    'defaults' => [
163
                        'controller' => '\LeadersLinked\Controller\AuthController',
164
                        'action' => 'activateAccount'
165
                    ]
166
                ]
167
            ],
168
            'signout' => [
169
                'type' => Literal::class,
170
                'options' => [
171
                    'route' => '/signout',
172
                    'defaults' => [
173
                        'controller' => '\LeadersLinked\Controller\AuthController',
174
                        'action' => 'signout'
175
                    ]
176
                ]
177
            ],
210 efrain 178
            'csrf' => [
179
                'type' => Literal::class,
180
                'options' => [
181
                    'route' => '/csrf',
182
                    'defaults' => [
183
                        'controller' => '\LeadersLinked\Controller\AuthController',
184
                        'action' => 'csrf'
185
                    ]
186
                ]
187
            ],
2444 efrain 188
 
1 www 189
            'onroom' => [
190
                'type' => Literal::class,
191
                'options' => [
192
                    'route' => '/onroom',
193
                    'defaults' => [
194
                        'controller' => '\LeadersLinked\Controller\AuthController',
195
                        'action' => 'onroom'
196
                    ]
197
                ]
198
            ],
199
            'home' => [
200
                'type' => Literal::class,
201
                'options' => [
202
                    'route' => '/',
203
                    'defaults' => [
204
                        'controller' => '\LeadersLinked\Controller\HomeController',
205
                        'action' => 'index'
206
                    ]
207
                ]
208
            ],
5751 efrain 209
            'language' => [
210
                'type' => Literal::class,
211
                'options' => [
212
                    'route' => '/language',
213
                    'defaults' => [
214
                        'controller' => '\LeadersLinked\Controller\HomeController',
215
                        'action' => 'language'
216
                    ]
217
                ]
218
            ],
3298 efrain 219
            'share' => [
220
                'type' => Segment::class,
221
                'options' => [
3379 efrain 222
                    'route' => '/share/type/:type/code/:code/user/:user/timestamp/:timestamp/rand/:rand/password/:password',
3298 efrain 223
                    'constraints' => [
224
                        'type' => 'feed|post',
225
                        'code' => '[A-Za-z0-9\-]+\=*',
3379 efrain 226
                        'user' => '[A-Za-z0-9\-]+\=*',
227
                        'timestamp' => '[0-9]*',
228
                        'rand' => '[0-9]*',
229
                        'password' => '[A-Za-z0-9]*',
3298 efrain 230
                    ],
231
                    'defaults' => [
232
                        'controller' => '\LeadersLinked\Controller\HomeController',
233
                        'action' => 'share',
234
                    ],
235
                ],
4778 efrain 236
                'may_terminate' => true,
237
                'child_routes' => [
238
                    'increment-external-counter' => [
239
                        'type' => Segment::class,
240
                        'options' => [
241
                            'route' => '/increment-external-counter',
242
                            'defaults' => [
243
                                'controller' => '\LeadersLinked\Controller\HomeController',
244
                                'action' => 'incTotalExternalShared',
245
                            ],
246
                        ],
247
                    ],
248
                ]
3298 efrain 249
            ],
5612 anderson 250
 
1 www 251
            'post' => [
252
                'type' => Segment::class,
253
                'options' => [
254
                    'route' => '/post/:id',
255
                    'constraints' => [
256
                        'id' => '[A-Za-z0-9\-]+\=*',
257
                    ],
258
                    'defaults' => [
4808 efrain 259
                        'controller' => '\LeadersLinked\Controller\PostController',
260
                        'action' => 'view'
1 www 261
                    ]
4808 efrain 262
                ],
263
                'may_terminate' => true,
264
                'child_routes' => [
265
                    'comments' => [
266
                        'type' => Segment::class,
267
                        'options' => [
268
                            'route' => '/comments',
269
                            'defaults' => [
270
                                'controller' => '\LeadersLinked\Controller\PostController',
271
                                'action' => 'comments'
272
                            ]
273
                        ],
274
                        'may_terminate' => true,
275
                        'child_routes' => [
276
                            'add' => [
277
                                'type' => Segment::class,
278
                                'options' => [
279
                                    'route' => '/add',
280
                                    'defaults' => [
281
                                        'controller' => '\LeadersLinked\Controller\PostController',
282
                                        'action' => 'commentsAdd'
283
                                    ]
284
                                ]
285
                            ],
286
                            'delete' => [
287
                                'type' => Segment::class,
288
                                'options' => [
289
                                    'route' => '/delete/:comment',
290
                                    'constraints' => [
291
                                        'comment' => '[A-Za-z0-9\-]+\=*',
292
                                    ],
293
                                    'defaults' => [
294
                                        'controller' => '\LeadersLinked\Controller\PostController',
295
                                        'action' => 'commentsDelete'
296
                                    ]
297
                                ]
298
                            ],
299
                        ],
300
                    ],
5765 efrain 301
                    'save-reaction' => [
4808 efrain 302
                        'type' => Segment::class,
303
                        'options' => [
5765 efrain 304
                            'route' => '/save-reaction/:reaction',
305
                            'constraints' => [
306
                                'reaction' => 'r|s|l|i|f',
307
                            ],
4808 efrain 308
                            'defaults' => [
309
                                'controller' => '\LeadersLinked\Controller\PostController',
5765 efrain 310
                                'action' => 'saveReaction'
4808 efrain 311
                            ]
312
                        ]
313
                    ],
5765 efrain 314
 
315
                    'delete-reaction' => [
4808 efrain 316
                        'type' => Segment::class,
317
                        'options' => [
5765 efrain 318
                            'route' => '/delete-reaction',
4808 efrain 319
                            'defaults' => [
320
                                'controller' => '\LeadersLinked\Controller\PostController',
5765 efrain 321
                                'action' => 'deleteReaction'
4808 efrain 322
                            ]
323
                        ]
324
                    ],
6388 efrain 325
 
5612 anderson 326
 
4808 efrain 327
                ],
5612 anderson 328
 
1 www 329
            ],
330
            'privacy-policy' => [
331
                'type' => Literal::class,
332
                'options' => [
333
                    'route' => '/privacy-policy',
334
                    'defaults' => [
335
                        'controller' => '\LeadersLinked\Controller\HomeController',
336
                        'action' => 'privacyPolicy'
337
                    ]
338
                ]
339
            ],
340
            'cookies' => [
341
                'type' => Literal::class,
342
                'options' => [
343
                    'route' => '/cookies',
344
                    'defaults' => [
345
                        'controller' => '\LeadersLinked\Controller\HomeController',
346
                        'action' => 'cookies'
347
                    ]
348
                ]
349
            ],
350
            'professionalism-policy' => [
351
                'type' => Literal::class,
352
                'options' => [
353
                    'route' => '/professionalism-policy',
354
                    'defaults' => [
355
                        'controller' => '\LeadersLinked\Controller\HomeController',
356
                        'action' => 'professionalismPolicy'
357
                    ]
358
                ]
359
            ],
360
            'terms-and-conditions' => [
361
                'type' => Literal::class,
362
                'options' => [
363
                    'route' => '/terms-and-conditions',
364
                    'defaults' => [
365
                        'controller' => '\LeadersLinked\Controller\HomeController',
366
                        'action' => 'termsAndConditions'
367
                    ]
368
                ]
369
            ],
370
            'check-session' => [
371
                'type' => Literal::class,
372
                'options' => [
373
                    'route' => '/check-session',
374
                    'defaults' => [
375
                        'controller' => '\LeadersLinked\Controller\HomeController',
376
                        'action' => 'checkSession'
377
                    ]
378
                ]
379
            ],
380
            'notifications' => [
381
                'type' => Literal::class,
382
                'options' => [
383
                    'route' => '/notifications',
384
                    'defaults' => [
3262 efrain 385
                        'controller' => '\LeadersLinked\Controller\NotificationController',
386
                        'action' => 'index'
1 www 387
                    ]
3262 efrain 388
                ],
389
                'may_terminate' => true,
390
                'child_routes' => [
391
                    'mark-read' => [
392
                        'type' => Segment::class,
393
                        'options' => [
394
                            'route' => '/mark-read/:id',
395
                            'constraints' => [
396
                                'id' => '[A-Za-z0-9\-]+\=*',
397
                            ],
398
                            'defaults' => [
399
                                'controller' => '\LeadersLinked\Controller\NotificationController',
400
                                'action' => 'markRead'
401
                            ]
402
                        ]
403
                    ],
404
                    'mark-all-read' => [
405
                        'type' => Literal::class,
406
                        'options' => [
407
                            'route' => '/mark-all-read',
408
                            'defaults' => [
409
                                'controller' => '\LeadersLinked\Controller\NotificationController',
410
                                'action' => 'markAllRead'
411
                            ]
412
                        ]
413
                    ],
414
                    'delete' => [
415
                        'type' => Segment::class,
416
                        'options' => [
417
                            'route' => '/delete/:id',
418
                            'constraints' => [
419
                                'id' => '[A-Za-z0-9\-]+\=*',
420
                            ],
421
                            'defaults' => [
422
                                'controller' => '\LeadersLinked\Controller\NotificationController',
423
                                'action' => 'delete'
424
                            ]
425
                        ]
426
                    ],
427
                    'clear' => [
428
                        'type' => Literal::class,
429
                        'options' => [
430
                            'route' => '/clear',
431
                            'defaults' => [
432
                                'controller' => '\LeadersLinked\Controller\NotificationController',
433
                                'action' => 'clear'
434
                            ]
435
                        ]
436
                    ],
437
                    'unreads' => [
438
                        'type' => Literal::class,
439
                        'options' => [
440
                            'route' => '/unreads',
441
                            'defaults' => [
442
                                'controller' => '\LeadersLinked\Controller\NotificationController',
443
                                'action' => 'unreads'
444
                            ]
445
                        ]
446
                    ],
5612 anderson 447
                ]
1 www 448
            ],
3639 efrain 449
            'impersonate' => [
450
                'type' => Literal::class,
451
                'options' => [
452
                    'route' => '/impersonate',
453
                    'defaults' => [
454
                        'controller' => '\LeadersLinked\Controller\ImpersonateController',
455
                        'action' => 'index'
456
                    ]
457
                ],
458
                'may_terminate' => true,
459
                'child_routes' => [
460
                    'execute' => [
461
                        'type' => Segment::class,
462
                        'options' => [
463
                            'route' => '/execute/:id',
464
                            'constraints' => [
465
                                'id' => '[A-Za-z0-9\-]+\=*',
466
                            ],
467
                            'defaults' => [
468
                                'controller' => '\LeadersLinked\Controller\ImpersonateController',
469
                                'action' => 'execute'
470
                            ]
471
                        ]
472
                    ],
5612 anderson 473
                ]
474
            ],
475
 
5050 efrain 476
            'my-coach' => [
477
                'type' => Literal::class,
478
                'options' => [
479
                    'route' => '/my-coach',
480
                    'defaults' => [
481
                        'controller' => '\LeadersLinked\Controller\MyCoachController',
482
                        'action' => 'index'
483
                    ]
484
                ],
485
                'may_terminate' => true,
6388 efrain 486
                'child_routes' => [
487
                    'questions' => [
488
                        'type' => Literal::class,
489
                        'options' => [
490
                            'route' => '/questions',
491
                            'defaults' => [
6521 efrain 492
                                'controller' => '\LeadersLinked\Controller\MyCoachController',
493
                                'action' => 'questions'
6388 efrain 494
                            ],
495
                        ],
496
                        'may_terminate' => true,
497
                        'child_routes' => [
498
                            'add' => [
499
                                'type' => Literal::class,
500
                                'options' => [
501
                                    'route' => '/add',
502
                                    'defaults' => [
6521 efrain 503
                                        'controller' => '\LeadersLinked\Controller\MyCoachController',
504
                                        'action' => 'addQuestion'
6388 efrain 505
                                    ],
506
                                ],
507
                            ],
508
                            'view' => [
509
                                'type' => Segment::class,
510
                                'options' => [
511
                                    'route' => '/view/:id',
512
                                    'constraints' => [
513
                                        'id' => '[A-Za-z0-9\-]+\=*',
514
                                    ],
515
                                    'defaults' => [
6521 efrain 516
                                        'controller' => '\LeadersLinked\Controller\MyCoachController',
517
                                        'action' => 'viewQuestion'
6388 efrain 518
                                    ]
519
                                ]
520
                            ],
521
                            'edit' => [
522
                                'type' => Segment::class,
523
                                'options' => [
524
                                    'route' => '/edit/:id',
525
                                    'constraints' => [
526
                                        'id' => '[A-Za-z0-9\-]+\=*',
527
                                    ],
528
                                    'defaults' => [
6521 efrain 529
                                        'controller' => '\LeadersLinked\Controller\MyCoachController',
530
                                        'action' => 'editQuestion'
6388 efrain 531
                                    ]
532
                                ]
533
                            ],
534
                            'delete' => [
535
                                'type' => Segment::class,
536
                                'options' => [
537
                                    'route' => '/delete/:id',
538
                                    'constraints' => [
539
                                        'id' => '[A-Za-z0-9\-]+\=*',
540
                                    ],
541
                                    'defaults' => [
6521 efrain 542
                                        'controller' => '\LeadersLinked\Controller\MyCoachController',
543
                                        'action' => 'deleteQuestion'
6388 efrain 544
                                    ]
545
                                ]
546
                            ],
547
                            'reaction' => [
548
                                'type' => Segment::class,
549
                                'options' => [
550
                                    'route' => '/reaction/:id',
551
                                    'constraints' => [
552
                                        'id' => '[A-Za-z0-9\-]+\=*',
553
                                    ],
554
                                    'defaults' => [
6521 efrain 555
                                        'controller' => '\LeadersLinked\Controller\MyCoachController',
556
                                        'action' => 'reactions'
6388 efrain 557
                                    ]
558
                                ],
559
                                'may_terminate' => true,
560
                                'child_routes' => [
561
                                    'save' => [
562
                                        'type' => Literal::class,
563
                                        'options' => [
564
                                            'route' => '/save',
565
                                            'defaults' => [
6521 efrain 566
                                                'controller' => '\LeadersLinked\Controller\MyCoachController',
567
                                                'action' => 'saveReaction'
6388 efrain 568
                                            ],
569
                                        ],
570
                                    ],
571
                                    'delete' => [
572
                                        'type' =>Literal::class,
573
                                        'options' => [
574
                                            'route' => '/delete',
575
                                            'defaults' => [
6521 efrain 576
                                                'controller' => '\LeadersLinked\Controller\MyCoachController',
577
                                                'action' => 'deleteReaction'
6388 efrain 578
                                            ]
579
                                        ]
580
                                    ],
581
                                ]
582
                            ],
583
                            'answers' => [
584
                                'type' => Segment::class,
585
                                'options' => [
586
                                    'route' => '/answers/:id',
587
                                    'constraints' => [
588
                                        'id' => '[A-Za-z0-9\-]+\=*',
589
                                    ],
590
                                    'defaults' => [
6521 efrain 591
                                        'controller' => '\LeadersLinked\Controller\MyCoachController',
592
                                        'action' => 'answers'
6388 efrain 593
                                    ]
594
                                ],
595
                                'may_terminate' => true,
596
                                'child_routes' => [
597
                                    'add' => [
598
                                        'type' => Literal::class,
599
                                        'options' => [
600
                                            'route' => '/add',
601
                                            'defaults' => [
6521 efrain 602
                                                'controller' => '\LeadersLinked\Controller\MyCoachController',
603
                                                'action' => 'addAnswer'
6388 efrain 604
                                            ],
605
                                        ],
606
                                    ],
607
 
608
                                    'edit' => [
609
                                        'type' => Segment::class,
610
                                        'options' => [
611
                                            'route' => '/edit/:answer',
612
                                            'constraints' => [
613
                                                'answer' => '[A-Za-z0-9\-]+\=*',
614
                                            ],
615
                                            'defaults' => [
6521 efrain 616
                                                'controller' => '\LeadersLinked\Controller\MyCoachController',
617
                                                'action' => 'editAnswer'
6388 efrain 618
                                            ]
619
                                        ]
620
                                    ],
621
                                    'delete' => [
622
                                        'type' => Segment::class,
623
                                        'options' => [
624
                                            'route' => '/delete/:answer',
625
                                            'constraints' => [
626
                                                'answer' => '[A-Za-z0-9\-]+\=*',
627
                                            ],
628
                                            'defaults' => [
6521 efrain 629
                                                'controller' => '\LeadersLinked\Controller\MyCoachController',
630
                                                'action' => 'deleteAnswer'
6388 efrain 631
                                            ]
632
                                        ]
633
                                    ],
634
                                ]
635
                            ],
636
 
637
                            'comments' => [
638
                                'type' => Segment::class,
639
                                'options' => [
640
                                    'route' => '/comments/:id',
641
                                    'constraints' => [
642
                                        'id' => '[A-Za-z0-9\-]+\=*',
643
                                    ],
644
                                    'defaults' => [
6521 efrain 645
                                        'controller' => '\LeadersLinked\Controller\MyCoachController',
6388 efrain 646
                                        'action' => 'comments'
647
                                    ]
648
                                ],
649
                                'may_terminate' => true,
650
                                'child_routes' => [
651
                                    'add' => [
652
                                        'type' => Literal::class,
653
                                        'options' => [
654
                                            'route' => '/add',
655
                                            'defaults' => [
6521 efrain 656
                                                'controller' => '\LeadersLinked\\Controller\MyCoachController',
6388 efrain 657
                                                'action' => 'addComment'
658
                                            ]
659
                                        ]
660
                                    ],
661
                                    'delete' => [
662
                                        'type' => Segment::class,
663
                                        'options' => [
664
                                            'route' => '/delete/:comment',
665
                                            'constraints' => [
666
                                                'comment' => '[A-Za-z0-9\-]+\=*',
667
                                            ],
668
                                            'defaults' => [
6521 efrain 669
                                                'controller' => '\LeadersLinked\\Controller\MyCoachController',
6388 efrain 670
                                                'action' => 'deleteComment'
671
                                            ]
672
                                        ]
673
                                    ],
674
                                ]
675
                            ],
676
                        ]
677
                    ],
678
                ],
5612 anderson 679
            ],
680
 
6001 efrain 681
            'knowledge-area' => [
682
                'type' => Literal::class,
683
                'options' => [
684
                    'route' => '/knowledge-area',
685
                    'defaults' => [
686
                        'controller' => '\LeadersLinked\Controller\KnowledgeAreaController',
687
                        'action' => 'index'
688
                    ]
689
                ],
690
                'may_terminate' => true,
6056 efrain 691
                'child_routes' => [
692
                    'add' => [
693
                        'type' => Literal::class,
694
                        'options' => [
695
                            'route' => '/add',
696
                            'defaults' => [
697
                                'controller' => '\LeadersLinked\Controller\KnowledgeAreaController',
698
                                'action' => 'add'
699
                            ],
700
                        ],
701
                    ],
702
                    'edit' => [
703
                        'type' => Segment::class,
704
                        'options' => [
705
                            'route' => '/edit/:id',
706
                            'constraints' => [
707
                                'id' => '[A-Za-z0-9\-]+\=*',
708
                            ],
709
                            'defaults' => [
710
                                'controller' => '\LeadersLinked\Controller\KnowledgeAreaController',
711
                                'action' => 'edit'
712
                            ]
713
                        ]
714
                    ],
715
                    'delete' => [
716
                        'type' => Segment::class,
717
                        'options' => [
718
                            'route' => '/delete/:id',
719
                            'constraints' => [
720
                                'id' => '[A-Za-z0-9\-]+\=*',
721
                            ],
722
                            'defaults' => [
723
                                'controller' => '\LeadersLinked\Controller\KnowledgeAreaController',
724
                                'action' => 'delete'
725
                            ]
726
                        ]
727
                    ],
728
                    'view' => [
729
                        'type' => Segment::class,
730
                        'options' => [
731
                            'route' => '/view/:id',
732
                            'constraints' => [
733
                                'id' => '[A-Za-z0-9\-]+\=*',
734
                            ],
735
                            'defaults' => [
736
                                'controller' => '\LeadersLinked\Controller\KnowledgeAreaController',
737
                                'action' => 'view'
738
                            ]
739
                        ]
740
                    ],
741
                    'comments' => [
742
                        'type' => Segment::class,
743
                        'options' => [
744
                            'route' => '/comments/:id',
745
                            'constraints' => [
746
                                'id' => '[A-Za-z0-9\-]+\=*',
747
                            ],
748
                            'defaults' => [
749
                                'controller' => '\LeadersLinked\Controller\KnowledgeAreaController',
750
                                'action' => 'comments'
751
                            ]
752
                        ],
753
                        'may_terminate' => true,
754
                        'child_routes' => [
755
                            'add' => [
756
                                'type' => Literal::class,
757
                                'options' => [
758
                                    'route' => '/add',
759
                                    'defaults' => [
760
                                        'controller' => '\LeadersLinked\Controller\KnowledgeAreaController',
761
                                        'action' => 'addComment'
762
                                    ]
763
                                ]
764
                            ],
765
                            'delete' => [
766
                                'type' => Segment::class,
767
                                'options' => [
768
                                    'route' => '/delete/:comment',
769
                                    'constraints' => [
770
                                        'comment' => '[A-Za-z0-9\-]+\=*',
771
                                    ],
772
                                    'defaults' => [
773
                                        'controller' => '\LeadersLinked\Controller\KnowledgeAreaController',
774
                                        'action' => 'deleteComment'
775
                                    ]
776
                                ]
777
                            ],
778
                        ]
779
                    ],
780
                    'save-reaction' => [
781
                        'type' => Segment::class,
782
                        'options' => [
783
                            'route' => '/save-reaction/:id',
784
                            'constraints' => [
785
                                'id' => '[A-Za-z0-9\-]+\=*',
786
                            ],
787
                            'defaults' => [
788
                                'controller' => '\LeadersLinked\Controller\KnowledgeAreaController',
789
                                'action' => 'saveReaction'
790
                            ]
791
                        ]
792
                    ],
793
                    'delete-reaction' => [
794
                        'type' => Segment::class,
795
                        'options' => [
796
                            'route' => '/delete-reaction/:id',
797
                            'constraints' => [
798
                                'id' => '[A-Za-z0-9\-]+\=*',
799
                            ],
800
                            'defaults' => [
801
                                'controller' => '\LeadersLinked\Controller\KnowledgeAreaController',
802
                                'action' => 'deleteReaction'
803
                            ]
804
                        ]
805
                    ],
806
 
807
                ],
6001 efrain 808
            ],
809
 
810
 
1 www 811
            'backend' => [
812
                'type' => Literal::class,
813
                'options' => [
814
                    'route' => '/backend',
815
                    'defaults' => [
816
                        'controller' => '\LeadersLinked\Controller\BackendController',
817
                        'action' => 'index'
818
                    ]
819
                ],
820
                'may_terminate' => true,
821
                'child_routes' => [
822
                    'signin-admin' => [
823
                        'type' => Literal::class,
824
                        'options' => [
825
                            'route' => '/signin-admin',
826
                            'defaults' => [
827
                                'controller' => '\LeadersLinked\Controller\BackendController',
828
                                'action' => 'signinAdmin'
829
                            ],
830
                        ],
831
                    ],
832
                    'signin-company' => [
833
                        'type' => Segment::class,
834
                        'options' => [
4398 efrain 835
                            'route' => '/signin-company/:id[/relational/:relational/type/:type]',
1 www 836
                            'constraints' => [
837
                                'id' => '[A-Za-z0-9\-]+\=*',
4398 efrain 838
                                'relational' => '[A-Za-z0-9\-]+\=*',
839
                                'type' => '[A-Za-z0-9\-]+\=*',
1 www 840
                            ],
841
                            'defaults' => [
842
                                'controller' => '\LeadersLinked\Controller\BackendController',
843
                                'action' => 'signinCompany'
844
                            ],
845
                        ],
846
                    ],
553 geraldo 847
                ]
1 www 848
            ],
849
            'dashboard' => [
850
                'type' => Segment::class,
851
                'options' => [
852
                    'route' => '/dashboard[/feed/:feed]',
853
                    'constraints' => [
854
                        'feed' => '[A-Za-z0-9\-]+\=*',
855
                    ],
856
                    'defaults' => [
857
                        'controller' => '\LeadersLinked\Controller\DashboardController',
858
                        'action' => 'index'
859
                    ]
860
                ]
861
            ],
60 efrain 862
            'dashboard2' => [
1 www 863
                'type' => Segment::class,
864
                'options' => [
60 efrain 865
                    'route' => '/dashboard2',
1 www 866
                    'defaults' => [
867
                        'controller' => '\LeadersLinked\Controller\DashboardController',
60 efrain 868
                        'action' => 'dashboard2'
1 www 869
                    ]
870
                ]
871
            ],
872
            'storage' => [
873
                'type' => Segment::class,
874
                'options' => [
875
                    'route' => '/storage/type/:type[/code/:code][/filename/:filename][/]',
876
                    'constraints' => [
6056 efrain 877
                        'type' => 'user|user-profile|user-cover|company|company-cover|group|group-cover|job|chat|image|feed|post|message|microlearning-topic|microlearning-capsule|microlearning-slide|daily-pulse|engagement-reward|knowledge-area',
1 www 878
                        'code' => '[A-Za-z0-9\-]+\=*',
879
                        'filename' => '[a-zA-Z0-9\-\_]+\.(jpg|jpeg|gif|png|mp3|mp4|flv|doc|pdf|docx|xls|ppt|pdf|xlsx|pptx)'
880
                    ],
881
                    // MjM5ODk0Mzgg
882
                    'defaults' => [
883
                        'controller' => '\LeadersLinked\Controller\StorageController',
884
                        'action' => 'download'
885
                    ]
886
                ]
887
            ],
3639 efrain 888
            'storage-network' => [
889
                'type' => Segment::class,
890
                'options' => [
891
                    'route' => '/storage-network/type/:type[/]',
892
                    'constraints' => [
5848 efrain 893
                        'type' => 'navbar|logo|favico|moodle',
3639 efrain 894
                    ],
895
                    // MjM5ODk0Mzgg
896
                    'defaults' => [
897
                        'controller' => '\LeadersLinked\Controller\StorageNetworkController',
898
                        'action' => 'download'
899
                    ]
900
                ]
901
            ],
1 www 902
            'paypal' => [
903
                'type' => Literal::class,
904
                'options' => [
905
                    'route' => '/paypal',
906
                    'defaults' => [
907
                        'controller' => '\LeadersLinked\Controller\PaypalController',
908
                        'action' => 'index'
909
                    ]
910
                ],
911
                'may_terminate' => true,
912
                'child_routes' => [
913
                    'success' => [
914
                        'type' => Literal::class,
915
                        'options' => [
916
                            'route' => '/success',
917
                            'defaults' => [
918
                                'controller' => '\LeadersLinked\Controller\PaypalController',
919
                                'action' => 'success',
920
                            ],
921
                        ],
922
                    ],
923
                    'cancel' => [
924
                        'type' => Literal::class,
925
                        'options' => [
926
                            'route' => '/cancel',
927
                            'defaults' => [
928
                                'controller' => '\LeadersLinked\Controller\PaypalController',
929
                                'action' => 'cancel',
930
                            ],
931
                        ],
932
                    ],
933
                ]
553 geraldo 934
            ],
1 www 935
            'chat' => [
936
                'type' => Literal::class,
937
                'options' => [
938
                    'route' => '/chat',
939
                    'defaults' => [
940
                        'controller' => '\LeadersLinked\Controller\ChatController',
941
                        'action' => 'index'
942
                    ]
943
                ],
944
                'may_terminate' => true,
945
                'child_routes' => [
946
                    // Inicio de los Routes del Chat //
5612 anderson 947
 
4857 efrain 948
                    'users' => [
949
                        'type' => Literal::class,
950
                        'options' => [
951
                            'route' => '/users',
952
                            'defaults' => [
953
                                'controller' => '\LeadersLinked\Controller\ChatController',
954
                                'action' => 'users',
955
                            ],
956
                        ],
957
                    ],
553 geraldo 958
 
1 www 959
                    'heart-beat' => [
960
                        'type' => Literal::class,
961
                        'options' => [
962
                            'route' => '/heart-beat',
963
                            'defaults' => [
964
                                'controller' => '\LeadersLinked\Controller\ChatController',
965
                                'action' => 'heartBeat',
966
                            ],
967
                        ],
968
                    ],
969
                    'create-group' => [
970
                        'type' => Literal::class,
971
                        'options' => [
972
                            'route' => '/create-group',
973
                            'defaults' => [
974
                                'controller' => '\LeadersLinked\Controller\ChatController',
975
                                'action' => 'createGroup',
976
                            ],
977
                        ],
978
                    ],
4113 efrain 979
                    'zoom' => [
980
                        'type' => Segment::class,
981
                        'options' => [
4131 efrain 982
                            'route' => '/zoom/:id',
4113 efrain 983
                            'constraints' => [
984
                                'id' => '[A-Za-z0-9\-]+\=*',
985
                            ],
986
                            'defaults' => [
4131 efrain 987
                                'controller' => '\LeadersLinked\Controller\ChatController',
988
                                'action' => 'zoom',
4113 efrain 989
                            ],
990
                        ],
991
                    ],
5343 efrain 992
                    'open-or-create' => [
993
                        'type' => Segment::class,
994
                        'options' => [
995
                            'route' => '/open-or-create/:id',
996
                            'constraints' => [
997
                                'id' => '[A-Za-z0-9\-]+\=*',
998
                            ],
999
                            'defaults' => [
1000
                                'controller' => '\LeadersLinked\Controller\ChatController',
1001
                                'action' => 'openOrCreate',
1002
                            ],
1003
                        ],
1004
                    ],
1 www 1005
                    'add-user-to-group' => [
1006
                        'type' => Segment::class,
1007
                        'options' => [
1008
                            'route' => '/add-user-to-group/:group_id',
1009
                            'constraints' => [
1010
                                'group_id' => '[A-Za-z0-9\-]+\=*',
1011
                            ],
1012
                            'defaults' => [
1013
                                'controller' => '\LeadersLinked\Controller\ChatController',
1014
                                'action' => 'addUserToGroup',
1015
                            ],
1016
                        ],
1017
                    ],
1018
                    'mark-seen' => [
1019
                        'type' => Segment::class,
1020
                        'options' => [
1021
                            'route' => '/mark-seen/:id',
1022
                            'constraints' => [
1023
                                'id' => '[A-Za-z0-9\-]+\=*',
1024
                            ],
1025
                            'defaults' => [
1026
                                'controller' => '\LeadersLinked\Controller\ChatController',
1027
                                'action' => 'markSeen',
1028
                            ],
1029
                        ],
1030
                    ],
1031
                    'mark-received' => [
1032
                        'type' => Segment::class,
1033
                        'options' => [
1034
                            'route' => '/mark-received/:id',
1035
                            'constraints' => [
1036
                                'id' => '[A-Za-z0-9\-]+\=*',
1037
                            ],
1038
                            'defaults' => [
1039
                                'controller' => '\LeadersLinked\Controller\ChatController',
1040
                                'action' => 'markReceived',
1041
                            ],
1042
                        ],
1043
                    ],
1044
                    'remove-user-from-group' => [
1045
                        'type' => Segment::class,
1046
                        'options' => [
1047
                            'route' => '/remove-user-from-group/:group_id/:user_id',
1048
                            'constraints' => [
1049
                                'group_id' => '[A-Za-z0-9\-]+\=*',
1050
                                'user_id' => '[A-Za-z0-9\-]+\=*',
1051
                            ],
1052
                            'defaults' => [
1053
                                'controller' => '\LeadersLinked\Controller\ChatController',
1054
                                'action' => 'removeUserFromGroup',
1055
                            ],
1056
                        ],
1057
                    ],
1058
                    'get-all-messages' => [
553 geraldo 1059
                        'type' => Segment::class,
1 www 1060
                        'options' => [
1061
                            'route' => '/get-all-messages/:id',
1062
                            'constraints' => [
1063
                                'id' => '[A-Za-z0-9\-]+\=*',
1064
                            ],
1065
                            'defaults' => [
1066
                                'controller' => '\LeadersLinked\Controller\ChatController',
1067
                                'action' => 'getAllMessages',
1068
                            ],
1069
                        ],
1070
                    ],
1071
                    'send' => [
553 geraldo 1072
                        'type' => Segment::class,
1 www 1073
                        'options' => [
1074
                            'route' => '/send/:id',
1075
                            'constraints' => [
1076
                                'id' => '[A-Za-z0-9\-]+\=*',
1077
                            ],
1078
                            'defaults' => [
1079
                                'controller' => '\LeadersLinked\Controller\ChatController',
1080
                                'action' => 'send',
1081
                            ],
1082
                        ],
1083
                    ],
1084
                    'get-contacts-availables-for-group' => [
1085
                        'type' => Segment::class,
1086
                        'options' => [
1087
                            'route' => '/get-contacts-availables-for-group/:group_id',
1088
                            'constraints' => [
1089
                                'group_id' => '[A-Za-z0-9\-]+\=*',
1090
                            ],
1091
                            'defaults' => [
1092
                                'controller' => '\LeadersLinked\Controller\ChatController',
1093
                                'action' => 'contactAvailableGroupList',
1094
                            ],
1095
                        ],
1096
                    ],
1097
                    'get-contact-group-list' => [
1098
                        'type' => Segment::class,
1099
                        'options' => [
1100
                            'route' => '/get-contact-group-list/:group_id',
1101
                            'constraints' => [
1102
                                'group_id' => '[A-Za-z0-9\-]+\=*',
1103
                            ],
1104
                            'defaults' => [
1105
                                'controller' => '\LeadersLinked\Controller\ChatController',
1106
                                'action' => 'contactGroupList',
1107
                            ],
1108
                        ],
1109
                    ],
1110
                    'leave-group' => [
1111
                        'type' => Segment::class,
1112
                        'options' => [
1113
                            'route' => '/leave-group/:group_id',
1114
                            'constraints' => [
1115
                                'group_id' => '[A-Za-z0-9\-]+\=*',
1116
                            ],
1117
                            'defaults' => [
1118
                                'controller' => '\LeadersLinked\Controller\ChatController',
1119
                                'action' => 'leaveGroup',
1120
                            ],
1121
                        ],
1122
                    ],
1123
                    'delete-group' => [
1124
                        'type' => Segment::class,
1125
                        'options' => [
1126
                            'route' => '/delete-group/:group_id',
1127
                            'constraints' => [
1128
                                'group_id' => '[A-Za-z0-9\-]+\=*',
1129
                            ],
1130
                            'defaults' => [
1131
                                'controller' => '\LeadersLinked\Controller\ChatController',
1132
                                'action' => 'deleteGroup',
1133
                            ],
1134
                        ],
1135
                    ],
3121 efrain 1136
                    'open' => [
1137
                        'type' => Segment::class,
1138
                        'options' => [
1139
                            'route' => '/open/:id',
1140
                            'constraints' => [
1141
                                'id' => '[A-Za-z0-9\-]+\=*',
1142
                            ],
1143
                            'defaults' => [
1144
                                'controller' => '\LeadersLinked\Controller\ChatController',
1145
                                'action' => 'open',
1146
                            ],
1147
                        ],
1148
                    ],
1 www 1149
                    'close' => [
1150
                        'type' => Segment::class,
1151
                        'options' => [
1152
                            'route' => '/close/:id',
1153
                            'constraints' => [
1154
                                'id' => '[A-Za-z0-9\-]+\=*',
1155
                            ],
1156
                            'defaults' => [
1157
                                'controller' => '\LeadersLinked\Controller\ChatController',
1158
                                'action' => 'close',
1159
                            ],
1160
                        ],
1161
                    ],
1162
                    'clear' => [
1163
                        'type' => Segment::class,
1164
                        'options' => [
1165
                            'route' => '/clear/:id',
1166
                            'constraints' => [
1167
                                'id' => '[A-Za-z0-9\-]+\=*',
1168
                            ],
1169
                            'defaults' => [
1170
                                'controller' => '\LeadersLinked\Controller\ChatController',
1171
                                'action' => 'clear',
1172
                            ],
1173
                        ],
1174
                    ],
1175
                    'upload' => [
1176
                        'type' => Segment::class,
1177
                        'options' => [
1178
                            'route' => '/upload/:id',
1179
                            'constraints' => [
1180
                                'id' => '[A-Za-z0-9\-]+\=*',
1181
                            ],
1182
                            'defaults' => [
1183
                                'controller' => '\LeadersLinked\Controller\ChatController',
1184
                                'action' => 'upload',
1185
                            ],
1186
                        ],
1187
                    ],
1188
                ],
553 geraldo 1189
            ],
4113 efrain 1190
            'calendar' => [
1191
                'type' => Literal::class,
1192
                'options' => [
1193
                    'route' => '/calendar',
1194
                    'defaults' => [
1195
                        'controller' => '\LeadersLinked\Controller\CalendarController',
1196
                        'action' => 'index'
1197
                    ]
1198
                ],
1199
                'may_terminate' => true,
1200
                'child_routes' => [
1201
                    'events' => [
1202
                        'type' => Segment::class,
1203
                        'options' => [
1204
                            'route' => '/events',
1205
                            /*'constraints' => [
1206
                                'id' => '[A-Za-z0-9\-]+\=*',
1207
                            ],*/
1208
                            'defaults' => [
1209
                                'controller' => '\LeadersLinked\Controller\CalendarController',
1210
                                'action' => 'events'
1211
                            ]
1212
                        ]
1213
                    ],
1214
                ]
5612 anderson 1215
            ],
1216
 
4419 efrain 1217
            /*
4113 efrain 1218
            'zoom' => [
1219
                'type' => Literal::class,
1220
                'options' => [
1221
                    'route' => '/zoom',
1222
                    'defaults' => [
1223
                        'controller' => '\LeadersLinked\Controller\ZoomController',
1224
                        'action' => 'index'
1225
                    ]
1226
                ],
1227
                'may_terminate' => true,
1228
                'child_routes' => [
4131 efrain 1229
                    'add' => [
1230
                        'type' => Literal::class,
4113 efrain 1231
                        'options' => [
4131 efrain 1232
                            'route' => '/add',
4113 efrain 1233
                            'defaults' => [
1234
                                'controller' => '\LeadersLinked\Controller\ZoomController',
4131 efrain 1235
                                'action' => 'add'
1236
                            ]
1237
                        ]
4113 efrain 1238
                    ],
1239
                    'delete' => [
1240
                        'type' => Segment::class,
1241
                        'options' => [
1242
                            'route' => '/delete/:id',
4419 efrain 1243
                            'constraints' => [
4113 efrain 1244
                                'id' => '[A-Za-z0-9\-]+\=*',
4419 efrain 1245
                            ],
4113 efrain 1246
                            'defaults' => [
1247
                                'controller' => '\LeadersLinked\Controller\ZoomController',
4131 efrain 1248
                                'action' => 'delete'
1249
                            ]
1250
                        ]
4113 efrain 1251
                    ],
1252
                    'listing' => [
1253
                        'type' => Literal::class,
1254
                        'options' => [
1255
                            'route' => '/listing',
1256
                            'defaults' => [
1257
                                'controller' => '\LeadersLinked\Controller\ZoomController',
4131 efrain 1258
                                'action' => 'listing'
1259
                            ]
1260
                        ]
4113 efrain 1261
                    ],
1262
                ]
4419 efrain 1263
            ],*/
5612 anderson 1264
 
1 www 1265
            'inmail' => [
1266
                'type' => Segment::class,
1267
                'options' => [
1268
                    'route' => '/inmail[/:id]',
1269
                    'constraints' => [
1270
                        'id' => '[A-Za-z0-9\-]+\=*',
1271
                    ],
1272
                    'defaults' => [
1273
                        'controller' => '\LeadersLinked\Controller\InMailController',
1274
                        'action' => 'index'
1275
                    ]
1276
                ],
1277
                'may_terminate' => true,
1278
                'child_routes' => [
1279
                    'block' => [
1280
                        'type' => Literal::class,
553 geraldo 1281
                        'options' => [
1 www 1282
                            'route' => '/block',
1283
                            'defaults' => [
1284
                                'controller' => '\LeadersLinked\Controller\InMailController',
1285
                                'action' => 'blockConversation'
1286
                            ]
553 geraldo 1287
                        ]
1288
                    ],
1289
                    'delete' => [
1290
                        'type' => Literal::class,
1291
                        'options' => [
1292
                            'route' => '/delete',
1293
                            'defaults' => [
1294
                                'controller' => '\LeadersLinked\Controller\InMailController',
5612 anderson 1295
                                'action' => 'delete'
1 www 1296
                            ]
553 geraldo 1297
                        ]
1298
                    ],
1299
                    'message' => [
1300
                        'type' => Literal::class,
1301
                        'options' => [
1302
                            'route' => '/message',
1303
                            'defaults' => [
1304
                                'controller' => '\LeadersLinked\Controller\InMailController',
1305
                                'action' => 'message'
1306
                            ]
1 www 1307
                        ],
553 geraldo 1308
                        'may_terminate' => true,
1309
                        'child_routes' => [
1310
                            'send' => [
1311
                                'type' => Segment::class,
1312
                                'options' => [
1313
                                    'route' => '/send[/encoding/:encoding]',
1314
                                    'constraints' => [
1315
                                        'encoding' => 'base64'
1316
                                    ],
1317
                                    'defaults' => [
1318
                                        'controller' => '\LeadersLinked\Controller\InMailController',
1319
                                        'action' => 'sendMessage'
1320
                                    ]
1 www 1321
                                ]
1322
                            ],
553 geraldo 1323
                            'delete' => [
1324
                                'type' => Segment::class,
1325
                                'options' => [
1326
                                    'route' => '/delete/:message',
1327
                                    'constraints' => [
1328
                                        'message' => '[A-Za-z0-9\-]+\=*',
1329
                                    ],
1330
                                    'defaults' => [
1331
                                        'controller' => '\LeadersLinked\Controller\InMailController',
1332
                                        'action' => 'delete'
1 www 1333
                                    ]
553 geraldo 1334
                                ]
1335
                            ],
1336
                        ],
1 www 1337
                    ],
553 geraldo 1338
                ],
1339
            ],
1 www 1340
            'connection' => [
1341
                'type' => Literal::class,
1342
                'options' => [
1343
                    'route' => '/connection',
1344
                    'defaults' => [
1345
                        'controller' => '\LeadersLinked\Controller\ConnectionController',
1346
                        'action' => 'index'
1347
                    ]
1348
                ],
1349
                'may_terminate' => true,
1350
                'child_routes' => [
1351
                    'my-connections' => [
1352
                        'type' => Literal::class,
1353
                        'options' => [
1354
                            'route' => '/my-connections',
1355
                            'defaults' => [
1356
                                'controller' => '\LeadersLinked\Controller\ConnectionController',
1357
                                'action' => 'myConnections'
1358
                            ]
1359
                        ]
1360
                    ],
1361
                    'people-you-may-know' => [
1362
                        'type' => Literal::class,
1363
                        'options' => [
1364
                            'route' => '/people-you-may-know',
1365
                            'defaults' => [
1366
                                'controller' => '\LeadersLinked\Controller\ConnectionController',
1367
                                'action' => 'peopleYouMayKnow'
1368
                            ]
1369
                        ]
1370
                    ],
1371
                    'people-blocked' => [
1372
                        'type' => Literal::class,
1373
                        'options' => [
1374
                            'route' => '/people-blocked',
1375
                            'defaults' => [
1376
                                'controller' => '\LeadersLinked\Controller\ConnectionController',
1377
                                'action' => 'peopleBlocked'
1378
                            ]
1379
                        ],
1380
                    ],
1381
                    'invitations-sent' => [
1382
                        'type' => Literal::class,
1383
                        'options' => [
1384
                            'route' => '/invitations-sent',
1385
                            'defaults' => [
1386
                                'controller' => '\LeadersLinked\Controller\ConnectionController',
1387
                                'action' => 'invitationsSent'
1388
                            ]
1389
                        ]
1390
                    ],
1391
                    'invitations-received' => [
1392
                        'type' => Literal::class,
1393
                        'options' => [
1394
                            'route' => '/invitations-received',
1395
                            'defaults' => [
1396
                                'controller' => '\LeadersLinked\Controller\ConnectionController',
1397
                                'action' => 'invitationsReceived'
1398
                            ]
1399
                        ]
1400
                    ],
1401
                    'block' => [
1402
                        'type' => Segment::class,
1403
                        'options' => [
1404
                            'route' => '/block/:id',
1405
                            'constraints' => [
1406
                                'id' => '[A-Za-z0-9\-]+\=*',
1407
                            ],
1408
                            'defaults' => [
1409
                                'controller' => '\LeadersLinked\Controller\ConnectionController',
1410
                                'action' => 'block'
1411
                            ]
1412
                        ]
1413
                    ],
1414
                    'unblock' => [
1415
                        'type' => Segment::class,
1416
                        'options' => [
1417
                            'route' => '/unblock/:id',
1418
                            'constraints' => [
1419
                                'id' => '[A-Za-z0-9\-]+\=*',
1420
                            ],
1421
                            'defaults' => [
1422
                                'controller' => '\LeadersLinked\Controller\ConnectionController',
1423
                                'action' => 'unblock'
1424
                            ]
1425
                        ]
1426
                    ],
1427
                    'cancel' => [
1428
                        'type' => Segment::class,
1429
                        'options' => [
1430
                            'route' => '/cancel/:id',
1431
                            'constraints' => [
1432
                                'id' => '[A-Za-z0-9\-]+\=*',
1433
                            ],
1434
                            'defaults' => [
1435
                                'controller' => '\LeadersLinked\Controller\ConnectionController',
1436
                                'action' => 'cancel'
1437
                            ]
1438
                        ]
1439
                    ],
1440
                    'request' => [
1441
                        'type' => Segment::class,
1442
                        'options' => [
1443
                            'route' => '/request/:id',
1444
                            'constraints' => [
1445
                                'id' => '[A-Za-z0-9\-]+\=*',
1446
                            ],
1447
                            'defaults' => [
1448
                                'controller' => '\LeadersLinked\Controller\ConnectionController',
1449
                                'action' => 'request'
1450
                            ]
1451
                        ]
1452
                    ],
1453
                    'approve' => [
1454
                        'type' => Segment::class,
1455
                        'options' => [
1456
                            'route' => '/approve/:id',
1457
                            'constraints' => [
1458
                                'id' => '[A-Za-z0-9\-]+\=*',
1459
                            ],
1460
                            'defaults' => [
1461
                                'controller' => '\LeadersLinked\Controller\ConnectionController',
1462
                                'action' => 'approve'
1463
                            ]
1464
                        ]
1465
                    ],
1466
                    'reject' => [
1467
                        'type' => Segment::class,
1468
                        'options' => [
1469
                            'route' => '/reject/:id',
1470
                            'constraints' => [
1471
                                'id' => '[A-Za-z0-9\-]+\=*',
1472
                            ],
1473
                            'defaults' => [
1474
                                'controller' => '\LeadersLinked\Controller\ConnectionController',
1475
                                'action' => 'reject'
1476
                            ]
1477
                        ]
1478
                    ],
1479
                    'delete' => [
1480
                        'type' => Segment::class,
1481
                        'options' => [
1482
                            'route' => '/delete/:id',
1483
                            'constraints' => [
1484
                                'id' => '[A-Za-z0-9\-]+\=*',
1485
                            ],
1486
                            'defaults' => [
1487
                                'controller' => '\LeadersLinked\Controller\ConnectionController',
1488
                                'action' => 'delete'
1489
                            ]
1490
                        ]
1491
                    ],
1492
                ]
553 geraldo 1493
            ],
1 www 1494
            'feed' => [
1495
                'type' => Literal::class,
1496
                'options' => [
1497
                    'route' => '/feed',
1498
                    'defaults' => [
1499
                        'controller' => '\LeadersLinked\Controller\FeedController',
1500
                        'action' => 'index'
1501
                    ]
1502
                ],
1503
                'may_terminate' => true,
1504
                'child_routes' => [
1505
                    'timeline' => [
1506
                        'type' => Segment::class,
1507
                        'options' => [
1508
                            'route' => '/timeline/:id/:type[/feed/:feed]',
1509
                            'constraints' => [
1510
                                'id' => '[A-Za-z0-9\-]+\=*',
1511
                                'type' => 'user|company|group',
1512
                            ],
1513
                            'defaults' => [
1514
                                'controller' => '\LeadersLinked\Controller\FeedController',
1515
                                'action' => 'timeline'
1516
                            ]
1517
                        ]
1518
                    ],
1519
                    'delete' => [
1520
                        'type' => Segment::class,
1521
                        'options' => [
1522
                            'route' => '/delete/:id',
1523
                            'constraints' => [
1524
                                'id' => '[A-Za-z0-9\-]+\=*',
1525
                            ],
1526
                            'defaults' => [
1527
                                'controller' => '\LeadersLinked\Controller\FeedController',
1528
                                'action' => 'delete'
1529
                            ],
1530
                        ]
1531
                    ],
1532
                    'comment' => [
1533
                        'type' => Segment::class,
1534
                        'options' => [
1535
                            'route' => '/comment/:id',
1536
                            'constraints' => [
1537
                                'id' => '[A-Za-z0-9\-]+\=*',
1538
                            ],
1539
                            'defaults' => [
1540
                                'controller' => '\LeadersLinked\Controller\FeedController',
1541
                                'action' => 'comment'
1542
                            ],
1543
                        ],
1544
                        'may_terminate' => true,
1545
                        'child_routes' => [
1546
                            'delete' => [
1547
                                'type' => Segment::class,
1548
                                'options' => [
1549
                                    'route' => '/delete/:comment',
1550
                                    'constraints' => [
1551
                                        'comment' => '[A-Za-z0-9\-]+\=*',
1552
                                    ],
1553
                                    'defaults' => [
1554
                                        'controller' => '\LeadersLinked\Controller\FeedController',
1555
                                        'action' => 'commentDelete'
1556
                                    ]
1557
                                ]
1558
                            ],
1559
                        ]
1560
                    ],
1561
                    'share' => [
1562
                        'type' => Segment::class,
1563
                        'options' => [
1564
                            'route' => '/share/:id[/company/:company_id][/group/:group_id][/encoding/:encoding]',
1565
                            'constraints' => [
1566
                                'id' => '[A-Za-z0-9\-]+\=*',
1567
                                'company_id' => '[A-Za-z0-9\-]+\=*',
1568
                                'group_id' => '[A-Za-z0-9\-]+\=*',
1569
                                'encoding' => 'base64'
1570
                            ],
1571
                            'defaults' => [
1572
                                'controller' => '\LeadersLinked\Controller\FeedController',
1573
                                'action' => 'share'
1574
                            ]
1575
                        ]
1576
                    ],
5765 efrain 1577
                    'save-reaction' => [
1 www 1578
                        'type' => Segment::class,
1579
                        'options' => [
5765 efrain 1580
                            'route' => '/save-reaction/:id/:reaction',
1 www 1581
                            'constraints' => [
1582
                                'id' => '[A-Za-z0-9\-]+\=*',
5765 efrain 1583
                                'reaction' => 'r|s|l|i|f',
1 www 1584
                            ],
1585
                            'defaults' => [
1586
                                'controller' => '\LeadersLinked\Controller\FeedController',
5765 efrain 1587
                                'action' => 'saveReaction'
1 www 1588
                            ]
1589
                        ]
1590
                    ],
5765 efrain 1591
 
1592
                    'delete-reaction' => [
1 www 1593
                        'type' => Segment::class,
1594
                        'options' => [
5765 efrain 1595
                            'route' => '/delete-reaction/:id',
1 www 1596
                            'constraints' => [
1597
                                'id' => '[A-Za-z0-9\-]+\=*',
1598
                            ],
1599
                            'defaults' => [
1600
                                'controller' => '\LeadersLinked\Controller\FeedController',
5765 efrain 1601
                                'action' => 'deleteReaction'
1 www 1602
                            ]
1603
                        ]
1604
                    ],
1605
                    'add' => [
1606
                        'type' => Segment::class,
1607
                        'options' => [
2455 efrain 1608
                            'route' => '/add[/company/:company_id][/group/:group_id][/encoding/:encoding]',
1 www 1609
                            'constraints' => [
2455 efrain 1610
                                'company_id' => '[A-Za-z0-9\-]+\=*',
1611
                                'group_id' => '[A-Za-z0-9\-]+\=*',
1 www 1612
                                'encoding' => 'base64'
1613
                            ],
1614
                            'defaults' => [
1615
                                'controller' => '\LeadersLinked\Controller\FeedController',
1616
                                'action' => 'add'
1617
                            ]
1618
                        ]
1619
                    ],
6388 efrain 1620
                    'vote' => [
1621
                        'type' => Segment::class,
1622
                        'options' => [
1623
                            'route' => '/vote/:id',
1624
                            'constraints' => [
1625
                                'id' => '[A-Za-z0-9\-]+\=*',
1626
                            ],
1627
                            'defaults' => [
1628
                                'controller' => '\LeadersLinked\Controller\FeedController',
1629
                                'action' => 'vote'
1630
                            ]
1631
                        ]
1632
                    ],
1 www 1633
                ],
553 geraldo 1634
            ],
1 www 1635
            'job' => [
1636
                'type' => Literal::class,
1637
                'options' => [
1638
                    'route' => '/job',
1639
                    'defaults' => [
1640
                        'controller' => '\LeadersLinked\Controller\JobController',
1641
                        'action' => 'index'
1642
                    ]
1643
                ],
1644
                'may_terminate' => true,
1645
                'child_routes' => [
1646
                    'view' => [
1647
                        'type' => Segment::class,
1648
                        'options' => [
1649
                            'route' => '/view/:id',
1650
                            'constraints' => [
1651
                                'id' => '[A-Za-z0-9\-]+\=*'
1652
                            ],
1653
                            'defaults' => [
1654
                                'controller' => '\LeadersLinked\Controller\JobController',
1655
                                'action' => 'view'
1656
                            ]
1657
                        ]
1658
                    ],
1659
                    'apply-job' => [
1660
                        'type' => Segment::class,
1661
                        'options' => [
1662
                            'route' => '/apply-job/:id',
1663
                            'constraints' => [
1664
                                'id' => '[A-Za-z0-9\-]+\=*'
1665
                            ],
1666
                            'defaults' => [
1667
                                'controller' => '\LeadersLinked\Controller\JobController',
1668
                                'action' => 'applyJob'
1669
                            ]
1670
                        ]
1671
                    ],
1672
                    'remove-apply-job' => [
1673
                        'type' => Segment::class,
1674
                        'options' => [
1675
                            'route' => '/remove-apply-job/:id',
1676
                            'constraints' => [
1677
                                'id' => '[A-Za-z0-9\-]+\=*'
1678
                            ],
1679
                            'defaults' => [
1680
                                'controller' => '\LeadersLinked\Controller\JobController',
1681
                                'action' => 'removeApplyJob'
1682
                            ]
1683
                        ]
1684
                    ],
1685
                    'save-job' => [
1686
                        'type' => Segment::class,
1687
                        'options' => [
1688
                            'route' => '/save-job/:id',
1689
                            'constraints' => [
1690
                                'id' => '[A-Za-z0-9\-]+\=*'
1691
                            ],
1692
                            'defaults' => [
1693
                                'controller' => '\LeadersLinked\Controller\JobController',
1694
                                'action' => 'saveJob'
1695
                            ]
1696
                        ]
1697
                    ],
1698
                    'remove-save-job' => [
1699
                        'type' => Segment::class,
1700
                        'options' => [
1701
                            'route' => '/remove-save-job/:id',
1702
                            'constraints' => [
1703
                                'id' => '[A-Za-z0-9\-]+\=*'
1704
                            ],
1705
                            'defaults' => [
1706
                                'controller' => '\LeadersLinked\Controller\JobController',
1707
                                'action' => 'removeSaveJob'
1708
                            ]
1709
                        ]
1710
                    ],
1711
                    'applied-jobs' => [
1712
                        'type' => Literal::class,
1713
                        'options' => [
1714
                            'route' => '/applied-jobs',
1715
                            'defaults' => [
1716
                                'controller' => '\LeadersLinked\Controller\JobController',
1717
                                'action' => 'appliedJobs'
1718
                            ]
1719
                        ]
1720
                    ],
1721
                    'saved-jobs' => [
1722
                        'type' => Literal::class,
1723
                        'options' => [
1724
                            'route' => '/saved-jobs',
1725
                            'defaults' => [
1726
                                'controller' => '\LeadersLinked\Controller\JobController',
1727
                                'action' => 'savedJobs'
1728
                            ]
1729
                        ]
1730
                    ],
553 geraldo 1731
                ]
1 www 1732
            ],
1733
            /*
553 geraldo 1734
              'job' => [
1735
              'type' => Literal::class,
1736
              'options' => [
1737
              'route' => '/job',
1738
              'defaults' => [
1739
              'controller' => '\LeadersLinked\Controller\JobController',
1740
              'action' => 'index'
1741
              ]
1742
              ],
1743
              'may_terminate' => true,
1744
              'child_routes' => [
1745
              'view' => [
1746
              'type' => Segment::class,
1747
              'options' => [
1748
              'route' => '/view/:id',
1749
              'constraints' => [
1750
              'id' => '[A-Za-z0-9\-]+\=*'
1751
              ],
1752
              'defaults' => [
1753
              'controller' => '\LeadersLinked\Controller\CompanyController',
1754
              'action' => 'job'
1755
              ]
1756
              ]
1757
              ],
1758
              ]
1759
              ],
1 www 1760
             */
1761
            'search' => [
1762
                'type' => Segment::class,
1763
                'options' => [
1764
                    'route' => '/search[/entity/:entity]',
1765
                    'constraints' => [
1766
                        'entity' => 'user|company|group|job'
1767
                    ],
1768
                    'defaults' => [
1769
                        'controller' => '\LeadersLinked\Controller\SearchController',
1770
                        'action' => 'index'
1771
                    ]
1772
                ],
1773
            ],
1774
            'group' => [
1775
                'type' => Literal::class,
1776
                'options' => [
1777
                    'route' => '/group',
1778
                    'defaults' => [
1779
                        'controller' => '\LeadersLinked\GroupController',
1780
                        'action' => 'index'
1781
                    ]
1782
                ],
1783
                'may_terminate' => true,
1784
                'child_routes' => [
1785
                    'view' => [
1786
                        'type' => Segment::class,
1787
                        'options' => [
1788
                            'route' => '/view/:id',
1789
                            'constraints' => [
1790
                                'id' => '[A-Za-z0-9\-]+\=*'
1791
                            ],
1792
                            'defaults' => [
1793
                                'controller' => '\LeadersLinked\Controller\GroupController',
1794
                                'action' => 'view'
1795
                            ]
1796
                        ]
1797
                    ],
1798
                    'request' => [
1799
                        'type' => Segment::class,
1800
                        'options' => [
1801
                            'route' => '/request/:id',
1802
                            'constraints' => [
1803
                                'id' => '[A-Za-z0-9\-]+\=*'
1804
                            ],
1805
                            'defaults' => [
1806
                                'controller' => '\LeadersLinked\Controller\GroupController',
1807
                                'action' => 'request'
1808
                            ]
1809
                        ]
1810
                    ],
1811
                    'leave' => [
1812
                        'type' => Segment::class,
1813
                        'options' => [
1814
                            'route' => '/leave/:id',
1815
                            'constraints' => [
1816
                                'id' => '[A-Za-z0-9\-]+\=*'
1817
                            ],
1818
                            'defaults' => [
1819
                                'controller' => '\LeadersLinked\Controller\GroupController',
1820
                                'action' => 'leave'
1821
                            ]
1822
                        ]
1823
                    ],
1824
                    'accept' => [
1825
                        'type' => Segment::class,
1826
                        'options' => [
1827
                            'route' => '/accept/:id',
1828
                            'constraints' => [
1829
                                'id' => '[A-Za-z0-9\-]+\=*'
1830
                            ],
1831
                            'defaults' => [
1832
                                'controller' => '\LeadersLinked\Controller\GroupController',
1833
                                'action' => 'accept'
1834
                            ]
1835
                        ]
1836
                    ],
1837
                    'cancel' => [
1838
                        'type' => Segment::class,
1839
                        'options' => [
1840
                            'route' => '/cancel/:id',
1841
                            'constraints' => [
1842
                                'id' => '[A-Za-z0-9\-]+\=*'
1843
                            ],
1844
                            'defaults' => [
1845
                                'controller' => '\LeadersLinked\Controller\GroupController',
1846
                                'action' => 'cancel'
1847
                            ]
1848
                        ]
1849
                    ],
1850
                    'reject' => [
1851
                        'type' => Segment::class,
1852
                        'options' => [
1853
                            'route' => '/reject/:id',
1854
                            'constraints' => [
1855
                                'id' => '[A-Za-z0-9\-]+\=*'
1856
                            ],
1857
                            'defaults' => [
1858
                                'controller' => '\LeadersLinked\Controller\GroupController',
1859
                                'action' => 'reject'
1860
                            ]
1861
                        ]
1862
                    ],
1863
                    'joined-groups' => [
1864
                        'type' => Literal::class,
1865
                        'options' => [
1866
                            'route' => '/joined-groups',
1867
                            'defaults' => [
1868
                                'controller' => '\LeadersLinked\Controller\GroupController',
1869
                                'action' => 'joinedGroups'
1870
                            ]
1871
                        ],
1872
                    ],
1873
                    'requests-sent' => [
1874
                        'type' => Literal::class,
1875
                        'options' => [
1876
                            'route' => '/requests-sent',
1877
                            'defaults' => [
1878
                                'controller' => '\LeadersLinked\Controller\GroupController',
1879
                                'action' => 'requestsSent'
1880
                            ]
1881
                        ],
1882
                    ],
1883
                    'invitations-received' => [
1884
                        'type' => Literal::class,
1885
                        'options' => [
1886
                            'route' => '/invitations-received',
1887
                            'defaults' => [
1888
                                'controller' => '\LeadersLinked\Controller\GroupController',
1889
                                'action' => 'invitationsReceived'
1890
                            ]
1891
                        ],
1892
                    ],
1893
                    'my-groups' => [
1894
                        'type' => Literal::class,
1895
                        'options' => [
1896
                            'route' => '/my-groups',
1897
                            'defaults' => [
1898
                                'controller' => '\LeadersLinked\Controller\MyGroupsController',
1899
                                'action' => 'index'
1900
                            ]
1901
                        ],
1902
                        'may_terminate' => true,
1903
                        'child_routes' => [
1904
                            'add' => [
1905
                                'type' => Literal::class,
1906
                                'options' => [
1907
                                    'route' => '/add',
1908
                                    'defaults' => [
1909
                                        'controller' => '\LeadersLinked\Controller\MyGroupsController',
1910
                                        'action' => 'add'
1911
                                    ]
1912
                                ]
1913
                            ],
1914
                            'edit' => [
1915
                                'type' => Segment::class,
1916
                                'options' => [
1917
                                    'route' => '/edit/:id',
1918
                                    'constraints' => [
1919
                                        'id' => '[A-Za-z0-9\-]+\=*'
1920
                                    ],
1921
                                    'defaults' => [
1922
                                        'controller' => '\LeadersLinked\Controller\MyGroupsController',
1923
                                        'action' => 'edit'
1924
                                    ]
1925
                                ]
1926
                            ],
1927
                            'delete' => [
1928
                                'type' => Segment::class,
1929
                                'options' => [
1930
                                    'route' => '/delete/:id',
1931
                                    'constraints' => [
1932
                                        'id' => '[A-Za-z0-9\-]+\=*'
1933
                                    ],
1934
                                    'defaults' => [
1935
                                        'controller' => '\LeadersLinked\Controller\MyGroupsController',
1936
                                        'action' => 'delete'
1937
                                    ]
1938
                                ]
1939
                            ],
1940
                            'extended' => [
1941
                                'type' => Segment::class,
1942
                                'options' => [
1943
                                    'route' => '/extended/:id',
1944
                                    'constraints' => [
1945
                                        'id' => '[A-Za-z0-9\-]+\=*'
1946
                                    ],
1947
                                    'defaults' => [
1948
                                        'controller' => '\LeadersLinked\Controller\MyGroupsController',
1949
                                        'action' => 'extended'
1950
                                    ]
1951
                                ]
1952
                            ],
1953
                            'image' => [
1954
                                'type' => Segment::class,
1955
                                'options' => [
1956
                                    'route' => '/image/:id/operation/:operation',
1957
                                    'constraints' => [
1958
                                        'id' => '[A-Za-z0-9\-]+\=*',
1959
                                        'operation' => 'upload|delete'
1960
                                    ],
1961
                                    'defaults' => [
1962
                                        'controller' => '\LeadersLinked\Controller\MyGroupsController',
1963
                                        'action' => 'image'
1964
                                    ]
1965
                                ]
1966
                            ],
1967
                            'cover' => [
1968
                                'type' => Segment::class,
1969
                                'options' => [
1970
                                    'route' => '/cover/:id/operation/:operation',
1971
                                    'constraints' => [
1972
                                        'id' => '[A-Za-z0-9\-]+\=*',
1973
                                        'operation' => 'upload|delete'
1974
                                    ],
1975
                                    'defaults' => [
1976
                                        'controller' => '\LeadersLinked\Controller\MyGroupsController',
1977
                                        'action' => 'cover'
1978
                                    ]
1979
                                ]
1980
                            ],
1981
                            'privacy' => [
1982
                                'type' => Segment::class,
1983
                                'options' => [
1984
                                    'route' => '/privacy/:id',
1985
                                    'constraints' => [
1986
                                        'id' => '[A-Za-z0-9\-]+\=*'
1987
                                    ],
1988
                                    'defaults' => [
1989
                                        'controller' => '\LeadersLinked\Controller\MyGroupsController',
1990
                                        'action' => 'privacy'
1991
                                    ]
1992
                                ]
1993
                            ],
1994
                            'website' => [
1995
                                'type' => Segment::class,
1996
                                'options' => [
1997
                                    'route' => '/website/:id',
1998
                                    'constraints' => [
1999
                                        'id' => '[A-Za-z0-9\-]+\=*'
2000
                                    ],
2001
                                    'defaults' => [
2002
                                        'controller' => '\LeadersLinked\Controller\MyGroupsController',
2003
                                        'action' => 'website'
2004
                                    ]
2005
                                ]
2006
                            ],
2007
                            'industry' => [
2008
                                'type' => Segment::class,
2009
                                'options' => [
2010
                                    'route' => '/industry/:id',
2011
                                    'constraints' => [
2012
                                        'id' => '[A-Za-z0-9\-]+\=*'
2013
                                    ],
2014
                                    'defaults' => [
2015
                                        'controller' => '\LeadersLinked\Controller\MyGroupsController',
2016
                                        'action' => 'industry'
2017
                                    ]
2018
                                ]
2019
                            ],
2020
                            'accessibility' => [
2021
                                'type' => Segment::class,
2022
                                'options' => [
2023
                                    'route' => '/accessibility/:id',
2024
                                    'constraints' => [
2025
                                        'id' => '[A-Za-z0-9\-]+\=*'
2026
                                    ],
2027
                                    'defaults' => [
2028
                                        'controller' => '\LeadersLinked\Controller\MyGroupsController',
2029
                                        'action' => 'accessibility'
2030
                                    ]
2031
                                ]
2032
                            ],
2033
                            'type' => [
2034
                                'type' => Segment::class,
2035
                                'options' => [
2036
                                    'route' => '/type/:id',
2037
                                    'constraints' => [
2038
                                        'id' => '[A-Za-z0-9\-]+\=*'
2039
                                    ],
2040
                                    'defaults' => [
2041
                                        'controller' => '\LeadersLinked\Controller\MyGroupsController',
2042
                                        'action' => 'type'
2043
                                    ]
2044
                                ]
2045
                            ],
2046
                            'status' => [
2047
                                'type' => Segment::class,
2048
                                'options' => [
2049
                                    'route' => '/status/:id',
2050
                                    'constraints' => [
2051
                                        'id' => '[A-Za-z0-9\-]+\=*'
2052
                                    ],
2053
                                    'defaults' => [
2054
                                        'controller' => '\LeadersLinked\Controller\MyGroupsController',
2055
                                        'action' => 'status'
2056
                                    ]
2057
                                ]
2058
                            ],
2059
                            'members' => [
2060
                                'type' => Segment::class,
2061
                                'options' => [
2062
                                    'route' => '/members/:id',
2063
                                    'constraints' => [
2064
                                        'id' => '[A-Za-z0-9\-]+\=*'
2065
                                    ],
2066
                                    'defaults' => [
2067
                                        'controller' => '\LeadersLinked\Controller\MyGroupsController',
2068
                                        'action' => 'members'
2069
                                    ]
2070
                                ],
2071
                                'may_terminate' => true,
2072
                                'child_routes' => [
2073
                                    'invite' => [
2074
                                        'type' => Segment::class,
2075
                                        'options' => [
2076
                                            'route' => '/invite/:user_id',
2077
                                            'constraints' => [
2078
                                                'user_id' => '[A-Za-z0-9\-]+\=*'
2079
                                            ],
2080
                                            'defaults' => [
2081
                                                'controller' => '\LeadersLinked\Controller\MyGroupsController',
2082
                                                'action' => 'invite'
2083
                                            ]
2084
                                        ]
2085
                                    ],
2086
                                    'approve' => [
2087
                                        'type' => Segment::class,
2088
                                        'options' => [
2089
                                            'route' => '/approve/:user_id',
2090
                                            'constraints' => [
2091
                                                'user_id' => '[A-Za-z0-9\-]+\=*'
2092
                                            ],
2093
                                            'defaults' => [
2094
                                                'controller' => '\LeadersLinked\Controller\MyGroupsController',
2095
                                                'action' => 'approve'
2096
                                            ]
2097
                                        ]
2098
                                    ],
2099
                                    'reject' => [
2100
                                        'type' => Segment::class,
2101
                                        'options' => [
2102
                                            'route' => '/reject/:user_id',
2103
                                            'constraints' => [
2104
                                                'user_id' => '[A-Za-z0-9\-]+\=*'
2105
                                            ],
2106
                                            'defaults' => [
2107
                                                'controller' => '\LeadersLinked\Controller\MyGroupsController',
2108
                                                'action' => 'reject'
2109
                                            ]
2110
                                        ]
2111
                                    ],
2112
                                    'cancel' => [
2113
                                        'type' => Segment::class,
2114
                                        'options' => [
2115
                                            'route' => '/cancel/:user_id',
2116
                                            'constraints' => [
2117
                                                'user_id' => '[A-Za-z0-9\-]+\=*'
2118
                                            ],
2119
                                            'defaults' => [
2120
                                                'controller' => '\LeadersLinked\Controller\MyGroupsController',
2121
                                                'action' => 'cancel'
2122
                                            ]
2123
                                        ]
2124
                                    ],
553 geraldo 2125
                                ]
1 www 2126
                            ],
2127
                        ]
2128
                    ]
2129
                ]
2130
            ],
2131
            'profile' => [
2132
                'type' => Literal::class,
2133
                'options' => [
2134
                    'route' => '/profile',
2135
                    'defaults' => [
2136
                        'controller' => '\LeadersLinked\ControllerProfileController',
2137
                        'action' => 'index'
2138
                    ]
2139
                ],
2140
                'may_terminate' => true,
2141
                'child_routes' => [
2142
                    'microlearning' => [
2143
                        'type' => Literal::class,
2144
                        'options' => [
2145
                            'route' => '/microlearning',
2146
                            'defaults' => [
2147
                                'controller' => '\LeadersLinked\Controller\ProfileMicrolearningController',
2148
                                'action' => 'index'
2149
                            ]
2150
                        ],
2151
                        'may_terminate' => true,
2152
                        'child_routes' => [
2153
                            'timeline' => [
2154
                                'type' => Literal::class,
2155
                                'options' => [
2156
                                    'route' => '/timeline',
2157
                                    'defaults' => [
2158
                                        'controller' => '\LeadersLinked\Controller\ProfileMicrolearningController',
2159
                                        'action' => 'timeline'
2160
                                    ]
2161
                                ]
2162
                            ],
2163
                            'progress' => [
2164
                                'type' => Literal::class,
2165
                                'options' => [
2166
                                    'route' => '/progress',
2167
                                    'defaults' => [
2168
                                        'controller' => '\LeadersLinked\Controller\ProfileMicrolearningController',
2169
                                        'action' => 'progress'
2170
                                    ]
2171
                                ]
2172
                            ],
2173
                        ]
2174
                    ],
2175
                    'people-viewed-profile' => [
2176
                        'type' => Literal::class,
2177
                        'options' => [
2178
                            'route' => '/people-viewed-profile',
2179
                            'defaults' => [
2180
                                'controller' => '\LeadersLinked\Controller\ProfileController',
2181
                                'action' => 'peopleViewedProfile'
2182
                            ]
2183
                        ]
2184
                    ],
580 geraldo 2185
                    'view' => [
2186
                        'type' => Segment::class,
263 geraldo 2187
                        'options' => [
580 geraldo 2188
                            'route' => '/view/:id',
2189
                            'constraints' => [
2190
                                'id' => '[A-Za-z0-9\-]+\=*'
2191
                            ],
263 geraldo 2192
                            'defaults' => [
580 geraldo 2193
                                'controller' => '\LeadersLinked\Controller\ProfileController',
2194
                                'action' => 'view'
263 geraldo 2195
                            ]
2196
                        ]
2197
                    ],
580 geraldo 2198
                    'self-evaluation' => [
553 geraldo 2199
                        'type' => Literal::class,
2200
                        'options' => [
580 geraldo 2201
                            'route' => '/self-evaluation',
553 geraldo 2202
                            'defaults' => [
580 geraldo 2203
                                'controller' => '\LeadersLinked\Controller\SelfEvaluationController',
553 geraldo 2204
                                'action' => 'index'
2205
                            ]
2206
                        ],
2207
                        'may_terminate' => true,
2208
                        'child_routes' => [
2209
                            'take-a-test' => [
580 geraldo 2210
                                'type' => Segment::class,
553 geraldo 2211
                                'options' => [
2212
                                    'route' => '/take-a-test/:id',
2213
                                    'constraints' => [
2214
                                        'id' => '[A-Za-z0-9\-]+\=*'
2215
                                    ],
2216
                                    'defaults' => [
578 geraldo 2217
                                        'controller' => '\LeadersLinked\Controller\SelfEvaluationController',
553 geraldo 2218
                                        'action' => 'takeaTest'
2219
                                    ]
2220
                                ]
2221
                            ],
2222
                            'report' => [
580 geraldo 2223
                                'type' => Segment::class,
553 geraldo 2224
                                'options' => [
2225
                                    'route' => '/report/:id',
2226
                                    'constraints' => [
2227
                                        'id' => '[A-Za-z0-9\-]+\=*'
2228
                                    ],
2229
                                    'defaults' => [
580 geraldo 2230
                                        'controller' => '\LeadersLinked\Controller\SelfEvaluationController',
553 geraldo 2231
                                        'action' => 'report'
2232
                                    ]
2233
                                ]
2234
                            ],
2235
                        ]
2236
                    ],
581 geraldo 2237
                    'performance-evaluation' => [
2238
                        'type' => Literal::class,
2239
                        'options' => [
2240
                            'route' => '/performance-evaluation',
2241
                            'defaults' => [
2242
                                'controller' => '\LeadersLinked\Controller\PerformanceEvaluationController',
2243
                                'action' => 'index'
2244
                            ]
2245
                        ],
2246
                        'may_terminate' => true,
2247
                        'child_routes' => [
2248
                            'take-a-test' => [
2249
                                'type' => Segment::class,
2250
                                'options' => [
2251
                                    'route' => '/take-a-test/:id',
2252
                                    'constraints' => [
2253
                                        'id' => '[A-Za-z0-9\-]+\=*'
2254
                                    ],
2255
                                    'defaults' => [
2256
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationController',
2257
                                        'action' => 'takeaTest'
2258
                                    ]
2259
                                ]
2260
                            ],
2261
                            'report' => [
2262
                                'type' => Segment::class,
2263
                                'options' => [
2264
                                    'route' => '/report/:id',
2265
                                    'constraints' => [
2266
                                        'id' => '[A-Za-z0-9\-]+\=*'
2267
                                    ],
2268
                                    'defaults' => [
2269
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationController',
2270
                                        'action' => 'report'
2271
                                    ]
2272
                                ]
2273
                            ],
2274
                        ]
2275
                    ],
1 www 2276
                    'my-profiles' => [
2277
                        'type' => Literal::class,
2278
                        'options' => [
2279
                            'route' => '/my-profiles',
2280
                            'defaults' => [
2281
                                'controller' => '\LeadersLinked\Controller\MyProfilesController',
2282
                                'action' => 'index'
2283
                            ]
2284
                        ],
2285
                        'may_terminate' => true,
2286
                        'child_routes' => [
2287
                            'add' => [
2288
                                'type' => Literal::class,
2289
                                'options' => [
2290
                                    'route' => '/add',
2291
                                    'defaults' => [
2292
                                        'controller' => '\LeadersLinked\Controller\MyProfilesController',
2293
                                        'action' => 'add'
2294
                                    ]
2295
                                ]
2296
                            ],
2297
                            'edit' => [
2298
                                'type' => Segment::class,
2299
                                'options' => [
2300
                                    'route' => '/edit/:id',
2301
                                    'constraints' => [
2302
                                        'id' => '[A-Za-z0-9\-]+\=*'
2303
                                    ],
2304
                                    'defaults' => [
2305
                                        'controller' => '\LeadersLinked\Controller\MyProfilesController',
2306
                                        'action' => 'edit'
2307
                                    ]
2308
                                ]
2309
                            ],
2310
                            'delete' => [
2311
                                'type' => Segment::class,
2312
                                'options' => [
2313
                                    'route' => '/delete/:id',
2314
                                    'constraints' => [
2315
                                        'id' => '[A-Za-z0-9\-]+\=*'
2316
                                    ],
2317
                                    'defaults' => [
2318
                                        'controller' => '\LeadersLinked\Controller\MyProfilesController',
2319
                                        'action' => 'delete'
2320
                                    ]
2321
                                ]
2322
                            ],
2323
                            'extended' => [
2324
                                'type' => Segment::class,
2325
                                'options' => [
2326
                                    'route' => '/extended/:id',
2327
                                    'constraints' => [
2328
                                        'id' => '[A-Za-z0-9\-]+\=*'
2329
                                    ],
2330
                                    'defaults' => [
2331
                                        'controller' => '\LeadersLinked\Controller\MyProfilesController',
2332
                                        'action' => 'extended'
2333
                                    ]
2334
                                ]
2335
                            ],
2336
                            'image' => [
2337
                                'type' => Segment::class,
2338
                                'options' => [
2339
                                    'route' => '/image/:id/operation/:operation',
2340
                                    'constraints' => [
2341
                                        'id' => '[A-Za-z0-9\-]+\=*',
2342
                                        'operation' => 'upload|delete'
2343
                                    ],
2344
                                    'defaults' => [
2345
                                        'controller' => '\LeadersLinked\Controller\MyProfilesController',
2346
                                        'action' => 'image'
2347
                                    ]
2348
                                ]
2349
                            ],
2350
                            'cover' => [
2351
                                'type' => Segment::class,
2352
                                'options' => [
2353
                                    'route' => '/cover/:id/operation/:operation',
2354
                                    'constraints' => [
2355
                                        'id' => '[A-Za-z0-9\-]+\=*',
2356
                                        'operation' => 'upload|delete'
2357
                                    ],
2358
                                    'defaults' => [
2359
                                        'controller' => '\LeadersLinked\Controller\MyProfilesController',
2360
                                        'action' => 'cover'
2361
                                    ]
2362
                                ]
2363
                            ],
2364
                            'experience' => [
2365
                                'type' => Segment::class,
2366
                                'options' => [
2367
                                    'route' => '/experience/:id/operation/:operation[/:user_experience_id]',
2368
                                    'constraints' => [
2369
                                        'id' => '[A-Za-z0-9\-]+\=*',
2370
                                        'operation' => 'add|edit|delete',
2371
                                        'user_education_id' => '[A-Za-z0-9\-]+\=*'
2372
                                    ],
2373
                                    'defaults' => [
2374
                                        'controller' => '\LeadersLinked\Controller\MyProfilesController',
2375
                                        'action' => 'experience'
2376
                                    ]
2377
                                ]
2378
                            ],
2379
                            'education' => [
2380
                                'type' => Segment::class,
2381
                                'options' => [
2382
                                    'route' => '/education/:id/operation/:operation[/:user_education_id]',
2383
                                    'constraints' => [
2384
                                        'id' => '[A-Za-z0-9\-]+\=*',
2385
                                        'operation' => 'add|edit|delete',
2386
                                        'user_education_id' => '[A-Za-z0-9\-]+\=*'
2387
                                    ],
2388
                                    'defaults' => [
2389
                                        'controller' => '\LeadersLinked\Controller\MyProfilesController',
2390
                                        'action' => 'education'
2391
                                    ]
2392
                                ]
2393
                            ],
2394
                            'language' => [
2395
                                'type' => Segment::class,
2396
                                'options' => [
2397
                                    'route' => '/language/:id',
2398
                                    'constraints' => [
2399
                                        'id' => '[A-Za-z0-9\-]+\=*'
2400
                                    ],
2401
                                    'defaults' => [
2402
                                        'controller' => '\LeadersLinked\Controller\MyProfilesController',
2403
                                        'action' => 'language'
2404
                                    ]
2405
                                ]
2406
                            ],
2407
                            'location' => [
2408
                                'type' => Segment::class,
2409
                                'options' => [
2410
                                    'route' => '/location/:id',
2411
                                    'constraints' => [
2412
                                        'id' => '[A-Za-z0-9\-]+\=*'
2413
                                    ],
2414
                                    'defaults' => [
2415
                                        'controller' => '\LeadersLinked\Controller\MyProfilesController',
2416
                                        'action' => 'location'
2417
                                    ]
2418
                                ]
2419
                            ],
2420
                            'skill' => [
2421
                                'type' => Segment::class,
2422
                                'options' => [
2423
                                    'route' => '/skill/:id',
2424
                                    'constraints' => [
2425
                                        'id' => '[A-Za-z0-9\-]+\=*'
2426
                                    ],
2427
                                    'defaults' => [
2428
                                        'controller' => '\LeadersLinked\Controller\MyProfilesController',
2429
                                        'action' => 'skill'
2430
                                    ]
2431
                                ]
2432
                            ],
2433
                            'social-network' => [
2434
                                'type' => Segment::class,
2435
                                'options' => [
2436
                                    'route' => '/social-network/:id',
2437
                                    'constraints' => [
2438
                                        'id' => '[A-Za-z0-9\-]+\=*'
2439
                                    ],
2440
                                    'defaults' => [
2441
                                        'controller' => '\LeadersLinked\Controller\MyProfilesController',
2442
                                        'action' => 'socialNetwork'
2443
                                    ]
2444
                                ]
3912 efrain 2445
                            ],
2446
                            'aptitude' => [
2447
                                'type' => Segment::class,
2448
                                'options' => [
2449
                                    'route' => '/aptitude/:id',
2450
                                    'constraints' => [
2451
                                        'id' => '[A-Za-z0-9\-]+\=*'
2452
                                    ],
2453
                                    'defaults' => [
2454
                                        'controller' => '\LeadersLinked\Controller\MyProfilesController',
2455
                                        'action' => 'aptitude'
2456
                                    ]
2457
                                ]
2458
                            ],
2459
                            'hobby-and-interest' => [
2460
                                'type' => Segment::class,
2461
                                'options' => [
2462
                                    'route' => '/hobby-and-interest/:id',
2463
                                    'constraints' => [
2464
                                        'id' => '[A-Za-z0-9\-]+\=*'
2465
                                    ],
2466
                                    'defaults' => [
2467
                                        'controller' => '\LeadersLinked\Controller\MyProfilesController',
2468
                                        'action' => 'hobbyAndInterest'
2469
                                    ]
2470
                                ]
1 www 2471
                            ]
2472
                        ]
2473
                    ]
2474
                ]
2475
            ],
2476
            'company' => [
2477
                'type' => Literal::class,
2478
                'options' => [
2479
                    'route' => '/company',
2480
                    'defaults' => [
2481
                        'controller' => '\LeadersLinked\Controller\CompanyController',
2482
                        'action' => 'index'
2483
                    ]
2484
                ],
2485
                'may_terminate' => true,
2486
                'child_routes' => [
2487
                    'view' => [
2488
                        'type' => Segment::class,
2489
                        'options' => [
2490
                            'route' => '/view/:id',
2491
                            'constraints' => [
2492
                                'id' => '[A-Za-z0-9\-]+\=*'
2493
                            ],
2494
                            'defaults' => [
2495
                                'controller' => '\LeadersLinked\Controller\CompanyController',
2496
                                'action' => 'view'
2497
                            ]
2498
                        ]
2499
                    ],
2500
                    'follow' => [
2501
                        'type' => Segment::class,
2502
                        'options' => [
2503
                            'route' => '/follow/:id',
2504
                            'constraints' => [
2505
                                'id' => '[A-Za-z0-9\-]+\=*'
2506
                            ],
2507
                            'defaults' => [
2508
                                'controller' => '\LeadersLinked\Controller\CompanyController',
2509
                                'action' => 'follow'
2510
                            ]
2511
                        ]
2512
                    ],
2513
                    'unfollow' => [
2514
                        'type' => Segment::class,
2515
                        'options' => [
2516
                            'route' => '/unfollow/:id',
2517
                            'constraints' => [
2518
                                'id' => '[A-Za-z0-9\-]+\=*'
2519
                            ],
2520
                            'defaults' => [
2521
                                'controller' => '\LeadersLinked\Controller\CompanyController',
2522
                                'action' => 'unfollow'
2523
                            ]
2524
                        ]
2525
                    ],
2526
                    'request' => [
2527
                        'type' => Segment::class,
2528
                        'options' => [
2529
                            'route' => '/request/:id',
2530
                            'constraints' => [
2531
                                'id' => '[A-Za-z0-9\-]+\=*'
2532
                            ],
2533
                            'defaults' => [
2534
                                'controller' => '\LeadersLinked\Controller\CompanyController',
2535
                                'action' => 'request'
2536
                            ]
2537
                        ]
2538
                    ],
2539
                    'accept' => [
2540
                        'type' => Segment::class,
2541
                        'options' => [
2542
                            'route' => '/accept/:id',
2543
                            'constraints' => [
2544
                                'id' => '[A-Za-z0-9\-]+\=*'
2545
                            ],
2546
                            'defaults' => [
2547
                                'controller' => '\LeadersLinked\Controller\CompanyController',
2548
                                'action' => 'accept'
2549
                            ]
2550
                        ]
2551
                    ],
2552
                    'cancel' => [
2553
                        'type' => Segment::class,
2554
                        'options' => [
2555
                            'route' => '/cancel/:id',
2556
                            'constraints' => [
2557
                                'id' => '[A-Za-z0-9\-]+\=*'
2558
                            ],
2559
                            'defaults' => [
2560
                                'controller' => '\LeadersLinked\Controller\CompanyController',
2561
                                'action' => 'cancel'
2562
                            ]
2563
                        ]
2564
                    ],
2565
                    'reject' => [
2566
                        'type' => Segment::class,
2567
                        'options' => [
2568
                            'route' => '/reject/:id',
2569
                            'constraints' => [
2570
                                'id' => '[A-Za-z0-9\-]+\=*'
2571
                            ],
2572
                            'defaults' => [
2573
                                'controller' => '\LeadersLinked\Controller\CompanyController',
2574
                                'action' => 'reject'
2575
                            ]
2576
                        ]
2577
                    ],
2578
                    'leave' => [
2579
                        'type' => Segment::class,
2580
                        'options' => [
2581
                            'route' => '/leave/:id',
2582
                            'constraints' => [
2583
                                'id' => '[A-Za-z0-9\-]+\=*'
2584
                            ],
2585
                            'defaults' => [
2586
                                'controller' => '\LeadersLinked\Controller\CompanyController',
2587
                                'action' => 'leave'
2588
                            ]
2589
                        ]
2590
                    ],
2591
                    'following-companies' => [
2592
                        'type' => Literal::class,
2593
                        'options' => [
2594
                            'route' => '/following-companies',
2595
                            'defaults' => [
2596
                                'controller' => '\LeadersLinked\Controller\CompanyController',
2597
                                'action' => 'followingCompanies'
2598
                            ]
2599
                        ],
2600
                    ],
2601
                    'requests-sent' => [
2602
                        'type' => Literal::class,
2603
                        'options' => [
2604
                            'route' => '/requests-sent',
2605
                            'defaults' => [
2606
                                'controller' => '\LeadersLinked\Controller\CompanyController',
2607
                                'action' => 'requestsSent'
2608
                            ]
2609
                        ],
2610
                        'may_terminate' => true,
2611
                    ],
2612
                    'invitations-received' => [
2613
                        'type' => Literal::class,
2614
                        'options' => [
2615
                            'route' => '/invitations-received',
2616
                            'defaults' => [
2617
                                'controller' => '\LeadersLinked\Controller\CompanyController',
2618
                                'action' => 'invitationsReceived'
2619
                            ]
2620
                        ],
2621
                        'may_terminate' => true,
2622
                    ],
2623
                    'i-work-with' => [
2624
                        'type' => Literal::class,
2625
                        'options' => [
2626
                            'route' => '/i-work-with',
2627
                            'defaults' => [
2628
                                'controller' => '\LeadersLinked\Controller\CompanyController',
2629
                                'action' => 'iWorkWith'
2630
                            ]
2631
                        ],
2632
                        'may_terminate' => true,
2633
                    ],
2634
                    'my-companies' => [
2635
                        'type' => Literal::class,
2636
                        'options' => [
2637
                            'route' => '/my-companies',
2638
                            'defaults' => [
2639
                                'controller' => '\LeadersLinked\Controller\MyCompaniesController',
2640
                                'action' => 'index'
2641
                            ]
2642
                        ],
2643
                        'may_terminate' => true,
2644
                        'child_routes' => [
2645
                            'add' => [
2646
                                'type' => Literal::class,
2647
                                'options' => [
2648
                                    'route' => '/add',
2649
                                    'defaults' => [
2650
                                        'controller' => '\LeadersLinked\Controller\MyCompaniesController',
2651
                                        'action' => 'add'
2652
                                    ]
2653
                                ]
2654
                            ],
2655
                        ]
2656
                    ],
2657
                ]
2658
            ],
2659
            'account-settings' => [
2660
                'type' => Literal::class,
2661
                'options' => [
2662
                    'route' => '/account-settings',
2663
                    'defaults' => [
2664
                        'controller' => '\LeadersLinked\Controller\AccountSettingController',
2665
                        'action' => 'index'
2666
                    ]
2667
                ],
2668
                'may_terminate' => true,
2669
                'child_routes' => [
2670
                    'image' => [
2671
                        'type' => Segment::class,
2672
                        'options' => [
2673
                            'route' => '/image/:operation',
2674
                            'cconstraints' => [
2675
                                'operation' => 'upload|delete'
2676
                            ],
2677
                            'defaults' => [
2678
                                'controller' => '\LeadersLinked\Controller\AccountSettingController',
2679
                                'action' => 'image',
2680
                                'operation' => 'upload'
2681
                            ]
2682
                        ]
2683
                    ],
2684
                    'deactivate' => [
2685
                        'type' => Literal::class,
2686
                        'options' => [
2687
                            'route' => '/deactivate',
2688
                            'defaults' => [
2689
                                'controller' => '\LeadersLinked\Controller\AccountSettingController',
2690
                                'action' => 'deactivate'
2691
                            ]
2692
                        ]
2693
                    ],
2694
                    'notifications' => [
2695
                        'type' => Literal::class,
2696
                        'options' => [
2697
                            'route' => '/notification',
2698
                            'defaults' => [
2699
                                'controller' => '\LeadersLinked\Controller\AccountSettingController',
2700
                                'action' => 'notification'
2701
                            ]
2702
                        ]
2703
                    ],
2704
                    'password' => [
2705
                        'type' => Literal::class,
2706
                        'options' => [
2707
                            'route' => '/password',
2708
                            'defaults' => [
2709
                                'controller' => '\LeadersLinked\Controller\AccountSettingController',
2710
                                'action' => 'password'
2711
                            ]
2712
                        ]
2713
                    ],
2714
                    'add-facebook' => [
2715
                        'type' => Literal::class,
2716
                        'options' => [
2717
                            'route' => '/add-facebook',
2718
                            'defaults' => [
2719
                                'controller' => '\LeadersLinked\Controller\AccountSettingController',
2720
                                'action' => 'addFacebook'
2721
                            ]
2722
                        ]
2723
                    ],
2724
                    'remove-facebook' => [
2725
                        'type' => Literal::class,
2726
                        'options' => [
2727
                            'route' => '/remove-facebook',
2728
                            'defaults' => [
2729
                                'controller' => '\LeadersLinked\Controller\AccountSettingController',
2730
                                'action' => 'removeFacebook'
2731
                            ]
2732
                        ]
2733
                    ],
2734
                    'add-twitter' => [
2735
                        'type' => Literal::class,
2736
                        'options' => [
2737
                            'route' => '/add-twitter',
2738
                            'defaults' => [
2739
                                'controller' => '\LeadersLinked\Controller\AccountSettingController',
2740
                                'action' => 'addTwitter'
2741
                            ]
2742
                        ]
2743
                    ],
2744
                    'remove-twitter' => [
2745
                        'type' => Literal::class,
2746
                        'options' => [
2747
                            'route' => '/remove-twitter',
2748
                            'defaults' => [
2749
                                'controller' => '\LeadersLinked\Controller\AccountSettingController',
2750
                                'action' => 'removeTwitter'
2751
                            ]
2752
                        ]
2753
                    ],
2754
                    'add-google' => [
2755
                        'type' => Literal::class,
2756
                        'options' => [
2757
                            'route' => '/add-google',
2758
                            'defaults' => [
2759
                                'controller' => '\LeadersLinked\Controller\AccountSettingController',
2760
                                'action' => 'addGoogle'
2761
                            ]
2762
                        ]
2763
                    ],
2764
                    'remove-google' => [
2765
                        'type' => Literal::class,
2766
                        'options' => [
2767
                            'route' => '/remove-google',
2768
                            'defaults' => [
2769
                                'controller' => '\LeadersLinked\Controller\AccountSettingController',
2770
                                'action' => 'removeGoogle'
2771
                            ]
2772
                        ]
2773
                    ],
2774
                    'location' => [
2775
                        'type' => Literal::class,
2776
                        'options' => [
2777
                            'route' => '/location',
2778
                            'defaults' => [
2779
                                'controller' => '\LeadersLinked\Controller\AccountSettingController',
2780
                                'action' => 'location'
2781
                            ]
2782
                        ]
2783
                    ],
2784
                    'privacy' => [
2785
                        'type' => Literal::class,
2786
                        'options' => [
2787
                            'route' => '/privacy',
2788
                            'defaults' => [
2789
                                'controller' => '\LeadersLinked\Controller\AccountSettingController',
2790
                                'action' => 'privacy'
2791
                            ]
2792
                        ]
2793
                    ],
2794
                    'basic' => [
2795
                        'type' => Literal::class,
2796
                        'options' => [
2797
                            'route' => '/basic',
2798
                            'defaults' => [
2799
                                'controller' => '\LeadersLinked\Controller\AccountSettingController',
2800
                                'action' => 'basic'
2801
                            ]
2802
                        ]
2803
                    ],
2804
                    'transactions' => [
2805
                        'type' => Literal::class,
2806
                        'options' => [
2807
                            'route' => '/transactions',
2808
                            'defaults' => [
2809
                                'controller' => '\LeadersLinked\Controller\AccountSettingController',
2810
                                'action' => 'transactions'
2811
                            ]
2812
                        ],
2813
                        'may_terminate' => true,
2814
                        'child_routes' => [
2815
                            'add-funds' => [
2816
                                'type' => Literal::class,
2817
                                'options' => [
2818
                                    'route' => '/add-funds',
2819
                                    'defaults' => [
2820
                                        'controller' => '\LeadersLinked\Controller\AccountSettingController',
2821
                                        'action' => 'addFund'
2822
                                    ]
2823
                                ]
2824
                            ],
2825
                        ]
2826
                    ],
2827
                    'browsers' => [
2828
                        'type' => Literal::class,
2829
                        'options' => [
2830
                            'route' => '/browsers',
2831
                            'defaults' => [
2832
                                'controller' => '\LeadersLinked\Controller\AccountSettingController',
2833
                                'action' => 'browsers'
2834
                            ]
2835
                        ]
2836
                    ],
2837
                    'ips' => [
2838
                        'type' => Literal::class,
2839
                        'options' => [
2840
                            'route' => '/ips',
2841
                            'defaults' => [
2842
                                'controller' => '\LeadersLinked\Controller\AccountSettingController',
2843
                                'action' => 'ips'
2844
                            ]
2845
                        ]
2846
                    ],
2847
                    'devices' => [
2848
                        'type' => Literal::class,
2849
                        'options' => [
2850
                            'route' => '/devices',
2851
                            'defaults' => [
2852
                                'controller' => '\LeadersLinked\Controller\AccountSettingController',
2853
                                'action' => 'devices'
2854
                            ]
2855
                        ]
1979 efrain 2856
                    ],
2857
                    'delete-account' => [
2858
                        'type' => Literal::class,
2859
                        'options' => [
2860
                            'route' => '/delete-account',
2861
                            'defaults' => [
2862
                                'controller' => '\LeadersLinked\Controller\AccountSettingController',
2863
                                'action' => 'deleteAccount'
2864
                            ]
2865
                        ]
2866
                    ],
1 www 2867
                ],
2868
                'may_terminate' => true
2869
            ],
2870
            'moodle' => [
2871
                'type' => Literal::class,
2872
                'options' => [
2873
                    'route' => '/moodle',
2874
                    'defaults' => [
2875
                        'controller' => '\LeadersLinked\Controller\MoodleController',
2876
                        'action' => 'index'
2877
                    ]
2878
                ],
2879
                'may_terminate' => true
2880
            ],
2881
            'oauth' => [
2882
                'type' => Literal::class,
2883
                'options' => [
2884
                    'route' => '/oauth',
2885
                    'defaults' => [
2886
                        'controller' => '\LeadersLinked\Controller\OauthController',
2887
                        'action' => 'index'
2888
                    ]
2889
                ],
2890
                'may_terminate' => true,
2891
                'child_routes' => [
2892
                    'facebook' => [
2893
                        'type' => Literal::class,
2894
                        'options' => [
2895
                            'route' => '/facebook',
2896
                            'defaults' => [
2897
                                'controller' => '\LeadersLinked\Controller\OauthController',
2898
                                'action' => 'facebook'
2899
                            ]
2900
                        ],
2901
                        'may_terminate' => true,
2902
                        'child_routes' => [
2903
                            'delete' => [
2904
                                'type' => Literal::class,
2905
                                'options' => [
2906
                                    'route' => '/delete',
2907
                                    'defaults' => [
2908
                                        'controller' => '\LeadersLinked\Controller\OauthController',
2909
                                        'action' => 'facebookDelete'
2910
                                    ]
2911
                                ],
2912
                                'may_terminate' => true,
2913
                            ],
2914
                            'cancel' => [
2915
                                'type' => Literal::class,
2916
                                'options' => [
2917
                                    'route' => '/cancel',
2918
                                    'defaults' => [
2919
                                        'controller' => '\LeadersLinked\Controller\OauthController',
2920
                                        'action' => 'facebookCancel'
2921
                                    ]
2922
                                ],
2923
                                'may_terminate' => true,
2924
                            ],
553 geraldo 2925
                        ],
1 www 2926
                    ],
2927
                    'twitter' => [
2928
                        'type' => Literal::class,
2929
                        'options' => [
2930
                            'route' => '/twitter',
2931
                            'defaults' => [
2932
                                'controller' => '\LeadersLinked\Controller\OauthController',
2933
                                'action' => 'twitter'
2934
                            ]
2935
                        ],
2936
                        'may_terminate' => true,
2937
                    ],
2938
                    'google' => [
2939
                        'type' => Literal::class,
2940
                        'options' => [
2941
                            'route' => '/google',
2942
                            'defaults' => [
2943
                                'controller' => '\LeadersLinked\Controller\OauthController',
2944
                                'action' => 'google'
2945
                            ]
2946
                        ],
2947
                        'may_terminate' => true,
2948
                    ],
5612 anderson 2949
                    /* 'facebook' => [
553 geraldo 2950
                  'type' => Literal::class,
2951
                  'options' => [
2952
                  'route' => '/facebook',
2953
                  'defaults' => [
2954
                  'controller' => '\LeadersLinked\Controller\OauthController',
2955
                  'action' => 'facebook'
2956
                  ]
2957
                  ],
2958
                  'may_terminate' => true,
2959
                  'child_routes' => [
2960
                  'cancel' => [
2961
                  'type' => Literal::class,
2962
                  'options' => [
2963
                  'route' => '/cancel',
2964
                  'defaults' => [
2965
                  'controller' => '\LeadersLinked\Controller\OauthController',
2966
                  'action' => 'facebookCancel'
2967
                  ]
2968
                  ]
2969
                  ],
2970
                  'delete' => [
2971
                  'type' => Literal::class,
2972
                  'options' => [
2973
                  'route' => '/delete',
2974
                  'defaults' => [
2975
                  'controller' => '\LeadersLinked\Controller\OauthController',
2976
                  'action' => 'facebookDelete'
2977
                  ]
2978
                  ]
2979
                  ]
2980
                  ]
2981
                  ] */
1 www 2982
                ]
2983
            ],
5205 efrain 2984
            'daily-pulse' => [
2985
                'type' => Literal::class,
2986
                'options' => [
2987
                    'route' => '/daily-pulse',
2988
                    'defaults' => [
2989
                        'controller' => '\LeadersLinked\Controller\DailyPulseController',
2990
                        'action' => 'index'
2991
                    ]
2992
                ],
2993
                'may_terminate' => true,
2994
                'child_routes' => [
2995
                    'how_are_you_feel' => [
2996
                        'type' => Segment::class,
2997
                        'options' => [
2998
                            'route' => '/how_are_you_feel/:id',
2999
                            'constraints' => [
3000
                                'id' => '[A-Za-z0-9\-]+\=*'
3001
                            ],
3002
                            'defaults' => [
3003
                                'controller' => '\LeadersLinked\Controller\DailyPulseController',
3004
                                'action' => 'howAreYouFeel'
3005
                            ]
3006
                        ]
3007
                    ],
3008
                    'climate_on_your_organization' => [
3009
                        'type' => Segment::class,
3010
                        'options' => [
3011
                            'route' => '/climate_on_your_organization/:id',
3012
                            'constraints' => [
3013
                                'id' => '[A-Za-z0-9\-]+\=*'
3014
                            ],
3015
                            'defaults' => [
3016
                                'controller' => '\LeadersLinked\Controller\DailyPulseController',
3017
                                'action' => 'climateOnYourOrganization'
3018
                            ]
3019
                        ]
3020
                    ],
5612 anderson 3021
                ],
5205 efrain 3022
            ],
5612 anderson 3023
 
3024
 
1 www 3025
            'helpers' => [
3026
                'type' => Literal::class,
3027
                'options' => [
3028
                    'route' => '/helpers',
3029
                    'defaults' => [
3030
                        'controller' => '\LeadersLinked\Controller\HelperController',
3031
                        'action' => 'index'
3032
                    ]
3033
                ],
3034
                'may_terminate' => true,
3035
                'child_routes' => [
6605 efrain 3036
                    'menu' => [
3037
                        'type' => Literal::class,
3038
                        'options' => [
3039
                            'route' => '/menu',
3040
                            'defaults' => [
3041
                                'controller' => '\LeadersLinked\Controller\HelperController',
3042
                                'action' => 'menu'
3043
                            ]
3044
                        ]
3045
                    ],
3046
 
1 www 3047
                    'search-people' => [
3048
                        'type' => Literal::class,
3049
                        'options' => [
3050
                            'route' => '/search-people',
3051
                            'defaults' => [
3052
                                'controller' => '\LeadersLinked\Controller\HelperController',
3053
                                'action' => 'searchPeople'
3054
                            ]
3055
                        ]
3056
                    ],
3057
                    'company-suggestion' => [
3058
                        'type' => Segment::class,
3059
                        'options' => [
3060
                            'route' => '/company-suggestion/:company_id',
3061
                            'constraints' => [
3062
                                'company_id' => '[A-Za-z0-9\-]+\=*'
3063
                            ],
3064
                            'defaults' => [
3065
                                'controller' => '\LeadersLinked\Controller\HelperController',
3066
                                'action' => 'companySuggestion'
3067
                            ]
3068
                        ]
3069
                    ],
3070
                    'posts' => [
3071
                        'type' => Literal::class,
3072
                        'options' => [
3073
                            'route' => '/posts',
3074
                            'defaults' => [
3075
                                'controller' => '\LeadersLinked\Controller\HelperController',
3076
                                'action' => 'posts'
3077
                            ]
3078
                        ]
3079
                    ],
3080
                    'people-you-may-know' => [
3081
                        'type' => Literal::class,
3082
                        'options' => [
3083
                            'route' => '/people-you-may-know',
3084
                            'defaults' => [
3085
                                'controller' => '\LeadersLinked\Controller\HelperController',
3086
                                'action' => 'peopleYouMayKnow'
3087
                            ]
3088
                        ]
3089
                    ],
3090
                    'people-viewed-profile' => [
3091
                        'type' => Segment::class,
3092
                        'options' => [
3093
                            'route' => '/people-viewed-profile/:user_profile_id',
3094
                            'constraints' => [
3095
                                'user_profile_id' => '[A-Za-z0-9\-]+\=*'
3096
                            ],
3097
                            'defaults' => [
3098
                                'controller' => '\LeadersLinked\Controller\HelperController',
3099
                                'action' => 'peopleViewedProfile'
3100
                            ]
3101
                        ]
3102
                    ],
3103
                    'company-follower' => [
3104
                        'type' => Segment::class,
3105
                        'options' => [
3106
                            'route' => '/company-follower/:company_id',
3107
                            'constraints' => [
3108
                                'company_id' => '[A-Za-z0-9\-]+\=*'
3109
                            ],
3110
                            'defaults' => [
3111
                                'controller' => '\LeadersLinked\Controller\HelperController',
3112
                                'action' => 'companyFollower'
3113
                            ]
3114
                        ]
3115
                    ],
3116
                    'group-members' => [
3117
                        'type' => Segment::class,
3118
                        'options' => [
3119
                            'route' => '/group-members/:group_id',
3120
                            'constraints' => [
3121
                                'group_id' => '[A-Za-z0-9\-]+\=*'
3122
                            ],
3123
                            'defaults' => [
3124
                                'controller' => '\LeadersLinked\Controller\HelperController',
3125
                                'action' => 'groupMembers'
3126
                            ]
3127
                        ],
3128
                        'may_terminate' => true,
3129
                        'child_routes' => [
3130
                            'invite' => [
3131
                                'type' => Literal::class,
3132
                                'options' => [
3133
                                    'route' => '/invite',
3134
                                    'defaults' => [
3135
                                        'controller' => '\LeadersLinked\Controller\HelperController',
3136
                                        'action' => 'groupMemberInvite'
3137
                                    ]
3138
                                ]
3139
                            ],
3140
                            'reject' => [
3141
                                'type' => Segment::class,
3142
                                'options' => [
3143
                                    'route' => '/reject/:user_id',
3144
                                    'constraints' => [
3145
                                        'user_id' => '[A-Za-z0-9\-]+\=*'
3146
                                    ],
3147
                                    'defaults' => [
3148
                                        'controller' => '\LeadersLinked\Controller\HelperController',
3149
                                        'action' => 'groupMemberReject'
3150
                                    ]
3151
                                ]
3152
                            ],
3153
                            'cancel' => [
3154
                                'type' => Segment::class,
3155
                                'options' => [
3156
                                    'route' => '/cancel/:user_id',
3157
                                    'constraints' => [
3158
                                        'user_id' => '[A-Za-z0-9\-]+\=*'
3159
                                    ],
3160
                                    'defaults' => [
3161
                                        'controller' => '\LeadersLinked\Controller\HelperController',
3162
                                        'action' => 'groupMemberCancel'
3163
                                    ]
3164
                                ]
3165
                            ],
3166
                            'approve' => [
3167
                                'type' => Segment::class,
3168
                                'options' => [
3169
                                    'route' => '/approve/:user_id',
3170
                                    'constraints' => [
3171
                                        'user_id' => '[A-Za-z0-9\-]+\=*'
3172
                                    ],
3173
                                    'defaults' => [
3174
                                        'controller' => '\LeadersLinked\Controller\HelperController',
3175
                                        'action' => 'groupMemberApprove'
3176
                                    ]
3177
                                ]
3178
                            ],
553 geraldo 3179
                        ]
1 www 3180
                    ],
3181
                    'groups-suggestion' => [
2920 efrain 3182
                        'type' => Literal::class,
1 www 3183
                        'options' => [
2920 efrain 3184
                            'route' => '/groups-suggestion',
1 www 3185
                            'defaults' => [
3186
                                'controller' => '\LeadersLinked\Controller\HelperController',
3187
                                'action' => 'groupsSuggestion'
3188
                            ]
3189
                        ]
3190
                    ],
3298 efrain 3191
                    'my-groups' => [
3192
                        'type' => Literal::class,
3193
                        'options' => [
3194
                            'route' => '/my-groups',
3195
                            'defaults' => [
3196
                                'controller' => '\LeadersLinked\Controller\HelperController',
3197
                                'action' => 'myGroups'
3198
                            ]
3199
                        ]
3200
                    ],
2444 efrain 3201
                    'footer' => [
3202
                        'type' => Literal::class,
3203
                        'options' => [
3204
                            'route' => '/footer',
3205
                            'defaults' => [
3206
                                'controller' => '\LeadersLinked\Controller\HelperController',
3207
                                'action' => 'footer'
3208
                            ]
3209
                        ]
3210
                    ],
4179 efrain 3211
                    'next-events' => [
3212
                        'type' => Literal::class,
3213
                        'options' => [
3214
                            'route' => '/next-events',
3215
                            'defaults' => [
3216
                                'controller' => '\LeadersLinked\Controller\HelperController',
3217
                                'action' => 'nextEvents'
3218
                            ]
3219
                        ]
3220
                    ],
6749 efrain 3221
                    'company-sizes' => [
3222
                        'type' => Literal::class,
3223
                        'options' => [
3224
                            'route' => '/company-sizes',
3225
                            'defaults' => [
3226
                                'controller' => '\LeadersLinked\Controller\HelperController',
3227
                                'action' => 'companySizes'
3228
                            ]
3229
                        ]
3230
                    ],
3231
                    'degrees' => [
3232
                        'type' => Literal::class,
3233
                        'options' => [
3234
                            'route' => '/degrees',
3235
                            'defaults' => [
3236
                                'controller' => '\LeadersLinked\Controller\HelperController',
3237
                                'action' => 'degrees'
3238
                            ]
3239
                        ]
3240
                    ],
3241
                    'languages' => [
3242
                        'type' => Literal::class,
3243
                        'options' => [
3244
                            'route' => '/languages',
3245
                            'defaults' => [
3246
                                'controller' => '\LeadersLinked\Controller\HelperController',
3247
                                'action' => 'languages'
3248
                            ]
3249
                        ]
3250
                    ],
3251
 
3252
                    'skills' => [
3253
                        'type' => Literal::class,
3254
                        'options' => [
3255
                            'route' => '/skills',
3256
                            'defaults' => [
3257
                                'controller' => '\LeadersLinked\Controller\HelperController',
3258
                                'action' => 'skills'
3259
                            ]
3260
                        ]
3261
                    ],
3262
 
3263
                    'aptitudes' => [
3264
                        'type' => Literal::class,
3265
                        'options' => [
3266
                            'route' => '/aptitudes',
3267
                            'defaults' => [
3268
                                'controller' => '\LeadersLinked\Controller\HelperController',
3269
                                'action' => 'aptitudes'
3270
                            ]
3271
                        ]
3272
                    ],
3273
 
3274
                    'hobbies' => [
3275
                        'type' => Literal::class,
3276
                        'options' => [
3277
                            'route' => '/hobbies',
3278
                            'defaults' => [
3279
                                'controller' => '\LeadersLinked\Controller\HelperController',
3280
                                'action' => 'hobbies'
3281
                            ]
3282
                        ]
3283
                    ],
6879 efrain 3284
 
3285
                    'industries' => [
3286
                        'type' => Literal::class,
3287
                        'options' => [
3288
                            'route' => '/industries',
3289
                            'defaults' => [
3290
                                'controller' => '\LeadersLinked\Controller\HelperController',
3291
                                'action' => 'industries'
3292
                            ]
3293
                        ]
3294
                    ],
6945 efrain 3295
 
3296
                    'timezones' => [
3297
                        'type' => Literal::class,
3298
                        'options' => [
3299
                            'route' => '/timezones',
3300
                            'defaults' => [
3301
                                'controller' => '\LeadersLinked\Controller\HelperController',
3302
                                'action' => 'timeZones'
3303
                            ]
3304
                        ]
3305
                    ],
1 www 3306
                ]
3307
            ],
3308
            'help' => [
3309
                'type' => Literal::class,
3310
                'options' => [
3311
                    'route' => '/help',
3312
                    'defaults' => [
3313
                        'controller' => '\LeadersLinked\Controller\HelpController',
3314
                        'action' => 'send'
3315
                    ]
3316
                ],
3317
                'may_terminate' => true,
553 geraldo 3318
            ],
1 www 3319
            'services' => [
3320
                'type' => Literal::class,
3321
                'options' => [
3322
                    'route' => '/services',
3323
                    'defaults' => [
3324
                        'controller' => '\LeadersLinked\Controller\ServiceController',
3325
                        'action' => 'index'
3326
                    ]
3327
                ],
3328
                'may_terminate' => true,
3329
                'child_routes' => [
3330
                    'storage' => [
3331
                        'type' => Segment::class,
3332
                        'options' => [
3333
                            'route' => '/storage/type/:type[/code/:code][/filename/:filename]',
3334
                            'constraints' => [
3335
                                'type' => 'user|user-profile|user-cover|company|company-cover|group|group-cover|job|chat|image|feed|post|microlearning-topic|microlearning-capsule|microlearning-slide',
3336
                                'code' => '[A-Za-z0-9\-]+\=*',
3337
                                'filename' => '[a-zA-Z0-9\-\_]+\.(jpg|jpeg|gif|png|mp3|mp4|flv|doc|pdf|docx|xls|ppt|pdf|xlsx|pptx)'
3338
                            ],
3339
                            // MjM5ODk0Mzgg
3340
                            'defaults' => [
3341
                                'controller' => '\LeadersLinked\Controller\ServiceController',
3342
                                'action' => 'storage'
3343
                            ]
3344
                        ]
3345
                    ],
3346
                    'device' => [
3347
                        'type' => Literal::class,
3348
                        'options' => [
3349
                            'route' => '/device',
3350
                            'defaults' => [
3351
                                'controller' => '\LeadersLinked\Controller\ServiceController',
3352
                                'action' => 'device'
3353
                            ]
3354
                        ]
3355
                    ],
3356
                    'fcm' => [
3357
                        'type' => Literal::class,
3358
                        'options' => [
3359
                            'route' => '/fcm',
3360
                            'defaults' => [
3361
                                'controller' => '\LeadersLinked\Controller\ServiceController',
3362
                                'action' => 'fcm'
3363
                            ]
3364
                        ]
3365
                    ],
3366
                    'signin' => [
3367
                        'type' => Literal::class,
3368
                        'options' => [
3369
                            'route' => '/signin',
3370
                            'defaults' => [
3371
                                'controller' => '\LeadersLinked\Controller\ServiceController',
3372
                                'action' => 'signin'
3373
                            ]
3374
                        ]
3375
                    ],
3376
                    'check-session' => [
3377
                        'type' => Literal::class,
3378
                        'options' => [
3379
                            'route' => '/check-session',
3380
                            'defaults' => [
3381
                                'controller' => '\LeadersLinked\Controller\ServiceController',
3382
                                'action' => 'checkSession'
3383
                            ]
3384
                        ]
3385
                    ],
3386
                    'signout' => [
3387
                        'type' => Literal::class,
3388
                        'options' => [
3389
                            'route' => '/signout',
3390
                            'defaults' => [
3391
                                'controller' => '\LeadersLinked\Controller\ServiceController',
3392
                                'action' => 'signout'
3393
                            ]
3394
                        ]
3395
                    ],
3396
                    'sync' => [
3397
                        'type' => Literal::class,
3398
                        'options' => [
3399
                            'route' => '/sync',
3400
                            'defaults' => [
3401
                                'controller' => '\LeadersLinked\Controller\ServiceController',
3402
                                'action' => 'sync'
3403
                            ]
3404
                        ]
3405
                    ],
3406
                    'sync-batch' => [
3407
                        'type' => Literal::class,
3408
                        'options' => [
3409
                            'route' => '/sync-batch',
3410
                            'defaults' => [
3411
                                'controller' => '\LeadersLinked\Controller\ServiceController',
3412
                                'action' => 'syncBatch'
3413
                            ]
3414
                        ]
3415
                    ],
2004 efrain 3416
                    'delete-account' => [
3417
                        'type' => Literal::class,
3418
                        'options' => [
3419
                            'route' => '/delete-account',
3420
                            'defaults' => [
3421
                                'controller' => '\LeadersLinked\Controller\ServiceController',
3422
                                'action' => 'deleteAccount'
3423
                            ]
3424
                        ]
3425
                    ],
1 www 3426
                    'microlearning' => [
3427
                        'type' => Literal::class,
3428
                        'options' => [
3429
                            'route' => '/microlearning',
3430
                            'defaults' => [
3431
                                'controller' => '\LeadersLinked\Controller\ServiceMicrolearningController',
3432
                                'action' => 'index'
3433
                            ]
3434
                        ],
3435
                        'may_terminate' => true,
3436
                        'child_routes' => [
3437
                            'refresh' => [
3438
                                'type' => Literal::class,
3439
                                'options' => [
3440
                                    'route' => '/refresh',
3441
                                    'defaults' => [
3442
                                        'controller' => '\LeadersLinked\Controller\ServiceController',
3443
                                        'action' => 'microlearningRefresh'
3444
                                    ]
3445
                                ]
3446
                            ],
1979 efrain 3447
                            'delete-account' => [
3448
                                'type' => Literal::class,
3449
                                'options' => [
3450
                                    'route' => '/delete-account',
3451
                                    'defaults' => [
3452
                                        'controller' => '\LeadersLinked\Controller\ServiceController',
3453
                                        'action' => 'deleteAccount'
3454
                                    ]
3455
                                ]
3456
                            ],
1 www 3457
                            'check-changes' => [
3458
                                'type' => Literal::class,
3459
                                'options' => [
3460
                                    'route' => '/check-changes',
3461
                                    'defaults' => [
3462
                                        'controller' => '\LeadersLinked\Controller\ServiceController',
3463
                                        'action' => 'microlearningCheckChanges'
3464
                                    ]
3465
                                ]
3466
                            ],
280 efrain 3467
                            'capsules' => [
3468
                                'type' => Literal::class,
3469
                                'options' => [
3470
                                    'route' => '/capsules',
3471
                                    'defaults' => [
3472
                                        'controller' => '\LeadersLinked\Controller\ServiceController',
3473
                                        'action' => 'microlearningCapsules'
3474
                                    ]
3475
                                ],
3476
                                'may_terminate' => true,
3477
                                'child_routes' => [
3478
                                    'comments' => [
553 geraldo 3479
                                        'type' => Segment::class,
280 efrain 3480
                                        'options' => [
3481
                                            'route' => '/comments/:capsule_id',
3482
                                            'constraints' => [
3483
                                                'capsule_id' => '[A-Za-z0-9\-]+\=*'
3484
                                            ],
3485
                                            'defaults' => [
3486
                                                'controller' => '\LeadersLinked\Controller\ServiceCapsuleCommentsController',
3487
                                                'action' => 'index'
3488
                                            ]
3489
                                        ],
3490
                                        'may_terminate' => true,
3491
                                        'child_routes' => [
3492
                                            'add' => [
3493
                                                'type' => Literal::class,
3494
                                                'options' => [
3495
                                                    'route' => '/add',
3496
                                                    'defaults' => [
3497
                                                        'controller' => '\LeadersLinked\Controller\ServiceCapsuleCommentsController',
3498
                                                        'action' => 'add'
3499
                                                    ]
3500
                                                ]
3501
                                            ],
3502
                                            'get' => [
3503
                                                'type' => Segment::class,
3504
                                                'options' => [
1323 efrain 3505
                                                    'route' => '/get/:comment_id',
280 efrain 3506
                                                    'constraints' => [
1323 efrain 3507
                                                        'comment_id' => '[A-Za-z0-9\-]+\=*'
280 efrain 3508
                                                    ],
3509
                                                    'defaults' => [
3510
                                                        'controller' => '\LeadersLinked\Controller\ServiceCapsuleCommentsController',
3511
                                                        'action' => 'get'
3512
                                                    ]
3513
                                                ]
3514
                                            ],
1323 efrain 3515
                                            'edit' => [
3516
                                                'type' => Segment::class,
3517
                                                'options' => [
3518
                                                    'route' => '/edit/:comment_id',
3519
                                                    'constraints' => [
3520
                                                        'comment_id' => '[A-Za-z0-9\-]+\=*'
3521
                                                    ],
3522
                                                    'defaults' => [
3523
                                                        'controller' => '\LeadersLinked\Controller\ServiceCapsuleCommentsController',
3524
                                                        'action' => 'edit'
3525
                                                    ]
3526
                                                ]
3527
                                            ],
280 efrain 3528
                                            'delete' => [
3529
                                                'type' => Segment::class,
3530
                                                'options' => [
1323 efrain 3531
                                                    'route' => '/delete/:comment_id',
280 efrain 3532
                                                    'constraints' => [
1323 efrain 3533
                                                        'comment_id' => '[A-Za-z0-9\-]+\=*'
280 efrain 3534
                                                    ],
3535
                                                    'defaults' => [
3536
                                                        'controller' => '\LeadersLinked\Controller\ServiceCapsuleCommentsController',
3537
                                                        'action' => 'delete'
3538
                                                    ]
3539
                                                ]
3540
                                            ],
3541
                                        ]
3542
                                    ],
553 geraldo 3543
                                ]
280 efrain 3544
                            ],
733 efrain 3545
 
553 geraldo 3546
                        ]
1 www 3547
                    ],
3548
                ]
3549
            ],
3550
            'marketplace' => [
3551
                'type' => Literal::class,
3552
                'options' => [
3553
                    'route' => '/marketplace',
3554
                    'defaults' => [
3555
                        'controller' => '\LeadersLinked\Controller\MarketPlaceController',
3556
                        'action' => 'index'
3557
                    ]
3558
                ],
3559
                'may_terminate' => true,
3560
                'child_routes' => [
3561
                    'categories' => [
3562
                        'type' => Segment::class,
3563
                        'options' => [
3564
                            'route' => '/categories',
3565
                            'defaults' => [
3566
                                'controller' => '\LeadersLinked\Controller\MarketPlaceController',
3567
                                'action' => 'getCategories'
3568
                            ]
3569
                        ]
3570
                    ],
3571
                    'enroll' => [
3572
                        'type' => Segment::class,
3573
                        'options' => [
3574
                            'route' => '/enroll/:company_id/:topic_id/:capsule_id',
3575
                            'constraints' => [
3576
                                'company_id' => '[A-Za-z0-9\-]+\=*',
3577
                                'topic_id' => '[A-Za-z0-9\-]+\=*',
3578
                                'capsule_id' => '[A-Za-z0-9\-]+\=*',
3579
                            ],
3580
                            'defaults' => [
3581
                                'controller' => '\LeadersLinked\Controller\MarketPlaceController',
3582
                                'action' => 'enroll'
3583
                            ]
3584
                        ]
3585
                    ],
5224 efrain 3586
                    'claim' => [
3587
                        'type' => Segment::class,
3588
                        'options' => [
3589
                            'route' => '/claim/:id',
3590
                            'constraints' => [
3591
                                'id' => '[A-Za-z0-9\-]+\=*',
3592
                            ],
3593
                            'defaults' => [
3594
                                'controller' => '\LeadersLinked\Controller\MarketPlaceController',
3595
                                'action' => 'claim'
3596
                            ]
3597
                        ]
3598
                    ],
1 www 3599
                ]
553 geraldo 3600
            ],
1 www 3601
        ]
3602
    ],
3603
    'controllers' => [
3604
        'factories' => [
3605
            \LeadersLinked\Controller\AccountSettingController::class => \LeadersLinked\Factory\Controller\AccountSettingControllerFactory::class,
3606
            \LeadersLinked\Controller\AuthController::class => \LeadersLinked\Factory\Controller\AuthControllerFactory::class,
3607
            \LeadersLinked\Controller\BackendController::class => \LeadersLinked\Factory\Controller\BackendControllerFactory::class,
4113 efrain 3608
            \LeadersLinked\Controller\CalendarController::class => \LeadersLinked\Factory\Controller\CalendarControllerFactory::class,
1 www 3609
            \LeadersLinked\Controller\ChatController::class => \LeadersLinked\Factory\Controller\ChatControllerFactory::class,
3610
            \LeadersLinked\Controller\CompanyController::class => \LeadersLinked\Factory\Controller\CompanyControllerFactory::class,
3611
            \LeadersLinked\Controller\DashboardController::class => \LeadersLinked\Factory\Controller\DashboardControllerFactory::class,
5205 efrain 3612
            \LeadersLinked\Controller\DailyPulseController::class => \LeadersLinked\Factory\Controller\DailyPulseControllerFactory::class,
1 www 3613
            \LeadersLinked\Controller\ConnectionController::class => \LeadersLinked\Factory\Controller\ConnectionControllerFactory::class,
3614
            \LeadersLinked\Controller\HomeController::class => \LeadersLinked\Factory\Controller\HomeControllerFactory::class,
3615
            \LeadersLinked\Controller\HelperController::class => \LeadersLinked\Factory\Controller\HelperControllerFactory::class,
3616
            \LeadersLinked\Controller\HelpController::class => \LeadersLinked\Factory\Controller\HelpControllerFactory::class,
3617
            \LeadersLinked\Controller\FeedController::class => \LeadersLinked\Factory\Controller\FeedControllerFactory::class,
3618
            \LeadersLinked\Controller\MarketPlaceController::class => \LeadersLinked\Factory\Controller\MarketPlaceControllerFactory::class,
3619
            \LeadersLinked\Controller\MoodleController::class => \LeadersLinked\Factory\Controller\MoodleControllerFactory::class,
3620
            \LeadersLinked\Controller\OauthController::class => \LeadersLinked\Factory\Controller\OauthControllerFactory::class,
3621
            \LeadersLinked\Controller\JobController::class => \LeadersLinked\Factory\Controller\JobControllerFactory::class,
3622
            \LeadersLinked\Controller\InMailController::class => \LeadersLinked\Factory\Controller\InMailControllerFactory::class,
3639 efrain 3623
            \LeadersLinked\Controller\ImpersonateController::class => \LeadersLinked\Factory\Controller\ImpersonateControllerFactory::class,
1 www 3624
            \LeadersLinked\Controller\GroupController::class => \LeadersLinked\Factory\Controller\GroupControllerFactory::class,
3625
            \LeadersLinked\Controller\MyGroupsController::class => \LeadersLinked\Factory\Controller\MyGroupsControllerFactory::class,
3626
            \LeadersLinked\Controller\MyCompaniesController::class => \LeadersLinked\Factory\Controller\MyCompaniesControllerFactory::class,
3262 efrain 3627
            \LeadersLinked\Controller\NotificationController::class => \LeadersLinked\Factory\Controller\NotificationControllerFactory::class,
1 www 3628
            \LeadersLinked\Controller\PaypalController::class => \LeadersLinked\Factory\Controller\PaypalControllerFactory::class,
4808 efrain 3629
            \LeadersLinked\Controller\PostController::class => \LeadersLinked\Factory\Controller\PostControllerFactory::class,
1 www 3630
            \LeadersLinked\Controller\ProfileController::class => \LeadersLinked\Factory\Controller\ProfileControllerFactory::class,
3631
            \LeadersLinked\Controller\ProfileMicrolearningController::class => \LeadersLinked\Factory\Controller\ProfileMicrolearningControllerFactory::class,
5612 anderson 3632
            // \LeadersLinked\Controller\SelfEvaluationController::class => \LeadersLinked\Factory\Controller\SelfEvaluationControllerFactory::class,
5050 efrain 3633
            //\LeadersLinked\Controller\PerformanceEvaluationController::class => \LeadersLinked\Factory\Controller\PerformanceEvaluationControllerFactory::class,
3634
            \LeadersLinked\Controller\MyCoachController::class => \LeadersLinked\Factory\Controller\MyCoachControllerFactory::class,
6388 efrain 3635
 
3636
 
6001 efrain 3637
            \LeadersLinked\Controller\KnowledgeAreaController::class => \LeadersLinked\Factory\Controller\KnowledgeAreaControllerFactory::class,
1 www 3638
            \LeadersLinked\Controller\MyProfilesController::class => \LeadersLinked\Factory\Controller\MyProfilesControllerFactory::class,
3639
            \LeadersLinked\Controller\SearchController::class => \LeadersLinked\Factory\Controller\SearchControllerFactory::class,
3775 efrain 3640
            \LeadersLinked\Controller\ShorterController::class => \LeadersLinked\Factory\Controller\ShorterControllerFactory::class,
1 www 3641
            \LeadersLinked\Controller\StorageController::class => \LeadersLinked\Factory\Controller\StorageControllerFactory::class,
3639 efrain 3642
            \LeadersLinked\Controller\StorageNetworkController::class => \LeadersLinked\Factory\Controller\StorageNetworkControllerFactory::class,
1 www 3643
            \LeadersLinked\Controller\ServiceController::class => \LeadersLinked\Factory\Controller\ServiceControllerFactory::class,
1323 efrain 3644
            \LeadersLinked\Controller\ServiceCapsuleCommentsController::class => \LeadersLinked\Factory\Controller\ServiceCapsuleCommentsControllerFactory::class,
5837 efrain 3645
           // \LeadersLinked\Controller\ZoomController::class => \LeadersLinked\Factory\Controller\ZoomControllerFactory::class,
5612 anderson 3646
 
1 www 3647
        ],
3648
        'aliases' => [
3649
            '\LeadersLinked\Controller\AuthController' => \LeadersLinked\Controller\AuthController::class,
3650
            '\LeadersLinked\Controller\BackendController' => \LeadersLinked\Controller\BackendController::class,
3651
            '\LeadersLinked\Controller\AccountSettingController' => \LeadersLinked\Controller\AccountSettingController::class,
4113 efrain 3652
            '\LeadersLinked\Controller\CalendarController' => \LeadersLinked\Controller\CalendarController::class,
1 www 3653
            '\LeadersLinked\Controller\ChatController' => \LeadersLinked\Controller\ChatController::class,
3654
            '\LeadersLinked\Controller\CompanyController' => \LeadersLinked\Controller\CompanyController::class,
3655
            '\LeadersLinked\Controller\ConnectionController' => \LeadersLinked\Controller\ConnectionController::class,
3656
            '\LeadersLinked\Controller\DashboardController' => \LeadersLinked\Controller\DashboardController::class,
3657
            '\LeadersLinked\Controller\HomeController' => \LeadersLinked\Controller\HomeController::class,
3658
            '\LeadersLinked\Controller\HelpController' => \LeadersLinked\Controller\HelpController::class,
3659
            '\LeadersLinked\Controller\HelperController' => \LeadersLinked\Controller\HelperController::class,
3660
            '\LeadersLinked\Controller\FeedController' => \LeadersLinked\Controller\FeedController::class,
553 geraldo 3661
            '\LeadersLinked\Controller\InMailController' => \LeadersLinked\Controller\InMailController::class,
3639 efrain 3662
            '\LeadersLinked\Controller\ImpersonateController' => \LeadersLinked\Controller\ImpersonateController::class,
1 www 3663
            '\LeadersLinked\Controller\JobController' => \LeadersLinked\Controller\JobController::class,
3664
            '\LeadersLinked\Controller\GroupController' => \LeadersLinked\Controller\GroupController::class,
3665
            '\LeadersLinked\Controller\MyGroupsController' => \LeadersLinked\Controller\MyGroupsController::class,
3666
            '\LeadersLinked\Controller\MyCompaniesController' => \LeadersLinked\Controller\MyCompaniesController::class,
3667
            '\LeadersLinked\Controller\PaypalController' => \LeadersLinked\Controller\PaypalController::class,
4808 efrain 3668
            '\LeadersLinked\Controller\PostController' => \LeadersLinked\Controller\PostController::class,
1 www 3669
            '\LeadersLinked\Controller\ProfileController' => \LeadersLinked\Controller\ProfileController::class,
6521 efrain 3670
 
1 www 3671
            '\LeadersLinked\Controller\MyProfilesController' => \LeadersLinked\Controller\MyProfilesController::class,
3672
            '\LeadersLinked\Controller\MarketPlaceController' => \LeadersLinked\Controller\MarketPlaceController::class,
3673
            '\LeadersLinked\Controller\MoodleController' => \LeadersLinked\Controller\MoodleController::class,
3262 efrain 3674
            '\LeadersLinked\Controller\NotificationController' => \LeadersLinked\Controller\NotificationController::class,
1 www 3675
            '\LeadersLinked\Controller\SearchController' => \LeadersLinked\Controller\SearchController::class,
3676
            '\LeadersLinked\Controller\StorageController' => \LeadersLinked\Controller\StorageController::class,
3639 efrain 3677
            '\LeadersLinked\Controller\StorageNetworkController' => \LeadersLinked\Controller\StorageNetworkController::class,
1 www 3678
            '\LeadersLinked\Controller\OauthController' => \LeadersLinked\Controller\OauthController::class,
3679
            '\LeadersLinked\Controller\ServiceController' => \LeadersLinked\Controller\ServiceController::class,
1323 efrain 3680
            '\LeadersLinked\Controller\ServiceCapsuleCommentsController' => \LeadersLinked\Controller\ServiceCapsuleCommentsController::class,
3775 efrain 3681
            '\LeadersLinked\Controller\ShorterController' => \LeadersLinked\Controller\ShorterController::class,
5612 anderson 3682
 
3683
 
6001 efrain 3684
 
3685
            '\LeadersLinked\Controller\KnowledgeAreaController' => \LeadersLinked\Controller\KnowledgeAreaController::class,
5050 efrain 3686
            '\LeadersLinked\Controller\MyCoachController' => \LeadersLinked\Controller\MyCoachController::class,
5205 efrain 3687
            '\LeadersLinked\Controller\DailyPulseController' => \LeadersLinked\Controller\DailyPulseController::class,
5612 anderson 3688
 
3689
 
5050 efrain 3690
            //'\LeadersLinked\Controller\SelfEvaluationController' => \LeadersLinked\Controller\SelfEvaluationController::class,
5837 efrain 3691
            //'\LeadersLinked\Controller\ZoomController' => \LeadersLinked\Controller\ZoomController::class,
1 www 3692
        ]
3693
    ],
3694
    'laminas-cli' => [
3695
        'commands' => [
3696
            'process-queue-email' => \LeadersLinked\Command\ProcessQueueEmailCommand::class,
3697
            'process-queue-push' => \LeadersLinked\Command\ProcessQueuePushCommand::class,
1979 efrain 3698
            'process-queue-user-deleted' => \LeadersLinked\Command\ProcessQueueUserDeletedCommand::class,
1 www 3699
            'process-queue-video-convert' => \LeadersLinked\Command\ProcessQueueVideoConvertCommand::class,
3700
            'recalculate-microlearning-progress' => \LeadersLinked\Command\RecalculateMicrolearningProgressCommand::class,
3701
            'check-owner-user-for-company' => \LeadersLinked\Command\CheckOwnerUserForCompanyCommand::class,
242 efrain 3702
            'check-preview-poster-for-feed' => \LeadersLinked\Command\CheckPreviewPosterForFeedCommand::class,
5237 efrain 3703
            'daily-pulse-simulate' => \LeadersLinked\Command\DailyPulseSimulateCommand::class,
5612 anderson 3704
 
1 www 3705
        ]
3706
    ],
3707
    'service_manager' => [
3708
        'abstract_factories' => [
3709
            \Laminas\Db\Adapter\AdapterAbstractServiceFactory::class
3710
        ],
3711
        'factories' => [
3712
            'RenderingStrategy' => function ($container) {
3713
                $translator = $container->get('MvcTranslator');
3714
                return new \LeadersLinked\View\RenderingStrategy($translator);
3715
            },
3716
            'menuNavigation' => \LeadersLinked\Navigation\MenuNavigation::class,
3717
            'footerNavigation' => \LeadersLinked\Navigation\FooterNavigation::class,
5612 anderson 3718
 
1 www 3719
            \LeadersLinked\Command\ProcessQueueEmailCommand::class => \LeadersLinked\Factory\Command\ProcessQueueEmailCommandFactory::class,
3720
            \LeadersLinked\Command\ProcessQueuePushCommand::class => \LeadersLinked\Factory\Command\ProcessQueuePushCommandFactory::class,
1979 efrain 3721
            \LeadersLinked\Command\ProcessQueueUserDeletedCommand::class => \LeadersLinked\Factory\Command\ProcessQueueUserDeletedCommandFactory::class,
5612 anderson 3722
 
1 www 3723
            \LeadersLinked\Command\ProcessQueueVideoConvertCommand::class => \LeadersLinked\Factory\Command\ProcessQueueVideoConvertCommandFactory::class,
3724
            \LeadersLinked\Command\RecalculateMicrolearningProgressCommand::class => \LeadersLinked\Factory\Command\RecalculateMicrolearningProgressCommandFactory::class,
3725
            \LeadersLinked\Command\CheckOwnerUserForCompanyCommand::class => \LeadersLinked\Factory\Command\CheckOwnerUserForCompanyCommandFactory::class,
5612 anderson 3726
 
242 efrain 3727
            \LeadersLinked\Command\CheckPreviewPosterForFeedCommand::class => \LeadersLinked\Factory\Command\CheckPreviewPosterForFeedCommandFactory::class,
5612 anderson 3728
 
3729
 
5237 efrain 3730
            \LeadersLinked\Command\DailyPulseSimulateCommand::class => \LeadersLinked\Factory\Command\DailyPulseSimulateCommandFactory::class,
5612 anderson 3731
 
1 www 3732
        ],
4419 efrain 3733
        'aliases' => [
3734
            // 'leaders-linked-storage' => \LeadersLinked\Service\StorageService::class
1 www 3735
        ]
3736
    ],
3737
    'view_helpers' => [
3738
        'factories' => [
3739
            \LeadersLinked\Helper\ChatHelper::class => \LeadersLinked\Factory\Helper\ChatHelperFactory::class,
5612 anderson 3740
            // \LeadersLinked\Helper\CompanyFollowerHelper::class => \LeadersLinked\Factory\Helper\CompanyFollowerHelperFactory::class,
3741
            // \LeadersLinked\Helper\CompanySuggestionHelper::class => \LeadersLinked\Factory\Helper\CompanySuggestionHelperFactory::class,
1 www 3742
            \LeadersLinked\Helper\CurrentUserHelper::class => \LeadersLinked\Factory\Helper\CurrentUserHelperFactory::class,
3639 efrain 3743
            \LeadersLinked\Helper\CurrentNetworkHelper::class => \LeadersLinked\Factory\Helper\CurrentNetworkHelperFactory::class,
5612 anderson 3744
            // \LeadersLinked\Helper\GroupMembersHelper::class => \LeadersLinked\Factory\Helper\GroupMembersHelperFactory::class,
3745
            // \LeadersLinked\Helper\GroupsSuggestionHelper::class => \LeadersLinked\Factory\Helper\GroupsSuggestionHelperFactory::class,
3746
            \LeadersLinked\Helper\MenuHelper::class => \LeadersLinked\Factory\Helper\MenuHelperFactory::class,
3747
            // \LeadersLinked\Helper\PeopleViewedProfileHelper::class => \LeadersLinked\Factory\Helper\PeopleViewedProfileHelperFactory::class,
3748
            //  \LeadersLinked\Helper\PeopleYouMayKnowHelper::class => \LeadersLinked\Factory\Helper\PeopleYouMayKnowHelperFactory::class,
3749
            //  \LeadersLinked\Helper\SimilarGroupsHelper::class => \LeadersLinked\Factory\Helper\SimilarGroupsHelperFactory::class
3639 efrain 3750
            \LeadersLinked\Helper\NetworkFavicoHelper::class => \LeadersLinked\Factory\Helper\NetworkFavicoHelperFactory::class,
3751
            \LeadersLinked\Helper\NetworkIntroHelper::class => \LeadersLinked\Factory\Helper\NetworkIntroHelperFactory::class,
3752
            \LeadersLinked\Helper\NetworkLogoHelper::class => \LeadersLinked\Factory\Helper\NetworkLogoHelperFactory::class,
3753
            \LeadersLinked\Helper\NetworkNavbarHelper::class => \LeadersLinked\Factory\Helper\NetworkNavbarHelperFactory::class,
3754
            \LeadersLinked\Helper\NetworkStylesAndColorsHelper::class => \LeadersLinked\Factory\Helper\NetworkStylesAndColorsHelperFactory::class,
5612 anderson 3755
 
1 www 3756
        ],
3757
        'invokables' => [
3639 efrain 3758
            //'menuBackendHelper' => \LeadersLinked\Helper\MenuBackendHelper::class,
5612 anderson 3759
            // 'menuMyCompanyHelper' => \LeadersLinked\Helper\MenuMyCompanyHelper::class,
1 www 3760
            'footerHelper' => \LeadersLinked\Helper\FooterHelper::class
3761
        ],
3762
        'aliases' => [
3763
            'chatHelper' => \LeadersLinked\Helper\ChatHelper::class,
3639 efrain 3764
            //'companyFollowerHelper' => \LeadersLinked\Helper\CompanyFollowerHelper::class,
5612 anderson 3765
            // 'companySuggestionHelper' => \LeadersLinked\Helper\CompanySuggestionHelper::class,
1 www 3766
            'currentUserHelper' => \LeadersLinked\Helper\CurrentUserHelper::class,
3639 efrain 3767
            'currentNetworkHelper' => \LeadersLinked\Helper\CurrentNetworkHelper::class,
1 www 3768
            'menuHelper' => \LeadersLinked\Helper\MenuHelper::class,
3639 efrain 3769
            //'peopleViewedProfileHelper' => \LeadersLinked\Helper\PeopleViewedProfileHelper::class,
3770
            //'peopleYouMayKnowHelper' => \LeadersLinked\Helper\PeopleYouMayKnowHelper::class,
3771
            //'groupMembersHelper' => \LeadersLinked\Helper\GroupMembersHelper::class,
3772
            //'similarGroupsHelper' => \LeadersLinked\Helper\SimilarGroupsHelper::class
3773
            'networkFavicoHelper'  => \LeadersLinked\Helper\NetworkFavicoHelper::class,
3774
            'networkIntroHelper' => \LeadersLinked\Helper\NetworkIntroHelper::class,
3775
            'networkLogoHelper'  => \LeadersLinked\Helper\NetworkLogoHelper::class,
3776
            'networkNavbarHelper'  => \LeadersLinked\Helper\NetworkNavbarHelper::class,
3777
            'networkStylesAndColorsHelper'  => \LeadersLinked\Helper\NetworkStylesAndColorsHelper::class,
5612 anderson 3778
 
1 www 3779
        ]
3780
    ],
3781
    'controller_plugins' => [
3782
        'invokables' => [],
3783
        'factories' => [
2920 efrain 3784
            \LeadersLinked\Plugin\CurrentUserPlugin::class => \LeadersLinked\Factory\Plugin\CurrentUserPluginFactory::class,
3785
            \LeadersLinked\Plugin\CurrentNetworkPlugin::class => \LeadersLinked\Factory\Plugin\CurrentNetworkPluginFactory::class,
1 www 3786
        ],
3787
        'aliases' => [
2920 efrain 3788
            'currentUserPlugin' => \LeadersLinked\Plugin\CurrentUserPlugin::class,
3789
            'currentNetworkPlugin' => \LeadersLinked\Plugin\CurrentNetworkPlugin::class,
1 www 3790
        ]
3791
    ],
3792
    'view_manager' => [
3793
        'display_not_found_reason' => true,
3794
        'display_exceptions' => true,
3795
        'doctype' => 'HTML5',
3796
        'not_found_template' => 'error/404',
3797
        'exception_template' => 'error/index',
3798
        'template_map' => [
3799
            'layout/layout' => __DIR__ . '/../view/layout/layout.phtml',
3800
            'error/404' => __DIR__ . '/../view/error/404.phtml',
3801
            'error/index' => __DIR__ . '/../view/error/index.phtml'
3802
        ],
3803
        'template_path_stack' => [
3804
            __DIR__ . '/../view'
3805
        ],
3806
        'strategies' => [
3807
            'ViewJsonStrategy',
3808
            'RenderingStrategy'
3809
        ]
3810
    ]
3811
];