Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 483 | Rev 555 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 483 Rev 553
Línea 1... Línea 1...
1
<?php
1
<?php
-
 
2
 
2
declare(strict_types = 1);
3
declare(strict_types=1);
-
 
4
 
3
namespace LeadersLinked;
5
namespace LeadersLinked;
Línea 4... Línea 6...
4
 
6
 
5
use Laminas\Router\Http\Literal;
7
use Laminas\Router\Http\Literal;
Línea 23... Línea 25...
23
                        'route' => 'profile/my-profiles'
25
                        'route' => 'profile/my-profiles'
24
                    ],
26
                    ],
25
                    [
27
                    [
26
                        'label' => 'LABEL_WHO_HAS_SEEN_MY_PROFILE',
28
                        'label' => 'LABEL_WHO_HAS_SEEN_MY_PROFILE',
27
                        'route' => 'profile/people-viewed-profile'
29
                        'route' => 'profile/people-viewed-profile'
28
                        
-
 
29
                    ],
30
                    ],
30
                    [
31
                    [
31
                        'label' => 'LABEL_SELF_EVALUATION',
32
                        'label' => 'LABEL_SELF_EVALUATION',
32
                        'route' => 'profile/self-evaluation'
33
                        'route' => 'profile/self-evaluation'
33
                        
-
 
34
                    ]
34
                    ]
35
                    
-
 
36
                    
-
 
37
                ]
35
                ]
38
            ],
36
            ],
39
            [
37
            [
40
                'label' => 'LABEL_HOME',
38
                'label' => 'LABEL_HOME',
41
                'route' => 'marketplace',
39
                'route' => 'marketplace',
Línea 64... Línea 62...
64
                    ],
62
                    ],
65
                    [
63
                    [
66
                        'label' => 'LABEL_PEOPLE_BLOCKED',
64
                        'label' => 'LABEL_PEOPLE_BLOCKED',
67
                        'route' => 'connection/people-blocked'
65
                        'route' => 'connection/people-blocked'
68
                    ],
66
                    ],
69
 
-
 
70
                ]
67
                ]
71
            ],
68
            ],
72
            [
69
            [
73
                'label' => 'LABEL_COMPANIES',
70
                'label' => 'LABEL_COMPANIES',
74
                'route' => 'company',
71
                'route' => 'company',
Línea 130... Línea 127...
130
                    ],
127
                    ],
131
                    [
128
                    [
132
                        'label' => 'LABEL_INVITATIONS_RECEIVED',
129
                        'label' => 'LABEL_INVITATIONS_RECEIVED',
133
                        'route' => 'group/invitations-received'
130
                        'route' => 'group/invitations-received'
134
                    ]
131
                    ]
135
 
-
 
136
                ]
132
                ]
137
            ],
133
            ],
138
            /*[
134
        /* [
139
                'label' => 'LABEL_MESSAGES',
135
          'label' => 'LABEL_MESSAGES',
140
                'route' => 'inmail',
136
          'route' => 'inmail',
141
                'class' => 'fa fa-envelope',
137
          'class' => 'fa fa-envelope',
142
            ],
138
          ],
143
            [
139
          [
144
                'label' => 'LABEL_NOTIFICATIONS',
140
          'label' => 'LABEL_NOTIFICATIONS',
145
                'route' => 'dashboard',
141
          'route' => 'dashboard',
146
                'class' => 'fa fa-bolt',
142
          'class' => 'fa fa-bolt',
147
            ],*/
143
          ], */
148
 
-
 
149
        ],
144
        ],
150
        'footer' => [
145
        'footer' => [
151
            [
146
            [
152
                'label' => 'LABEL_PRIVACY_POLICY',
147
                'label' => 'LABEL_PRIVACY_POLICY',
153
                'route' => 'privacy-policy'
148
                'route' => 'privacy-policy'
Línea 166... Línea 161...
166
            ],
161
            ],
167
        ]
162
        ]
168
    ],
163
    ],
169
    'router' => [
164
    'router' => [
170
        'routes' => [
165
        'routes' => [
171
 
-
 
172
            'signin' => [
166
            'signin' => [
173
                'type' => Literal::class,
167
                'type' => Literal::class,
174
                'options' => [
168
                'options' => [
175
                    'route' => '/signin',
169
                    'route' => '/signin',
176
                    'defaults' => [
170
                    'defaults' => [
Línea 178... Línea 172...
178
                        'action' => 'signin'
172
                        'action' => 'signin'
179
                    ]
173
                    ]
180
                ],
174
                ],
181
                'may_terminate' => true,
175
                'may_terminate' => true,
182
                'child_routes' => [
176
                'child_routes' => [
183
                    /*'test' => [
177
                    /* 'test' => [
184
                        'type' => Literal::class,
178
                      'type' => Literal::class,
185
                        'options' => [
179
                      'options' => [
186
                            'route' => '/test',
180
                      'route' => '/test',
187
                            'defaults' => [
181
                      'defaults' => [
188
                                'controller' => '\LeadersLinked\Controller\AuthController',
182
                      'controller' => '\LeadersLinked\Controller\AuthController',
189
                                'action' => 'test',
183
                      'action' => 'test',
190
                            ],
184
                      ],
191
                        ],
185
                      ],
192
                    ],*/
186
                      ], */
193
                    'facebook' => [
187
                    'facebook' => [
194
                        'type' => Literal::class,
188
                        'type' => Literal::class,
195
                        'options' => [
189
                        'options' => [
196
                            'route' => '/facebook',
190
                            'route' => '/facebook',
197
                            'defaults' => [
191
                            'defaults' => [
Línea 296... Línea 290...
296
                        'controller' => '\LeadersLinked\Controller\AuthController',
290
                        'controller' => '\LeadersLinked\Controller\AuthController',
297
                        'action' => 'onroom'
291
                        'action' => 'onroom'
298
                    ]
292
                    ]
299
                ]
293
                ]
300
            ],
294
            ],
301
 
-
 
302
            'home' => [
295
            'home' => [
303
                'type' => Literal::class,
296
                'type' => Literal::class,
304
                'options' => [
297
                'options' => [
305
                    'route' => '/',
298
                    'route' => '/',
306
                    'defaults' => [
299
                    'defaults' => [
Línea 320... Línea 313...
320
                        'controller' => '\LeadersLinked\Controller\HomeController',
313
                        'controller' => '\LeadersLinked\Controller\HomeController',
321
                        'action' => 'post'
314
                        'action' => 'post'
322
                    ]
315
                    ]
323
                ]
316
                ]
324
            ],
317
            ],
325
            
-
 
326
            'privacy-policy' => [
318
            'privacy-policy' => [
327
                'type' => Literal::class,
319
                'type' => Literal::class,
328
                'options' => [
320
                'options' => [
329
                    'route' => '/privacy-policy',
321
                    'route' => '/privacy-policy',
330
                    'defaults' => [
322
                    'defaults' => [
Línea 351... Línea 343...
351
                        'controller' => '\LeadersLinked\Controller\HomeController',
343
                        'controller' => '\LeadersLinked\Controller\HomeController',
352
                        'action' => 'professionalismPolicy'
344
                        'action' => 'professionalismPolicy'
353
                    ]
345
                    ]
354
                ]
346
                ]
355
            ],
347
            ],
356
            
-
 
357
            
-
 
358
            'terms-and-conditions' => [
348
            'terms-and-conditions' => [
359
                'type' => Literal::class,
349
                'type' => Literal::class,
360
                'options' => [
350
                'options' => [
361
                    'route' => '/terms-and-conditions',
351
                    'route' => '/terms-and-conditions',
362
                    'defaults' => [
352
                    'defaults' => [
Línea 373... Línea 363...
373
                        'controller' => '\LeadersLinked\Controller\HomeController',
363
                        'controller' => '\LeadersLinked\Controller\HomeController',
374
                        'action' => 'checkSession'
364
                        'action' => 'checkSession'
375
                    ]
365
                    ]
376
                ]
366
                ]
377
            ],
367
            ],
378
            
-
 
379
            'notifications' => [
368
            'notifications' => [
380
                'type' => Literal::class,
369
                'type' => Literal::class,
381
                'options' => [
370
                'options' => [
382
                    'route' => '/notifications',
371
                    'route' => '/notifications',
383
                    'defaults' => [
372
                    'defaults' => [
384
                        'controller' => '\LeadersLinked\Controller\HomeController',
373
                        'controller' => '\LeadersLinked\Controller\HomeController',
385
                        'action' => 'notifications'
374
                        'action' => 'notifications'
386
                    ]
375
                    ]
387
                ]
376
                ]
388
            ],
377
            ],
389
            
-
 
390
            'backend' => [
378
            'backend' => [
391
                'type' => Literal::class,
379
                'type' => Literal::class,
392
                'options' => [
380
                'options' => [
393
                    'route' => '/backend',
381
                    'route' => '/backend',
394
                    'defaults' => [
382
                    'defaults' => [
Línea 419... Línea 407...
419
                                'controller' => '\LeadersLinked\Controller\BackendController',
407
                                'controller' => '\LeadersLinked\Controller\BackendController',
420
                                'action' => 'signinCompany'
408
                                'action' => 'signinCompany'
421
                            ],
409
                            ],
422
                        ],
410
                        ],
423
                    ],
411
                    ],
424
                    
-
 
425
                   
-
 
426
                ]    
412
                ]
427
            ],
413
            ],
428
            
-
 
429
 
-
 
430
 
-
 
431
            'dashboard' => [
414
            'dashboard' => [
432
                'type' => Segment::class,
415
                'type' => Segment::class,
433
                'options' => [
416
                'options' => [
434
                    'route' => '/dashboard[/feed/:feed]',
417
                    'route' => '/dashboard[/feed/:feed]',
435
                    'constraints' => [
418
                    'constraints' => [
Línea 439... Línea 422...
439
                        'controller' => '\LeadersLinked\Controller\DashboardController',
422
                        'controller' => '\LeadersLinked\Controller\DashboardController',
440
                        'action' => 'index'
423
                        'action' => 'index'
441
                    ]
424
                    ]
442
                ]
425
                ]
443
            ],
426
            ],
444
            
-
 
445
            
-
 
446
            'dashboard2' => [
427
            'dashboard2' => [
447
                'type' => Segment::class,
428
                'type' => Segment::class,
448
                'options' => [
429
                'options' => [
449
                    'route' => '/dashboard2',
430
                    'route' => '/dashboard2',
450
                    'defaults' => [
431
                    'defaults' => [
451
                        'controller' => '\LeadersLinked\Controller\DashboardController',
432
                        'controller' => '\LeadersLinked\Controller\DashboardController',
452
                        'action' => 'dashboard2'
433
                        'action' => 'dashboard2'
453
                    ]
434
                    ]
454
                ]
435
                ]
455
            ],
436
            ],
456
            
-
 
457
            
-
 
458
 
-
 
459
            'storage' => [
437
            'storage' => [
460
                'type' => Segment::class,
438
                'type' => Segment::class,
461
                'options' => [
439
                'options' => [
462
                    'route' => '/storage/type/:type[/code/:code][/filename/:filename][/]',
440
                    'route' => '/storage/type/:type[/code/:code][/filename/:filename][/]',
463
                    'constraints' => [
441
                    'constraints' => [
Línea 470... Línea 448...
470
                        'controller' => '\LeadersLinked\Controller\StorageController',
448
                        'controller' => '\LeadersLinked\Controller\StorageController',
471
                        'action' => 'download'
449
                        'action' => 'download'
472
                    ]
450
                    ]
473
                ]
451
                ]
474
            ],
452
            ],
475
            
-
 
476
            
-
 
477
            'paypal' => [
453
            'paypal' => [
478
                'type' => Literal::class,
454
                'type' => Literal::class,
479
                'options' => [
455
                'options' => [
480
                    'route' => '/paypal',
456
                    'route' => '/paypal',
481
                    'defaults' => [
457
                    'defaults' => [
Línea 504... Línea 480...
504
                                'action' => 'cancel',
480
                                'action' => 'cancel',
505
                            ],
481
                            ],
506
                        ],
482
                        ],
507
                    ],
483
                    ],
508
                ]
484
                ]
509
            ],    
485
            ],
510
            
-
 
511
            
-
 
512
            'chat' => [
486
            'chat' => [
513
                'type' => Literal::class,
487
                'type' => Literal::class,
514
                'options' => [
488
                'options' => [
515
                    'route' => '/chat',
489
                    'route' => '/chat',
516
                    'defaults' => [
490
                    'defaults' => [
Línea 518... Línea 492...
518
                        'action' => 'index'
492
                        'action' => 'index'
519
                    ]
493
                    ]
520
                ],
494
                ],
521
                'may_terminate' => true,
495
                'may_terminate' => true,
522
                'child_routes' => [
496
                'child_routes' => [
523
                    
-
 
524
                    // Inicio de los Routes del Chat //
497
                    // Inicio de los Routes del Chat //
525
                    
498
 
526
                    'heart-beat' => [
499
                    'heart-beat' => [
527
                        'type' => Literal::class,
500
                        'type' => Literal::class,
528
                        'options' => [
501
                        'options' => [
529
                            'route' => '/heart-beat',
502
                            'route' => '/heart-beat',
530
                            'defaults' => [
503
                            'defaults' => [
Línea 554... Línea 527...
554
                                'controller' => '\LeadersLinked\Controller\ChatController',
527
                                'controller' => '\LeadersLinked\Controller\ChatController',
555
                                'action' => 'addUserToGroup',
528
                                'action' => 'addUserToGroup',
556
                            ],
529
                            ],
557
                        ],
530
                        ],
558
                    ],
531
                    ],
559
                    
-
 
560
                    'mark-seen' => [
532
                    'mark-seen' => [
561
                        'type' => Segment::class,
533
                        'type' => Segment::class,
562
                        'options' => [
534
                        'options' => [
563
                            'route' => '/mark-seen/:id',
535
                            'route' => '/mark-seen/:id',
564
                            'constraints' => [
536
                            'constraints' => [
Línea 568... Línea 540...
568
                                'controller' => '\LeadersLinked\Controller\ChatController',
540
                                'controller' => '\LeadersLinked\Controller\ChatController',
569
                                'action' => 'markSeen',
541
                                'action' => 'markSeen',
570
                            ],
542
                            ],
571
                        ],
543
                        ],
572
                    ],
544
                    ],
573
                    
-
 
574
                    'mark-received' => [
545
                    'mark-received' => [
575
                        'type' => Segment::class,
546
                        'type' => Segment::class,
576
                        'options' => [
547
                        'options' => [
577
                            'route' => '/mark-received/:id',
548
                            'route' => '/mark-received/:id',
578
                            'constraints' => [
549
                            'constraints' => [
Línea 582... Línea 553...
582
                                'controller' => '\LeadersLinked\Controller\ChatController',
553
                                'controller' => '\LeadersLinked\Controller\ChatController',
583
                                'action' => 'markReceived',
554
                                'action' => 'markReceived',
584
                            ],
555
                            ],
585
                        ],
556
                        ],
586
                    ],
557
                    ],
587
                    
-
 
588
                    'remove-user-from-group' => [
558
                    'remove-user-from-group' => [
589
                        'type' => Segment::class,
559
                        'type' => Segment::class,
590
                        'options' => [
560
                        'options' => [
591
                            'route' => '/remove-user-from-group/:group_id/:user_id',
561
                            'route' => '/remove-user-from-group/:group_id/:user_id',
592
                            'constraints' => [
562
                            'constraints' => [
Línea 598... Línea 568...
598
                                'action' => 'removeUserFromGroup',
568
                                'action' => 'removeUserFromGroup',
599
                            ],
569
                            ],
600
                        ],
570
                        ],
601
                    ],
571
                    ],
602
                    'get-all-messages' => [
572
                    'get-all-messages' => [
603
                        'type' =>  Segment::class,
573
                        'type' => Segment::class,
604
                        'options' => [
574
                        'options' => [
605
                            'route' => '/get-all-messages/:id',
575
                            'route' => '/get-all-messages/:id',
606
                            'constraints' => [
576
                            'constraints' => [
607
                                'id' => '[A-Za-z0-9\-]+\=*',
577
                                'id' => '[A-Za-z0-9\-]+\=*',
608
                            ],
578
                            ],
Línea 611... Línea 581...
611
                                'action' => 'getAllMessages',
581
                                'action' => 'getAllMessages',
612
                            ],
582
                            ],
613
                        ],
583
                        ],
614
                    ],
584
                    ],
615
                    'send' => [
585
                    'send' => [
616
                        'type' =>  Segment::class,
586
                        'type' => Segment::class,
617
                        'options' => [
587
                        'options' => [
618
                            'route' => '/send/:id',
588
                            'route' => '/send/:id',
619
                            'constraints' => [
589
                            'constraints' => [
620
                                'id' => '[A-Za-z0-9\-]+\=*',
590
                                'id' => '[A-Za-z0-9\-]+\=*',
621
                            ],
591
                            ],
Línea 688... Línea 658...
688
                                'controller' => '\LeadersLinked\Controller\ChatController',
658
                                'controller' => '\LeadersLinked\Controller\ChatController',
689
                                'action' => 'close',
659
                                'action' => 'close',
690
                            ],
660
                            ],
691
                        ],
661
                        ],
692
                    ],
662
                    ],
693
                    
-
 
694
                    'clear' => [
663
                    'clear' => [
695
                        'type' => Segment::class,
664
                        'type' => Segment::class,
696
                        'options' => [
665
                        'options' => [
697
                            'route' => '/clear/:id',
666
                            'route' => '/clear/:id',
698
                            'constraints' => [
667
                            'constraints' => [
Línea 702... Línea 671...
702
                                'controller' => '\LeadersLinked\Controller\ChatController',
671
                                'controller' => '\LeadersLinked\Controller\ChatController',
703
                                'action' => 'clear',
672
                                'action' => 'clear',
704
                            ],
673
                            ],
705
                        ],
674
                        ],
706
                    ],
675
                    ],
707
                    
-
 
708
                    
-
 
709
                    
-
 
710
                    'upload' => [
676
                    'upload' => [
711
                        'type' => Segment::class,
677
                        'type' => Segment::class,
712
                        'options' => [
678
                        'options' => [
713
                            'route' => '/upload/:id',
679
                            'route' => '/upload/:id',
714
                            'constraints' => [
680
                            'constraints' => [
Línea 719... Línea 685...
719
                                'action' => 'upload',
685
                                'action' => 'upload',
720
                            ],
686
                            ],
721
                        ],
687
                        ],
722
                    ],
688
                    ],
723
                ],
689
                ],
724
            ],  
690
            ],
725
            
-
 
726
            'inmail' => [
691
            'inmail' => [
727
                'type' => Segment::class,
692
                'type' => Segment::class,
728
                'options' => [
693
                'options' => [
729
                    'route' => '/inmail[/:id]',
694
                    'route' => '/inmail[/:id]',
730
                    'constraints' => [
695
                    'constraints' => [
Línea 735... Línea 700...
735
                        'action' => 'index'
700
                        'action' => 'index'
736
                    ]
701
                    ]
737
                ],
702
                ],
738
                'may_terminate' => true,
703
                'may_terminate' => true,
739
                'child_routes' => [
704
                'child_routes' => [
740
 
-
 
741
                    'block' => [
705
                    'block' => [
742
                        'type' => Literal::class,
706
                        'type' => Literal::class,
743
                            'options' => [
707
                        'options' => [
744
                            'route' => '/block',
708
                            'route' => '/block',
745
                            'defaults' => [
709
                            'defaults' => [
746
                                'controller' => '\LeadersLinked\Controller\InMailController',
710
                                'controller' => '\LeadersLinked\Controller\InMailController',
747
                                'action' => 'blockConversation'
711
                                'action' => 'blockConversation'
748
                            ]
712
                            ]
749
                          ]
713
                        ]
750
                        ],
714
                    ],
751
                        'delete' => [
715
                    'delete' => [
752
                            'type' => Literal::class,
716
                        'type' => Literal::class,
753
                            'options' => [
717
                        'options' => [
754
                                'route' => '/delete',
718
                            'route' => '/delete',
755
                                'defaults' => [
719
                            'defaults' => [
756
                                    'controller' => '\LeadersLinked\Controller\InMailController',
720
                                'controller' => '\LeadersLinked\Controller\InMailController',
757
                                    'action' => 'deleteConversation'
721
                                'action' => 'deleteConversation'
758
                                ]
722
                            ]
-
 
723
                        ]
-
 
724
                    ],
-
 
725
                    'message' => [
-
 
726
                        'type' => Literal::class,
-
 
727
                        'options' => [
-
 
728
                            'route' => '/message',
-
 
729
                            'defaults' => [
-
 
730
                                'controller' => '\LeadersLinked\Controller\InMailController',
-
 
731
                                'action' => 'message'
759
                            ]
732
                            ]
760
                        ],
733
                        ],
761
                        'message' => [
-
 
762
                            'type' => Literal::class,
-
 
763
                            'options' => [
-
 
764
                                'route' => '/message',
-
 
765
                                'defaults' => [
-
 
766
                                    'controller' => '\LeadersLinked\Controller\InMailController',
-
 
767
                                    'action' => 'message'
-
 
768
                                ]
-
 
769
                            ],
-
 
770
                            'may_terminate' => true,
734
                        'may_terminate' => true,
771
                            'child_routes' => [
735
                        'child_routes' => [
772
                                'send' => [
736
                            'send' => [
773
                                    'type' => Segment::class,
737
                                'type' => Segment::class,
774
                                    'options' => [
738
                                'options' => [
775
                                        'route' => '/send[/encoding/:encoding]',
739
                                    'route' => '/send[/encoding/:encoding]',
776
                                        'constraints' => [
740
                                    'constraints' => [
777
                                            'encoding' => 'base64'
741
                                        'encoding' => 'base64'
778
                                        ],
742
                                    ],
779
                                        'defaults' => [
743
                                    'defaults' => [
780
                                            'controller' => '\LeadersLinked\Controller\InMailController',
744
                                        'controller' => '\LeadersLinked\Controller\InMailController',
781
                                            'action' => 'sendMessage'
745
                                        'action' => 'sendMessage'
782
                                        ]
-
 
783
                                    
-
 
784
                                    ]
746
                                    ]
785
                                ],
747
                                ]
-
 
748
                            ],
786
                                'delete' => [
749
                            'delete' => [
787
                                    'type' => Segment::class,
750
                                'type' => Segment::class,
788
                                    'options' => [
751
                                'options' => [
789
                                        'route' => '/delete/:message',
752
                                    'route' => '/delete/:message',
790
                                        'constraints' => [
753
                                    'constraints' => [
791
                                            'message' => '[A-Za-z0-9\-]+\=*',
754
                                        'message' => '[A-Za-z0-9\-]+\=*',
792
                                        ],
755
                                    ],
793
                                        'defaults' => [
756
                                    'defaults' => [
794
                                            'controller' => '\LeadersLinked\Controller\InMailController',
757
                                        'controller' => '\LeadersLinked\Controller\InMailController',
795
                                            'action' => 'delete'
758
                                        'action' => 'delete'
796
                                        ]
-
 
797
                                    ]
759
                                    ]
798
                                ],
760
                                ]
799
                                
-
 
800
                            ],    
761
                            ],
801
                         ],   
762
                        ],
802
                        
-
 
803
                    ],
763
                    ],
804
  
-
 
-
 
764
                ],
805
            ],               
765
            ],
806
 
-
 
807
            
-
 
808
            'connection' => [
766
            'connection' => [
809
                'type' => Literal::class,
767
                'type' => Literal::class,
810
                'options' => [
768
                'options' => [
811
                    'route' => '/connection',
769
                    'route' => '/connection',
812
                    'defaults' => [
770
                    'defaults' => [
Línea 956... Línea 914...
956
                                'action' => 'delete'
914
                                'action' => 'delete'
957
                            ]
915
                            ]
958
                        ]
916
                        ]
959
                    ],
917
                    ],
960
                ]
918
                ]
961
            ],    
919
            ],
962
            
-
 
963
 
-
 
964
            
-
 
965
            'feed' => [
920
            'feed' => [
966
                'type' => Literal::class,
921
                'type' => Literal::class,
967
                'options' => [
922
                'options' => [
968
                    'route' => '/feed',
923
                    'route' => '/feed',
969
                    'defaults' => [
924
                    'defaults' => [
Línea 1010... Línea 965...
1010
                            ],
965
                            ],
1011
                            'defaults' => [
966
                            'defaults' => [
1012
                                'controller' => '\LeadersLinked\Controller\FeedController',
967
                                'controller' => '\LeadersLinked\Controller\FeedController',
1013
                                'action' => 'comment'
968
                                'action' => 'comment'
1014
                            ],
969
                            ],
1015
                            
-
 
1016
                        ],
970
                        ],
1017
                        'may_terminate' => true,
971
                        'may_terminate' => true,
1018
                        'child_routes' => [
972
                        'child_routes' => [
1019
                            'delete' => [
973
                            'delete' => [
1020
                                'type' => Segment::class,
974
                                'type' => Segment::class,
Línea 1027... Línea 981...
1027
                                        'controller' => '\LeadersLinked\Controller\FeedController',
981
                                        'controller' => '\LeadersLinked\Controller\FeedController',
1028
                                        'action' => 'commentDelete'
982
                                        'action' => 'commentDelete'
1029
                                    ]
983
                                    ]
1030
                                ]
984
                                ]
1031
                            ],
985
                            ],
1032
                            
-
 
1033
                        ]
986
                        ]
1034
                    ],
987
                    ],
1035
                    'share' => [
988
                    'share' => [
1036
                        'type' => Segment::class,
989
                        'type' => Segment::class,
1037
                        'options' => [
990
                        'options' => [
Línea 1088... Línea 1041...
1088
                                'action' => 'add'
1041
                                'action' => 'add'
1089
                            ]
1042
                            ]
1090
                        ]
1043
                        ]
1091
                    ],
1044
                    ],
1092
                ],
1045
                ],
1093
             ],   
1046
            ],
1094
            'job' => [
1047
            'job' => [
1095
                'type' => Literal::class,
1048
                'type' => Literal::class,
1096
                'options' => [
1049
                'options' => [
1097
                    'route' => '/job',
1050
                    'route' => '/job',
1098
                    'defaults' => [
1051
                    'defaults' => [
Línea 1185... Línea 1138...
1185
                                'controller' => '\LeadersLinked\Controller\JobController',
1138
                                'controller' => '\LeadersLinked\Controller\JobController',
1186
                                'action' => 'savedJobs'
1139
                                'action' => 'savedJobs'
1187
                            ]
1140
                            ]
1188
                        ]
1141
                        ]
1189
                    ],
1142
                    ],
1190
                    
-
 
1191
                ]    
1143
                ]
1192
            ],
1144
            ],
1193
            
-
 
1194
            /*
1145
            /*
1195
                         'job' => [
1146
              'job' => [
1196
                'type' => Literal::class,
1147
              'type' => Literal::class,
1197
                'options' => [
1148
              'options' => [
1198
                    'route' => '/job',
1149
              'route' => '/job',
1199
                    'defaults' => [
1150
              'defaults' => [
1200
                        'controller' => '\LeadersLinked\Controller\JobController',
1151
              'controller' => '\LeadersLinked\Controller\JobController',
1201
                        'action' => 'index'
1152
              'action' => 'index'
1202
                    ]
1153
              ]
1203
                ],
1154
              ],
1204
                'may_terminate' => true,
1155
              'may_terminate' => true,
1205
                'child_routes' => [
1156
              'child_routes' => [
1206
                    'view' => [
1157
              'view' => [
1207
                        'type' => Segment::class,
1158
              'type' => Segment::class,
1208
                        'options' => [
1159
              'options' => [
1209
                            'route' => '/view/:id',
1160
              'route' => '/view/:id',
1210
                            'constraints' => [
1161
              'constraints' => [
1211
                                'id' => '[A-Za-z0-9\-]+\=*'
1162
              'id' => '[A-Za-z0-9\-]+\=*'
1212
                            ],
1163
              ],
1213
                            'defaults' => [
1164
              'defaults' => [
1214
                                'controller' => '\LeadersLinked\Controller\CompanyController',
1165
              'controller' => '\LeadersLinked\Controller\CompanyController',
1215
                                'action' => 'job'
1166
              'action' => 'job'
1216
                            ]
1167
              ]
1217
                        ]
1168
              ]
1218
                    ],
1169
              ],
1219
                ]
1170
              ]
1220
            ],   
1171
              ],
1221
             */
1172
             */
1222
            
-
 
1223
            
-
 
1224
            'search' => [
1173
            'search' => [
1225
                'type' => Segment::class,
1174
                'type' => Segment::class,
1226
                'options' => [
1175
                'options' => [
1227
                    'route' => '/search[/entity/:entity]',
1176
                    'route' => '/search[/entity/:entity]',
1228
                    'constraints' => [
1177
                    'constraints' => [
Línea 1232... Línea 1181...
1232
                        'controller' => '\LeadersLinked\Controller\SearchController',
1181
                        'controller' => '\LeadersLinked\Controller\SearchController',
1233
                        'action' => 'index'
1182
                        'action' => 'index'
1234
                    ]
1183
                    ]
1235
                ],
1184
                ],
1236
            ],
1185
            ],
1237
 
-
 
1238
            
-
 
1239
            'group' => [
1186
            'group' => [
1240
                'type' => Literal::class,
1187
                'type' => Literal::class,
1241
                'options' => [
1188
                'options' => [
1242
                    'route' => '/group',
1189
                    'route' => '/group',
1243
                    'defaults' => [
1190
                    'defaults' => [
Línea 1323... Línea 1270...
1323
                                'controller' => '\LeadersLinked\Controller\GroupController',
1270
                                'controller' => '\LeadersLinked\Controller\GroupController',
1324
                                'action' => 'reject'
1271
                                'action' => 'reject'
1325
                            ]
1272
                            ]
1326
                        ]
1273
                        ]
1327
                    ],
1274
                    ],
1328
                    
-
 
1329
                    
-
 
1330
                    'joined-groups' => [
1275
                    'joined-groups' => [
1331
                        'type' => Literal::class,
1276
                        'type' => Literal::class,
1332
                        'options' => [
1277
                        'options' => [
1333
                            'route' => '/joined-groups',
1278
                            'route' => '/joined-groups',
1334
                            'defaults' => [
1279
                            'defaults' => [
1335
                                'controller' => '\LeadersLinked\Controller\GroupController',
1280
                                'controller' => '\LeadersLinked\Controller\GroupController',
1336
                                'action' => 'joinedGroups'
1281
                                'action' => 'joinedGroups'
1337
                            ]
1282
                            ]
1338
                        ],
1283
                        ],
1339
                        
-
 
1340
                    ],
1284
                    ],
1341
                    'requests-sent' => [
1285
                    'requests-sent' => [
1342
                        'type' => Literal::class,
1286
                        'type' => Literal::class,
1343
                        'options' => [
1287
                        'options' => [
1344
                            'route' => '/requests-sent',
1288
                            'route' => '/requests-sent',
1345
                            'defaults' => [
1289
                            'defaults' => [
1346
                                'controller' => '\LeadersLinked\Controller\GroupController',
1290
                                'controller' => '\LeadersLinked\Controller\GroupController',
1347
                                'action' => 'requestsSent'
1291
                                'action' => 'requestsSent'
1348
                            ]
1292
                            ]
1349
                        ],
1293
                        ],
1350
 
-
 
1351
                    ],
1294
                    ],
1352
                    'invitations-received' => [
1295
                    'invitations-received' => [
1353
                        'type' => Literal::class,
1296
                        'type' => Literal::class,
1354
                        'options' => [
1297
                        'options' => [
1355
                            'route' => '/invitations-received',
1298
                            'route' => '/invitations-received',
1356
                            'defaults' => [
1299
                            'defaults' => [
1357
                                'controller' => '\LeadersLinked\Controller\GroupController',
1300
                                'controller' => '\LeadersLinked\Controller\GroupController',
1358
                                'action' => 'invitationsReceived'
1301
                                'action' => 'invitationsReceived'
1359
                            ]
1302
                            ]
1360
                        ],
1303
                        ],
1361
 
-
 
1362
                    ],
1304
                    ],
1363
                    'my-groups' => [
1305
                    'my-groups' => [
1364
                        'type' => Literal::class,
1306
                        'type' => Literal::class,
1365
                        'options' => [
1307
                        'options' => [
1366
                            'route' => '/my-groups',
1308
                            'route' => '/my-groups',
Línea 1590... Línea 1532...
1590
                                                'controller' => '\LeadersLinked\Controller\MyGroupsController',
1532
                                                'controller' => '\LeadersLinked\Controller\MyGroupsController',
1591
                                                'action' => 'cancel'
1533
                                                'action' => 'cancel'
1592
                                            ]
1534
                                            ]
1593
                                        ]
1535
                                        ]
1594
                                    ],
1536
                                    ],
1595
                                ]    
1537
                                ]
1596
                            ],
1538
                            ],
1597
                        ]
1539
                        ]
1598
                    ]
1540
                    ]
1599
                ]
1541
                ]
1600
            ],
1542
            ],
1601
            
-
 
1602
 
-
 
1603
            
-
 
1604
            'profile' => [
1543
            'profile' => [
1605
                'type' => Literal::class,
1544
                'type' => Literal::class,
1606
                'options' => [
1545
                'options' => [
1607
                    'route' => '/profile',
1546
                    'route' => '/profile',
1608
                    'defaults' => [
1547
                    'defaults' => [
Línea 1610... Línea 1549...
1610
                        'action' => 'index'
1549
                        'action' => 'index'
1611
                    ]
1550
                    ]
1612
                ],
1551
                ],
1613
                'may_terminate' => true,
1552
                'may_terminate' => true,
1614
                'child_routes' => [
1553
                'child_routes' => [
1615
                    
-
 
1616
                    'microlearning' => [
1554
                    'microlearning' => [
1617
                        'type' => Literal::class,
1555
                        'type' => Literal::class,
1618
                        'options' => [
1556
                        'options' => [
1619
                            'route' => '/microlearning',
1557
                            'route' => '/microlearning',
1620
                            'defaults' => [
1558
                            'defaults' => [
Línea 1642... Línea 1580...
1642
                                        'controller' => '\LeadersLinked\Controller\ProfileMicrolearningController',
1580
                                        'controller' => '\LeadersLinked\Controller\ProfileMicrolearningController',
1643
                                        'action' => 'progress'
1581
                                        'action' => 'progress'
1644
                                    ]
1582
                                    ]
1645
                                ]
1583
                                ]
1646
                            ],
1584
                            ],
1647
                            
-
 
1648
                        ]
1585
                        ]
1649
                    ],
1586
                    ],
1650
                     
-
 
1651
                    'people-viewed-profile' => [
1587
                    'people-viewed-profile' => [
1652
                        'type' => Literal::class,
1588
                        'type' => Literal::class,
1653
                        'options' => [
1589
                        'options' => [
1654
                            'route' => '/people-viewed-profile',
1590
                            'route' => '/people-viewed-profile',
1655
                            'defaults' => [
1591
                            'defaults' => [
1656
                                'controller' => '\LeadersLinked\Controller\ProfileController',
1592
                                'controller' => '\LeadersLinked\Controller\ProfileController',
1657
                                'action' => 'peopleViewedProfile'
1593
                                'action' => 'peopleViewedProfile'
1658
                            ]
1594
                            ]
1659
                        ]
1595
                        ]
1660
                    ],
1596
                    ],
1661
 
-
 
1662
 
-
 
1663
                    'self-evaluation' => [
1597
                    'self-evaluation' => [
1664
                        'type' => Literal::class,
1598
                        'type' => Literal::class,
1665
                        'options' => [
1599
                        'options' => [
1666
                            'route' => '/self-evaluation',
1600
                            'route' => '/self-evaluation',
1667
                            'defaults' => [
1601
                            'defaults' => [
Línea 1695... Línea 1629...
1695
                                        'controller' => '\LeadersLinked\Controller\SelfEvaluationController',
1629
                                        'controller' => '\LeadersLinked\Controller\SelfEvaluationController',
1696
                                        'action' => 'report'
1630
                                        'action' => 'report'
1697
                                    ]
1631
                                    ]
1698
                                ]
1632
                                ]
1699
                            ],
1633
                            ],
1700
                            
-
 
1701
                        ]
1634
                        ]
1702
                    ],
1635
                    ],
-
 
1636
                    'performance-evaluation' => [
-
 
1637
                        'type' => Literal::class,
-
 
1638
                        'options' => [
-
 
1639
                            'route' => '/performance-evaluation',
-
 
1640
                            'defaults' => [
-
 
1641
                                'controller' => '\LeadersLinked\Controller\PerformanceEvaluationController',
1703
                     
-
 
1704
 
-
 
-
 
1642
                                'action' => 'index'
-
 
1643
                            ]
-
 
1644
                        ],
-
 
1645
                        'may_terminate' => true,
-
 
1646
                        'child_routes' => [
-
 
1647
                            'take-a-test' => [
-
 
1648
                                'type' => Literal::class,
-
 
1649
                                'options' => [
-
 
1650
                                    'route' => '/take-a-test/:id',
-
 
1651
                                    'constraints' => [
-
 
1652
                                        'id' => '[A-Za-z0-9\-]+\=*'
-
 
1653
                                    ],
-
 
1654
                                    'defaults' => [
-
 
1655
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationController',
-
 
1656
                                        'action' => 'takeaTest'
-
 
1657
                                    ]
-
 
1658
                                ]
-
 
1659
                            ],
-
 
1660
                            'report' => [
-
 
1661
                                'type' => Literal::class,
-
 
1662
                                'options' => [
-
 
1663
                                    'route' => '/report/:id',
-
 
1664
                                    'constraints' => [
-
 
1665
                                        'id' => '[A-Za-z0-9\-]+\=*'
-
 
1666
                                    ],
-
 
1667
                                    'defaults' => [
-
 
1668
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationController',
-
 
1669
                                        'action' => 'report'
-
 
1670
                                    ]
-
 
1671
                                ]
-
 
1672
                            ],
-
 
1673
                        ]
-
 
1674
                    ],
1705
                    'view' => [
1675
                    'view' => [
1706
                        'type' => Segment::class,
1676
                        'type' => Segment::class,
1707
                        'options' => [
1677
                        'options' => [
1708
                            'route' => '/view/:id',
1678
                            'route' => '/view/:id',
1709
                            'constraints' => [
1679
                            'constraints' => [
Línea 1751... Línea 1721...
1751
                                        'action' => 'report'
1721
                                        'action' => 'report'
1752
                                    ]
1722
                                    ]
1753
                                ]
1723
                                ]
1754
                            ],
1724
                            ],
1755
                        ]
1725
                        ]
1756
                    ],    
1726
                    ],
1757
                    'my-profiles' => [
1727
                    'my-profiles' => [
1758
                        'type' => Literal::class,
1728
                        'type' => Literal::class,
1759
                        'options' => [
1729
                        'options' => [
1760
                            'route' => '/my-profiles',
1730
                            'route' => '/my-profiles',
1761
                            'defaults' => [
1731
                            'defaults' => [
Línea 1926... Línea 1896...
1926
                            ]
1896
                            ]
1927
                        ]
1897
                        ]
1928
                    ]
1898
                    ]
1929
                ]
1899
                ]
1930
            ],
1900
            ],
1931
            
-
 
1932
          
-
 
1933
 
-
 
1934
            'company' => [
1901
            'company' => [
1935
                'type' => Literal::class,
1902
                'type' => Literal::class,
1936
                'options' => [
1903
                'options' => [
1937
                    'route' => '/company',
1904
                    'route' => '/company',
1938
                    'defaults' => [
1905
                    'defaults' => [
Línea 1964... Línea 1931...
1964
                            ],
1931
                            ],
1965
                            'defaults' => [
1932
                            'defaults' => [
1966
                                'controller' => '\LeadersLinked\Controller\CompanyController',
1933
                                'controller' => '\LeadersLinked\Controller\CompanyController',
1967
                                'action' => 'follow'
1934
                                'action' => 'follow'
1968
                            ]
1935
                            ]
1969
                            
-
 
1970
                        ]
1936
                        ]
1971
                    ],
1937
                    ],
1972
                    'unfollow' => [
1938
                    'unfollow' => [
1973
                        'type' => Segment::class,
1939
                        'type' => Segment::class,
1974
                        'options' => [
1940
                        'options' => [
Línea 1993... Línea 1959...
1993
                                'controller' => '\LeadersLinked\Controller\CompanyController',
1959
                                'controller' => '\LeadersLinked\Controller\CompanyController',
1994
                                'action' => 'request'
1960
                                'action' => 'request'
1995
                            ]
1961
                            ]
1996
                        ]
1962
                        ]
1997
                    ],
1963
                    ],
1998
                    
-
 
1999
                    
-
 
2000
                    
-
 
2001
                    'accept' => [
1964
                    'accept' => [
2002
                        'type' => Segment::class,
1965
                        'type' => Segment::class,
2003
                        'options' => [
1966
                        'options' => [
2004
                            'route' => '/accept/:id',
1967
                            'route' => '/accept/:id',
2005
                            'constraints' => [
1968
                            'constraints' => [
Línea 2080... Línea 2043...
2080
                                'action' => 'invitationsReceived'
2043
                                'action' => 'invitationsReceived'
2081
                            ]
2044
                            ]
2082
                        ],
2045
                        ],
2083
                        'may_terminate' => true,
2046
                        'may_terminate' => true,
2084
                    ],
2047
                    ],
2085
                    
-
 
2086
                    
-
 
2087
                    
-
 
2088
                    'i-work-with' => [
2048
                    'i-work-with' => [
2089
                        'type' => Literal::class,
2049
                        'type' => Literal::class,
2090
                        'options' => [
2050
                        'options' => [
2091
                            'route' => '/i-work-with',
2051
                            'route' => '/i-work-with',
2092
                            'defaults' => [
2052
                            'defaults' => [
Línea 2094... Línea 2054...
2094
                                'action' => 'iWorkWith'
2054
                                'action' => 'iWorkWith'
2095
                            ]
2055
                            ]
2096
                        ],
2056
                        ],
2097
                        'may_terminate' => true,
2057
                        'may_terminate' => true,
2098
                    ],
2058
                    ],
2099
                    
-
 
2100
 
-
 
2101
                    
-
 
2102
                    'my-companies' => [
2059
                    'my-companies' => [
2103
                        'type' => Literal::class,
2060
                        'type' => Literal::class,
2104
                        'options' => [
2061
                        'options' => [
2105
                            'route' => '/my-companies',
2062
                            'route' => '/my-companies',
2106
                            'defaults' => [
2063
                            'defaults' => [
Línea 2118... Línea 2075...
2118
                                        'controller' => '\LeadersLinked\Controller\MyCompaniesController',
2075
                                        'controller' => '\LeadersLinked\Controller\MyCompaniesController',
2119
                                        'action' => 'add'
2076
                                        'action' => 'add'
2120
                                    ]
2077
                                    ]
2121
                                ]
2078
                                ]
2122
                            ],
2079
                            ],
2123
                            
-
 
2124
                        ]
2080
                        ]
2125
                    ],
2081
                    ],
2126
                    
-
 
2127
                ]
2082
                ]
2128
            ],
2083
            ],
2129
 
-
 
2130
            'account-settings' => [
2084
            'account-settings' => [
2131
                'type' => Literal::class,
2085
                'type' => Literal::class,
2132
                'options' => [
2086
                'options' => [
2133
                    'route' => '/account-settings',
2087
                    'route' => '/account-settings',
2134
                    'defaults' => [
2088
                    'defaults' => [
Línea 2326... Línea 2280...
2326
                        ]
2280
                        ]
2327
                    ]
2281
                    ]
2328
                ],
2282
                ],
2329
                'may_terminate' => true
2283
                'may_terminate' => true
2330
            ],
2284
            ],
2331
 
-
 
2332
            'moodle' => [
2285
            'moodle' => [
2333
                'type' => Literal::class,
2286
                'type' => Literal::class,
2334
                'options' => [
2287
                'options' => [
2335
                    'route' => '/moodle',
2288
                    'route' => '/moodle',
2336
                    'defaults' => [
2289
                    'defaults' => [
Línea 2338... Línea 2291...
2338
                        'action' => 'index'
2291
                        'action' => 'index'
2339
                    ]
2292
                    ]
2340
                ],
2293
                ],
2341
                'may_terminate' => true
2294
                'may_terminate' => true
2342
            ],
2295
            ],
2343
 
-
 
2344
            'oauth' => [
2296
            'oauth' => [
2345
                'type' => Literal::class,
2297
                'type' => Literal::class,
2346
                'options' => [
2298
                'options' => [
2347
                    'route' => '/oauth',
2299
                    'route' => '/oauth',
2348
                    'defaults' => [
2300
                    'defaults' => [
Línea 2383... Línea 2335...
2383
                                        'action' => 'facebookCancel'
2335
                                        'action' => 'facebookCancel'
2384
                                    ]
2336
                                    ]
2385
                                ],
2337
                                ],
2386
                                'may_terminate' => true,
2338
                                'may_terminate' => true,
2387
                            ],
2339
                            ],
2388
                        ],    
2340
                        ],
2389
                    ],
2341
                    ],
2390
                    'twitter' => [
2342
                    'twitter' => [
2391
                        'type' => Literal::class,
2343
                        'type' => Literal::class,
2392
                        'options' => [
2344
                        'options' => [
2393
                            'route' => '/twitter',
2345
                            'route' => '/twitter',
Línea 2407... Línea 2359...
2407
                                'action' => 'google'
2359
                                'action' => 'google'
2408
                            ]
2360
                            ]
2409
                        ],
2361
                        ],
2410
                        'may_terminate' => true,
2362
                        'may_terminate' => true,
2411
                    ],
2363
                    ],
2412
                    /*'facebook' => [
2364
                /* 'facebook' => [
2413
                        'type' => Literal::class,
2365
                  'type' => Literal::class,
2414
                        'options' => [
2366
                  'options' => [
2415
                            'route' => '/facebook',
2367
                  'route' => '/facebook',
2416
                            'defaults' => [
2368
                  'defaults' => [
2417
                                'controller' => '\LeadersLinked\Controller\OauthController',
2369
                  'controller' => '\LeadersLinked\Controller\OauthController',
2418
                                'action' => 'facebook'
2370
                  'action' => 'facebook'
2419
                            ]
2371
                  ]
2420
                        ],
2372
                  ],
2421
                        'may_terminate' => true,
2373
                  'may_terminate' => true,
2422
                        'child_routes' => [
2374
                  'child_routes' => [
2423
                            'cancel' => [
2375
                  'cancel' => [
2424
                                'type' => Literal::class,
2376
                  'type' => Literal::class,
2425
                                'options' => [
2377
                  'options' => [
2426
                                    'route' => '/cancel',
2378
                  'route' => '/cancel',
2427
                                    'defaults' => [
2379
                  'defaults' => [
2428
                                        'controller' => '\LeadersLinked\Controller\OauthController',
2380
                  'controller' => '\LeadersLinked\Controller\OauthController',
2429
                                        'action' => 'facebookCancel'
2381
                  'action' => 'facebookCancel'
2430
                                    ]
2382
                  ]
2431
                                ]
2383
                  ]
2432
                            ],
2384
                  ],
2433
                            'delete' => [
2385
                  'delete' => [
2434
                                'type' => Literal::class,
2386
                  'type' => Literal::class,
2435
                                'options' => [
2387
                  'options' => [
2436
                                    'route' => '/delete',
2388
                  'route' => '/delete',
2437
                                    'defaults' => [
2389
                  'defaults' => [
2438
                                        'controller' => '\LeadersLinked\Controller\OauthController',
2390
                  'controller' => '\LeadersLinked\Controller\OauthController',
2439
                                        'action' => 'facebookDelete'
2391
                  'action' => 'facebookDelete'
2440
                                    ]
2392
                  ]
2441
                                ]
2393
                  ]
2442
                            ]
2394
                  ]
2443
                        ]
2395
                  ]
2444
                    ]*/
2396
                  ] */
2445
                ]
2397
                ]
2446
            ],
2398
            ],
2447
 
-
 
2448
           
-
 
2449
            
-
 
2450
            'helpers' => [
2399
            'helpers' => [
2451
                'type' => Literal::class,
2400
                'type' => Literal::class,
2452
                'options' => [
2401
                'options' => [
2453
                    'route' => '/helpers',
2402
                    'route' => '/helpers',
2454
                    'defaults' => [
2403
                    'defaults' => [
2455
                        'controller' => '\LeadersLinked\Controller\HelperController',
2404
                        'controller' => '\LeadersLinked\Controller\HelperController',
2456
                        'action' => 'index'
2405
                        'action' => 'index'
2457
                    ]
2406
                    ]
2458
                
-
 
2459
                ],
2407
                ],
2460
                'may_terminate' => true,
2408
                'may_terminate' => true,
2461
                'child_routes' => [
2409
                'child_routes' => [
2462
                    'search-people' => [
2410
                    'search-people' => [
2463
                        'type' => Literal::class,
2411
                        'type' => Literal::class,
Línea 2589... Línea 2537...
2589
                                        'controller' => '\LeadersLinked\Controller\HelperController',
2537
                                        'controller' => '\LeadersLinked\Controller\HelperController',
2590
                                        'action' => 'groupMemberApprove'
2538
                                        'action' => 'groupMemberApprove'
2591
                                    ]
2539
                                    ]
2592
                                ]
2540
                                ]
2593
                            ],
2541
                            ],
2594
                        ]    
2542
                        ]
2595
                    ],
2543
                    ],
2596
                    
-
 
2597
                    'groups-suggestion' => [
2544
                    'groups-suggestion' => [
2598
                        'type' => Segment::class,
2545
                        'type' => Segment::class,
2599
                        'options' => [
2546
                        'options' => [
2600
                            'route' => '/groups-suggestion/:group_id',
2547
                            'route' => '/groups-suggestion/:group_id',
2601
                            'constraints' => [
2548
                            'constraints' => [
Línea 2607... Línea 2554...
2607
                            ]
2554
                            ]
2608
                        ]
2555
                        ]
2609
                    ],
2556
                    ],
2610
                ]
2557
                ]
2611
            ],
2558
            ],
2612
            
-
 
2613
            'help' => [
2559
            'help' => [
2614
                'type' => Literal::class,
2560
                'type' => Literal::class,
2615
                'options' => [
2561
                'options' => [
2616
                    'route' => '/help',
2562
                    'route' => '/help',
2617
                    'defaults' => [
2563
                    'defaults' => [
2618
                        'controller' => '\LeadersLinked\Controller\HelpController',
2564
                        'controller' => '\LeadersLinked\Controller\HelpController',
2619
                        'action' => 'send'
2565
                        'action' => 'send'
2620
                    ]
2566
                    ]
2621
                ],
2567
                ],
2622
                'may_terminate' => true,
2568
                'may_terminate' => true,
2623
            ],  
2569
            ],
2624
            
-
 
2625
            
-
 
2626
            'services' => [
2570
            'services' => [
2627
                'type' => Literal::class,
2571
                'type' => Literal::class,
2628
                'options' => [
2572
                'options' => [
2629
                    'route' => '/services',
2573
                    'route' => '/services',
2630
                    'defaults' => [
2574
                    'defaults' => [
Línea 2688... Línea 2632...
2688
                                'controller' => '\LeadersLinked\Controller\ServiceController',
2632
                                'controller' => '\LeadersLinked\Controller\ServiceController',
2689
                                'action' => 'checkSession'
2633
                                'action' => 'checkSession'
2690
                            ]
2634
                            ]
2691
                        ]
2635
                        ]
2692
                    ],
2636
                    ],
2693
    
-
 
2694
                    
-
 
2695
                   
-
 
2696
                    
-
 
2697
                    'signout' => [
2637
                    'signout' => [
2698
                        'type' => Literal::class,
2638
                        'type' => Literal::class,
2699
                        'options' => [
2639
                        'options' => [
2700
                            'route' => '/signout',
2640
                            'route' => '/signout',
2701
                            'defaults' => [
2641
                            'defaults' => [
2702
                                'controller' => '\LeadersLinked\Controller\ServiceController',
2642
                                'controller' => '\LeadersLinked\Controller\ServiceController',
2703
                                'action' => 'signout'
2643
                                'action' => 'signout'
2704
                            ]
2644
                            ]
2705
                        ]
2645
                        ]
2706
                    ],
2646
                    ],
2707
                    /*'signup' => [
2647
                    /* 'signup' => [
2708
                        'type' => Literal::class,
2648
                      'type' => Literal::class,
2709
                        'options' => [
2649
                      'options' => [
2710
                            'route' => '/signup',
2650
                      'route' => '/signup',
2711
                            'defaults' => [
2651
                      'defaults' => [
2712
                                'controller' => '\LeadersLinked\Controller\ServiceController',
2652
                      'controller' => '\LeadersLinked\Controller\ServiceController',
2713
                                'action' => 'signup'
2653
                      'action' => 'signup'
2714
                            ]
2654
                      ]
2715
                        ]
2655
                      ]
2716
                    ],
2656
                      ],
2717
                    'activate-account' => [
2657
                      'activate-account' => [
2718
                        'type' => Literal::class,
2658
                      'type' => Literal::class,
2719
                        'options' => [
2659
                      'options' => [
2720
                            'route' => '/activate-account',
2660
                      'route' => '/activate-account',
2721
                            'defaults' => [
2661
                      'defaults' => [
2722
                                'controller' => '\LeadersLinked\Controller\ServiceController',
2662
                      'controller' => '\LeadersLinked\Controller\ServiceController',
2723
                                'action' => 'activateAccount'
2663
                      'action' => 'activateAccount'
2724
                            ]
2664
                      ]
2725
                        ]
2665
                      ]
2726
                    ],
2666
                      ],
2727
                    'forgot-password' => [
2667
                      'forgot-password' => [
2728
                        'type' => Literal::class,
2668
                      'type' => Literal::class,
2729
                        'options' => [
2669
                      'options' => [
2730
                            'route' => '/forgot-password',
2670
                      'route' => '/forgot-password',
2731
                            'defaults' => [
2671
                      'defaults' => [
2732
                                'controller' => '\LeadersLinked\Controller\ServiceController',
2672
                      'controller' => '\LeadersLinked\Controller\ServiceController',
2733
                                'action' => 'forgotPassword'
2673
                      'action' => 'forgotPassword'
2734
                            ]
2674
                      ]
2735
                        ]
2675
                      ]
2736
                    ],
2676
                      ],
2737
                    'reset-password' => [
2677
                      'reset-password' => [
2738
                        'type' => Literal::class,
2678
                      'type' => Literal::class,
2739
                        'options' => [
2679
                      'options' => [
2740
                            'route' => '/reset-password',
2680
                      'route' => '/reset-password',
2741
                            'defaults' => [
2681
                      'defaults' => [
2742
                                'controller' => '\LeadersLinked\Controller\ServiceController',
2682
                      'controller' => '\LeadersLinked\Controller\ServiceController',
2743
                                'action' => 'resetPassword'
2683
                      'action' => 'resetPassword'
2744
                            ]
2684
                      ]
2745
                        ]
2685
                      ]
2746
                    ],*/
2686
                      ], */
2747
                    'sync' => [
2687
                    'sync' => [
2748
                        'type' => Literal::class,
2688
                        'type' => Literal::class,
2749
                        'options' => [
2689
                        'options' => [
2750
                            'route' => '/sync',
2690
                            'route' => '/sync',
2751
                            'defaults' => [
2691
                            'defaults' => [
2752
                                'controller' => '\LeadersLinked\Controller\ServiceController',
2692
                                'controller' => '\LeadersLinked\Controller\ServiceController',
2753
                                'action' => 'sync'
2693
                                'action' => 'sync'
2754
                            ]
2694
                            ]
2755
                        ]
2695
                        ]
2756
                    ],
2696
                    ],
2757
                    
-
 
2758
                    'sync-batch' => [
2697
                    'sync-batch' => [
2759
                        'type' => Literal::class,
2698
                        'type' => Literal::class,
2760
                        'options' => [
2699
                        'options' => [
2761
                            'route' => '/sync-batch',
2700
                            'route' => '/sync-batch',
2762
                            'defaults' => [
2701
                            'defaults' => [
2763
                                'controller' => '\LeadersLinked\Controller\ServiceController',
2702
                                'controller' => '\LeadersLinked\Controller\ServiceController',
2764
                                'action' => 'syncBatch'
2703
                                'action' => 'syncBatch'
2765
                            ]
2704
                            ]
2766
                        ]
2705
                        ]
2767
                    ],
2706
                    ],
2768
                    
-
 
2769
                    
-
 
2770
                    'microlearning' => [
2707
                    'microlearning' => [
2771
                        'type' => Literal::class,
2708
                        'type' => Literal::class,
2772
                        'options' => [
2709
                        'options' => [
2773
                            'route' => '/microlearning',
2710
                            'route' => '/microlearning',
2774
                            'defaults' => [
2711
                            'defaults' => [
Línea 2786... Línea 2723...
2786
                                        'controller' => '\LeadersLinked\Controller\ServiceController',
2723
                                        'controller' => '\LeadersLinked\Controller\ServiceController',
2787
                                        'action' => 'microlearningRefresh'
2724
                                        'action' => 'microlearningRefresh'
2788
                                    ]
2725
                                    ]
2789
                                ]
2726
                                ]
2790
                            ],
2727
                            ],
2791
                            
-
 
2792
                            'check-changes' => [
2728
                            'check-changes' => [
2793
                                'type' => Literal::class,
2729
                                'type' => Literal::class,
2794
                                'options' => [
2730
                                'options' => [
2795
                                    'route' => '/check-changes',
2731
                                    'route' => '/check-changes',
2796
                                    'defaults' => [
2732
                                    'defaults' => [
2797
                                        'controller' => '\LeadersLinked\Controller\ServiceController',
2733
                                        'controller' => '\LeadersLinked\Controller\ServiceController',
2798
                                        'action' => 'microlearningCheckChanges'
2734
                                        'action' => 'microlearningCheckChanges'
2799
                                    ]
2735
                                    ]
2800
                                ]
2736
                                ]
2801
                            ],
2737
                            ],
2802
                            
-
 
2803
                            'capsules' => [
2738
                            'capsules' => [
2804
                                'type' => Literal::class,
2739
                                'type' => Literal::class,
2805
                                'options' => [
2740
                                'options' => [
2806
                                    'route' => '/capsules',
2741
                                    'route' => '/capsules',
2807
                                    'defaults' => [
2742
                                    'defaults' => [
Línea 2810... Línea 2745...
2810
                                    ]
2745
                                    ]
2811
                                ],
2746
                                ],
2812
                                'may_terminate' => true,
2747
                                'may_terminate' => true,
2813
                                'child_routes' => [
2748
                                'child_routes' => [
2814
                                    'comments' => [
2749
                                    'comments' => [
2815
                                        'type' =>  Segment::class,
2750
                                        'type' => Segment::class,
2816
                                        'options' => [
2751
                                        'options' => [
2817
                                            'route' => '/comments/:capsule_id',
2752
                                            'route' => '/comments/:capsule_id',
2818
                                            'constraints' => [
2753
                                            'constraints' => [
2819
                                                'capsule_id' => '[A-Za-z0-9\-]+\=*'
2754
                                                'capsule_id' => '[A-Za-z0-9\-]+\=*'
2820
                                            ],
2755
                                            ],
Línea 2861... Línea 2796...
2861
                                                    ]
2796
                                                    ]
2862
                                                ]
2797
                                                ]
2863
                                            ],
2798
                                            ],
2864
                                        ]
2799
                                        ]
2865
                                    ],
2800
                                    ],
2866
                                ]   
2801
                                ]
2867
                            ],
2802
                            ],
2868
                            
-
 
2869
                            
-
 
2870
                            'services/microlearning/capsules',
2803
                            'services/microlearning/capsules',
2871
                            'services/microlearning/capsules/comments',
2804
                            'services/microlearning/capsules/comments',
2872
                            'services/microlearning/capsules/comments/get',
2805
                            'services/microlearning/capsules/comments/get',
2873
                            'services/microlearning/capsules/comments/add',
2806
                            'services/microlearning/capsules/comments/add',
2874
                            'services/microlearning/capsules/comments/delete',
2807
                            'services/microlearning/capsules/comments/delete',
2875
                            
-
 
2876
                        ]    
2808
                        ]
2877
                    ],
2809
                    ],
2878
   
-
 
2879
                    
-
 
2880
                ]
2810
                ]
2881
            ],
2811
            ],
2882
 
-
 
2883
            
-
 
2884
            'marketplace' => [
2812
            'marketplace' => [
2885
                'type' => Literal::class,
2813
                'type' => Literal::class,
2886
                'options' => [
2814
                'options' => [
2887
                    'route' => '/marketplace',
2815
                    'route' => '/marketplace',
2888
                    'defaults' => [
2816
                    'defaults' => [
Línea 2916... Línea 2844...
2916
                                'action' => 'enroll'
2844
                                'action' => 'enroll'
2917
                            ]
2845
                            ]
2918
                        ]
2846
                        ]
2919
                    ],
2847
                    ],
2920
                ]
2848
                ]
2921
            ],  
2849
            ],
2922
            
-
 
2923
            
-
 
2924
            
-
 
2925
 
-
 
2926
           
-
 
2927
        ]
2850
        ]
2928
    ],
2851
    ],
2929
 
-
 
2930
    'controllers' => [
2852
    'controllers' => [
2931
        'factories' => [
2853
        'factories' => [
2932
           
-
 
2933
            \LeadersLinked\Controller\AccountSettingController::class => \LeadersLinked\Factory\Controller\AccountSettingControllerFactory::class,
2854
            \LeadersLinked\Controller\AccountSettingController::class => \LeadersLinked\Factory\Controller\AccountSettingControllerFactory::class,
2934
            \LeadersLinked\Controller\AuthController::class => \LeadersLinked\Factory\Controller\AuthControllerFactory::class,
2855
            \LeadersLinked\Controller\AuthController::class => \LeadersLinked\Factory\Controller\AuthControllerFactory::class,
2935
            \LeadersLinked\Controller\BackendController::class => \LeadersLinked\Factory\Controller\BackendControllerFactory::class,
2856
            \LeadersLinked\Controller\BackendController::class => \LeadersLinked\Factory\Controller\BackendControllerFactory::class,
2936
            \LeadersLinked\Controller\ChatController::class => \LeadersLinked\Factory\Controller\ChatControllerFactory::class,
2857
            \LeadersLinked\Controller\ChatController::class => \LeadersLinked\Factory\Controller\ChatControllerFactory::class,
2937
            \LeadersLinked\Controller\CompanyController::class => \LeadersLinked\Factory\Controller\CompanyControllerFactory::class,
2858
            \LeadersLinked\Controller\CompanyController::class => \LeadersLinked\Factory\Controller\CompanyControllerFactory::class,
2938
            
-
 
2939
            
-
 
2940
 
-
 
2941
            \LeadersLinked\Controller\DashboardController::class => \LeadersLinked\Factory\Controller\DashboardControllerFactory::class,
2859
            \LeadersLinked\Controller\DashboardController::class => \LeadersLinked\Factory\Controller\DashboardControllerFactory::class,
2942
            \LeadersLinked\Controller\ConnectionController::class => \LeadersLinked\Factory\Controller\ConnectionControllerFactory::class,
2860
            \LeadersLinked\Controller\ConnectionController::class => \LeadersLinked\Factory\Controller\ConnectionControllerFactory::class,
2943
            
-
 
2944
            \LeadersLinked\Controller\HomeController::class => \LeadersLinked\Factory\Controller\HomeControllerFactory::class,
2861
            \LeadersLinked\Controller\HomeController::class => \LeadersLinked\Factory\Controller\HomeControllerFactory::class,
2945
            \LeadersLinked\Controller\HelperController::class => \LeadersLinked\Factory\Controller\HelperControllerFactory::class,
2862
            \LeadersLinked\Controller\HelperController::class => \LeadersLinked\Factory\Controller\HelperControllerFactory::class,
2946
            \LeadersLinked\Controller\HelpController::class => \LeadersLinked\Factory\Controller\HelpControllerFactory::class,
2863
            \LeadersLinked\Controller\HelpController::class => \LeadersLinked\Factory\Controller\HelpControllerFactory::class,
2947
            \LeadersLinked\Controller\FeedController::class => \LeadersLinked\Factory\Controller\FeedControllerFactory::class,
2864
            \LeadersLinked\Controller\FeedController::class => \LeadersLinked\Factory\Controller\FeedControllerFactory::class,
2948
           
-
 
2949
            \LeadersLinked\Controller\MarketPlaceController::class => \LeadersLinked\Factory\Controller\MarketPlaceControllerFactory::class,
2865
            \LeadersLinked\Controller\MarketPlaceController::class => \LeadersLinked\Factory\Controller\MarketPlaceControllerFactory::class,
2950
            \LeadersLinked\Controller\MoodleController::class => \LeadersLinked\Factory\Controller\MoodleControllerFactory::class,
2866
            \LeadersLinked\Controller\MoodleController::class => \LeadersLinked\Factory\Controller\MoodleControllerFactory::class,
2951
            \LeadersLinked\Controller\OauthController::class => \LeadersLinked\Factory\Controller\OauthControllerFactory::class,
2867
            \LeadersLinked\Controller\OauthController::class => \LeadersLinked\Factory\Controller\OauthControllerFactory::class,
2952
 
-
 
2953
            
-
 
2954
            \LeadersLinked\Controller\JobController::class => \LeadersLinked\Factory\Controller\JobControllerFactory::class,
2868
            \LeadersLinked\Controller\JobController::class => \LeadersLinked\Factory\Controller\JobControllerFactory::class,
2955
            \LeadersLinked\Controller\InMailController::class => \LeadersLinked\Factory\Controller\InMailControllerFactory::class,
2869
            \LeadersLinked\Controller\InMailController::class => \LeadersLinked\Factory\Controller\InMailControllerFactory::class,
2956
           
-
 
2957
            
-
 
2958
            \LeadersLinked\Controller\GroupController::class => \LeadersLinked\Factory\Controller\GroupControllerFactory::class,
2870
            \LeadersLinked\Controller\GroupController::class => \LeadersLinked\Factory\Controller\GroupControllerFactory::class,
2959
            \LeadersLinked\Controller\MyGroupsController::class => \LeadersLinked\Factory\Controller\MyGroupsControllerFactory::class,
2871
            \LeadersLinked\Controller\MyGroupsController::class => \LeadersLinked\Factory\Controller\MyGroupsControllerFactory::class,
2960
            
-
 
2961
            \LeadersLinked\Controller\MyCompaniesController::class => \LeadersLinked\Factory\Controller\MyCompaniesControllerFactory::class,
2872
            \LeadersLinked\Controller\MyCompaniesController::class => \LeadersLinked\Factory\Controller\MyCompaniesControllerFactory::class,
2962
           
-
 
2963
            \LeadersLinked\Controller\PaypalController::class => \LeadersLinked\Factory\Controller\PaypalControllerFactory::class,
2873
            \LeadersLinked\Controller\PaypalController::class => \LeadersLinked\Factory\Controller\PaypalControllerFactory::class,
2964
            \LeadersLinked\Controller\ProfileController::class => \LeadersLinked\Factory\Controller\ProfileControllerFactory::class,
2874
            \LeadersLinked\Controller\ProfileController::class => \LeadersLinked\Factory\Controller\ProfileControllerFactory::class,
2965
            \LeadersLinked\Controller\ProfileMicrolearningController::class => \LeadersLinked\Factory\Controller\ProfileMicrolearningControllerFactory::class,
2875
            \LeadersLinked\Controller\ProfileMicrolearningController::class => \LeadersLinked\Factory\Controller\ProfileMicrolearningControllerFactory::class,
2966
 
-
 
2967
            \LeadersLinked\Controller\SelfEvaluationController::class => \LeadersLinked\Factory\Controller\SelfEvaluationControllerFactory::class,
2876
            \LeadersLinked\Controller\SelfEvaluationController::class => \LeadersLinked\Factory\Controller\SelfEvaluationControllerFactory::class,
-
 
2877
            \LeadersLinked\Controller\PerformanceEvaluation::class => \LeadersLinked\Factory\Controller\PerformanceEvaluationFactory::class,
2968
            \LeadersLinked\Controller\MyProfilesController::class => \LeadersLinked\Factory\Controller\MyProfilesControllerFactory::class,
2878
            \LeadersLinked\Controller\MyProfilesController::class => \LeadersLinked\Factory\Controller\MyProfilesControllerFactory::class,
2969
 
-
 
2970
            \LeadersLinked\Controller\SearchController::class => \LeadersLinked\Factory\Controller\SearchControllerFactory::class,
2879
            \LeadersLinked\Controller\SearchController::class => \LeadersLinked\Factory\Controller\SearchControllerFactory::class,
2971
            \LeadersLinked\Controller\StorageController::class => \LeadersLinked\Factory\Controller\StorageControllerFactory::class,
2880
            \LeadersLinked\Controller\StorageController::class => \LeadersLinked\Factory\Controller\StorageControllerFactory::class,
2972
            
-
 
2973
            
-
 
2974
            \LeadersLinked\Controller\ServiceController::class => \LeadersLinked\Factory\Controller\ServiceControllerFactory::class,
2881
            \LeadersLinked\Controller\ServiceController::class => \LeadersLinked\Factory\Controller\ServiceControllerFactory::class,
2975
 
-
 
2976
        ],
2882
        ],
2977
 
-
 
2978
        'aliases' => [
2883
        'aliases' => [
2979
           
-
 
2980
            '\LeadersLinked\Controller\AuthController' => \LeadersLinked\Controller\AuthController::class,
2884
            '\LeadersLinked\Controller\AuthController' => \LeadersLinked\Controller\AuthController::class,
2981
            '\LeadersLinked\Controller\BackendController' => \LeadersLinked\Controller\BackendController::class,
2885
            '\LeadersLinked\Controller\BackendController' => \LeadersLinked\Controller\BackendController::class,
2982
            
-
 
2983
            '\LeadersLinked\Controller\AccountSettingController' => \LeadersLinked\Controller\AccountSettingController::class,
2886
            '\LeadersLinked\Controller\AccountSettingController' => \LeadersLinked\Controller\AccountSettingController::class,
2984
            '\LeadersLinked\Controller\ChatController' => \LeadersLinked\Controller\ChatController::class,
2887
            '\LeadersLinked\Controller\ChatController' => \LeadersLinked\Controller\ChatController::class,
2985
            '\LeadersLinked\Controller\CompanyController' => \LeadersLinked\Controller\CompanyController::class,
2888
            '\LeadersLinked\Controller\CompanyController' => \LeadersLinked\Controller\CompanyController::class,
2986
 
-
 
2987
            '\LeadersLinked\Controller\ConnectionController' => \LeadersLinked\Controller\ConnectionController::class,
2889
            '\LeadersLinked\Controller\ConnectionController' => \LeadersLinked\Controller\ConnectionController::class,
2988
            '\LeadersLinked\Controller\DashboardController' => \LeadersLinked\Controller\DashboardController::class,
2890
            '\LeadersLinked\Controller\DashboardController' => \LeadersLinked\Controller\DashboardController::class,
2989
           
-
 
2990
 
-
 
2991
            '\LeadersLinked\Controller\HomeController' => \LeadersLinked\Controller\HomeController::class,
2891
            '\LeadersLinked\Controller\HomeController' => \LeadersLinked\Controller\HomeController::class,
2992
            '\LeadersLinked\Controller\HelpController' => \LeadersLinked\Controller\HelpController::class,
2892
            '\LeadersLinked\Controller\HelpController' => \LeadersLinked\Controller\HelpController::class,
2993
            '\LeadersLinked\Controller\HelperController' => \LeadersLinked\Controller\HelperController::class,
2893
            '\LeadersLinked\Controller\HelperController' => \LeadersLinked\Controller\HelperController::class,
2994
            '\LeadersLinked\Controller\FeedController' => \LeadersLinked\Controller\FeedController::class,
2894
            '\LeadersLinked\Controller\FeedController' => \LeadersLinked\Controller\FeedController::class,
2995
            '\LeadersLinked\Controller\InMailController' =>  \LeadersLinked\Controller\InMailController::class,
2895
            '\LeadersLinked\Controller\InMailController' => \LeadersLinked\Controller\InMailController::class,
2996
           
-
 
2997
            '\LeadersLinked\Controller\JobController' => \LeadersLinked\Controller\JobController::class,
2896
            '\LeadersLinked\Controller\JobController' => \LeadersLinked\Controller\JobController::class,
2998
         
-
 
2999
            
-
 
3000
            '\LeadersLinked\Controller\GroupController' => \LeadersLinked\Controller\GroupController::class,
2897
            '\LeadersLinked\Controller\GroupController' => \LeadersLinked\Controller\GroupController::class,
3001
            '\LeadersLinked\Controller\MyGroupsController' => \LeadersLinked\Controller\MyGroupsController::class,
2898
            '\LeadersLinked\Controller\MyGroupsController' => \LeadersLinked\Controller\MyGroupsController::class,
3002
            
-
 
3003
            
-
 
3004
            '\LeadersLinked\Controller\MyCompaniesController' => \LeadersLinked\Controller\MyCompaniesController::class,
2899
            '\LeadersLinked\Controller\MyCompaniesController' => \LeadersLinked\Controller\MyCompaniesController::class,
3005
 
-
 
3006
            
-
 
3007
            '\LeadersLinked\Controller\PaypalController' => \LeadersLinked\Controller\PaypalController::class,
2900
            '\LeadersLinked\Controller\PaypalController' => \LeadersLinked\Controller\PaypalController::class,
3008
            '\LeadersLinked\Controller\ProfileController' => \LeadersLinked\Controller\ProfileController::class,
2901
            '\LeadersLinked\Controller\ProfileController' => \LeadersLinked\Controller\ProfileController::class,
3009
            '\LeadersLinked\Controller\ProfileMicrolearningController' => \LeadersLinked\Controller\ProfileMicrolearningController::class,
2902
            '\LeadersLinked\Controller\ProfileMicrolearningController' => \LeadersLinked\Controller\ProfileMicrolearningController::class,
3010
            '\LeadersLinked\Controller\MyProfilesController' => \LeadersLinked\Controller\MyProfilesController::class,
2903
            '\LeadersLinked\Controller\MyProfilesController' => \LeadersLinked\Controller\MyProfilesController::class,
3011
            '\LeadersLinked\Controller\MarketPlaceController' => \LeadersLinked\Controller\MarketPlaceController::class,
2904
            '\LeadersLinked\Controller\MarketPlaceController' => \LeadersLinked\Controller\MarketPlaceController::class,
3012
            '\LeadersLinked\Controller\MoodleController' => \LeadersLinked\Controller\MoodleController::class,
2905
            '\LeadersLinked\Controller\MoodleController' => \LeadersLinked\Controller\MoodleController::class,
3013
            '\LeadersLinked\Controller\SearchController' => \LeadersLinked\Controller\SearchController::class,
2906
            '\LeadersLinked\Controller\SearchController' => \LeadersLinked\Controller\SearchController::class,
3014
            
-
 
3015
   
-
 
3016
            '\LeadersLinked\Controller\StorageController' => \LeadersLinked\Controller\StorageController::class,
2907
            '\LeadersLinked\Controller\StorageController' => \LeadersLinked\Controller\StorageController::class,
3017
            '\LeadersLinked\Controller\OauthController' => \LeadersLinked\Controller\OauthController::class,
2908
            '\LeadersLinked\Controller\OauthController' => \LeadersLinked\Controller\OauthController::class,
3018
            
-
 
3019
            '\LeadersLinked\Controller\ServiceController' => \LeadersLinked\Controller\ServiceController::class,
2909
            '\LeadersLinked\Controller\ServiceController' => \LeadersLinked\Controller\ServiceController::class,
3020
            '\LeadersLinked\Controller\SelfEvaluationController' => \LeadersLinked\Controller\SelfEvaluationController::class,
2910
            '\LeadersLinked\Controller\SelfEvaluationController' => \LeadersLinked\Controller\SelfEvaluationController::class,
3021
 
-
 
-
 
2911
            '\LeadersLinked\Controller\PerformanceEvaluation' => \LeadersLinked\Controller\PerformanceEvaluation::class,
3022
        ]
2912
        ]
3023
    ],
2913
    ],
3024
    
-
 
3025
    'laminas-cli' => [
2914
    'laminas-cli' => [
3026
        'commands' => [
2915
        'commands' => [
3027
            'process-queue-email' => \LeadersLinked\Command\ProcessQueueEmailCommand::class,
2916
            'process-queue-email' => \LeadersLinked\Command\ProcessQueueEmailCommand::class,
3028
            'process-queue-push' => \LeadersLinked\Command\ProcessQueuePushCommand::class,
2917
            'process-queue-push' => \LeadersLinked\Command\ProcessQueuePushCommand::class,
3029
            'process-queue-video-convert' => \LeadersLinked\Command\ProcessQueueVideoConvertCommand::class,
2918
            'process-queue-video-convert' => \LeadersLinked\Command\ProcessQueueVideoConvertCommand::class,
3030
            'recalculate-microlearning-progress' => \LeadersLinked\Command\RecalculateMicrolearningProgressCommand::class,
2919
            'recalculate-microlearning-progress' => \LeadersLinked\Command\RecalculateMicrolearningProgressCommand::class,
3031
            'check-owner-user-for-company' => \LeadersLinked\Command\CheckOwnerUserForCompanyCommand::class,
2920
            'check-owner-user-for-company' => \LeadersLinked\Command\CheckOwnerUserForCompanyCommand::class,
3032
            'check-preview-poster-for-feed' => \LeadersLinked\Command\CheckPreviewPosterForFeedCommand::class,
2921
            'check-preview-poster-for-feed' => \LeadersLinked\Command\CheckPreviewPosterForFeedCommand::class,
3033
        ]
2922
        ]
3034
    ],
2923
    ],
3035
    
-
 
3036
    'service_manager' => [
2924
    'service_manager' => [
3037
        'abstract_factories' => [
2925
        'abstract_factories' => [
3038
            \Laminas\Db\Adapter\AdapterAbstractServiceFactory::class
2926
            \Laminas\Db\Adapter\AdapterAbstractServiceFactory::class
3039
        ],
2927
        ],
3040
        'factories' => [
2928
        'factories' => [
Línea 3042... Línea 2930...
3042
                $translator = $container->get('MvcTranslator');
2930
                $translator = $container->get('MvcTranslator');
3043
                return new \LeadersLinked\View\RenderingStrategy($translator);
2931
                return new \LeadersLinked\View\RenderingStrategy($translator);
3044
            },
2932
            },
3045
            'menuNavigation' => \LeadersLinked\Navigation\MenuNavigation::class,
2933
            'menuNavigation' => \LeadersLinked\Navigation\MenuNavigation::class,
3046
            'footerNavigation' => \LeadersLinked\Navigation\FooterNavigation::class,
2934
            'footerNavigation' => \LeadersLinked\Navigation\FooterNavigation::class,
3047
 
-
 
3048
            
-
 
3049
            \LeadersLinked\Command\ProcessQueueEmailCommand::class => \LeadersLinked\Factory\Command\ProcessQueueEmailCommandFactory::class,
2935
            \LeadersLinked\Command\ProcessQueueEmailCommand::class => \LeadersLinked\Factory\Command\ProcessQueueEmailCommandFactory::class,
3050
            \LeadersLinked\Command\ProcessQueuePushCommand::class => \LeadersLinked\Factory\Command\ProcessQueuePushCommandFactory::class,
2936
            \LeadersLinked\Command\ProcessQueuePushCommand::class => \LeadersLinked\Factory\Command\ProcessQueuePushCommandFactory::class,
3051
            \LeadersLinked\Command\ProcessQueueVideoConvertCommand::class => \LeadersLinked\Factory\Command\ProcessQueueVideoConvertCommandFactory::class,
2937
            \LeadersLinked\Command\ProcessQueueVideoConvertCommand::class => \LeadersLinked\Factory\Command\ProcessQueueVideoConvertCommandFactory::class,
3052
            \LeadersLinked\Command\RecalculateMicrolearningProgressCommand::class => \LeadersLinked\Factory\Command\RecalculateMicrolearningProgressCommandFactory::class,
2938
            \LeadersLinked\Command\RecalculateMicrolearningProgressCommand::class => \LeadersLinked\Factory\Command\RecalculateMicrolearningProgressCommandFactory::class,
3053
            \LeadersLinked\Command\CheckOwnerUserForCompanyCommand::class => \LeadersLinked\Factory\Command\CheckOwnerUserForCompanyCommandFactory::class,
2939
            \LeadersLinked\Command\CheckOwnerUserForCompanyCommand::class => \LeadersLinked\Factory\Command\CheckOwnerUserForCompanyCommandFactory::class,
3054
            \LeadersLinked\Command\CheckPreviewPosterForFeedCommand::class => \LeadersLinked\Factory\Command\CheckPreviewPosterForFeedCommandFactory::class,
2940
            \LeadersLinked\Command\CheckPreviewPosterForFeedCommand::class => \LeadersLinked\Factory\Command\CheckPreviewPosterForFeedCommandFactory::class,
3055
        ],
2941
        ],
3056
        'aliases' => [ // 'leaders-linked-storage' => \LeadersLinked\Service\StorageService::class
2942
        'aliases' => [// 'leaders-linked-storage' => \LeadersLinked\Service\StorageService::class
3057
        ]
2943
        ]
3058
    ],
2944
    ],
3059
    'view_helpers' => [
2945
    'view_helpers' => [
3060
        'factories' => [
2946
        'factories' => [
3061
           
-
 
3062
            \LeadersLinked\Helper\ChatHelper::class => \LeadersLinked\Factory\Helper\ChatHelperFactory::class,
2947
            \LeadersLinked\Helper\ChatHelper::class => \LeadersLinked\Factory\Helper\ChatHelperFactory::class,
3063
            \LeadersLinked\Helper\CompanyFollowerHelper::class => \LeadersLinked\Factory\Helper\CompanyFollowerHelperFactory::class,
2948
            \LeadersLinked\Helper\CompanyFollowerHelper::class => \LeadersLinked\Factory\Helper\CompanyFollowerHelperFactory::class,
3064
            \LeadersLinked\Helper\CompanySuggestionHelper::class => \LeadersLinked\Factory\Helper\CompanySuggestionHelperFactory::class,
2949
            \LeadersLinked\Helper\CompanySuggestionHelper::class => \LeadersLinked\Factory\Helper\CompanySuggestionHelperFactory::class,
3065
            \LeadersLinked\Helper\CurrentUserHelper::class => \LeadersLinked\Factory\Helper\CurrentUserHelperFactory::class,
2950
            \LeadersLinked\Helper\CurrentUserHelper::class => \LeadersLinked\Factory\Helper\CurrentUserHelperFactory::class,
3066
            \LeadersLinked\Helper\GroupMembersHelper::class => \LeadersLinked\Factory\Helper\GroupMembersHelperFactory::class,
2951
            \LeadersLinked\Helper\GroupMembersHelper::class => \LeadersLinked\Factory\Helper\GroupMembersHelperFactory::class,
3067
            \LeadersLinked\Helper\GroupsSuggestionHelper::class => \LeadersLinked\Factory\Helper\GroupsSuggestionHelperFactory::class,
2952
            \LeadersLinked\Helper\GroupsSuggestionHelper::class => \LeadersLinked\Factory\Helper\GroupsSuggestionHelperFactory::class,
3068
            \LeadersLinked\Helper\MenuHelper::class => \LeadersLinked\Factory\Helper\MenuHelperFactory::class,
2953
            \LeadersLinked\Helper\MenuHelper::class => \LeadersLinked\Factory\Helper\MenuHelperFactory::class,
3069
            \LeadersLinked\Helper\PeopleViewedProfileHelper::class => \LeadersLinked\Factory\Helper\PeopleViewedProfileHelperFactory::class,
2954
            \LeadersLinked\Helper\PeopleViewedProfileHelper::class => \LeadersLinked\Factory\Helper\PeopleViewedProfileHelperFactory::class,
3070
            \LeadersLinked\Helper\PeopleYouMayKnowHelper::class => \LeadersLinked\Factory\Helper\PeopleYouMayKnowHelperFactory::class,
2955
            \LeadersLinked\Helper\PeopleYouMayKnowHelper::class => \LeadersLinked\Factory\Helper\PeopleYouMayKnowHelperFactory::class,
3071
            \LeadersLinked\Helper\SimilarGroupsHelper::class => \LeadersLinked\Factory\Helper\SimilarGroupsHelperFactory::class
2956
            \LeadersLinked\Helper\SimilarGroupsHelper::class => \LeadersLinked\Factory\Helper\SimilarGroupsHelperFactory::class
3072
            
-
 
3073
        ],
2957
        ],
3074
        'invokables' => [
2958
        'invokables' => [
3075
        
-
 
3076
            'menuBackendHelper' => \LeadersLinked\Helper\MenuBackendHelper::class,
2959
            'menuBackendHelper' => \LeadersLinked\Helper\MenuBackendHelper::class,
3077
            'menuMyCompanyHelper' => \LeadersLinked\Helper\MenuMyCompanyHelper::class,
2960
            'menuMyCompanyHelper' => \LeadersLinked\Helper\MenuMyCompanyHelper::class,
3078
            'footerHelper' => \LeadersLinked\Helper\FooterHelper::class
2961
            'footerHelper' => \LeadersLinked\Helper\FooterHelper::class
3079
        ],
2962
        ],
3080
        'aliases' => [
2963
        'aliases' => [