Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 15546 Rev 15607
Línea 8... Línea 8...
8
use Laminas\Router\Http\Segment;
8
use Laminas\Router\Http\Segment;
9
use Laminas\ServiceManager\Factory\InvokableFactory;
9
use Laminas\ServiceManager\Factory\InvokableFactory;
Línea 10... Línea 10...
10
 
10
 
11
return [
11
return [
12
    'navigation' => [
12
    'navigation' => [
13
        'menu' => [
-
 
14
        ],
13
        'menu' => [],
15
        'footer' => [
-
 
16
        ]
14
        'footer' => []
17
    ],
15
    ],
18
    'router' => [
16
    'router' => [
19
        'routes' => [
17
        'routes' => [
20
            'home' => [
18
            'home' => [
Línea 162... Línea 160...
162
                            ]
160
                            ]
163
                        ]
161
                        ]
164
                    ],
162
                    ],
165
                ],
163
                ],
166
            ],
164
            ],
167
            
165
 
168
            'activities-center' => [
166
            'activities-center' => [
169
                'type' => Literal::class,
167
                'type' => Literal::class,
170
                'options' => [
168
                'options' => [
171
                    'route' => '/activities-center',
169
                    'route' => '/activities-center',
172
                    'defaults' => [
170
                    'defaults' => [
Línea 206... Línea 204...
206
                                    'route' => '/report/:id',
204
                                    'route' => '/report/:id',
207
                                    'constraints' => [
205
                                    'constraints' => [
208
                                        'id' => '[A-Za-z0-9\-]+\=*'
206
                                        'id' => '[A-Za-z0-9\-]+\=*'
209
                                    ],
207
                                    ],
210
                                    'defaults' => [
208
                                    'defaults' => [
211
                                        'controller' =>'\LeadersLinked\Controller\ActivityCenterPerformanceEvaluationController',
209
                                        'controller' => '\LeadersLinked\Controller\ActivityCenterPerformanceEvaluationController',
212
                                        'action' => 'report'
210
                                        'action' => 'report'
213
                                    ]
211
                                    ]
214
                                ]
212
                                ]
215
                            ],
213
                            ],
216
                        ]    
214
                        ]
217
                    ],
215
                    ],
218
                    'recruitment-and-selection' => [
216
                    'recruitment-and-selection' => [
219
                        'type' => Literal::class,
217
                        'type' => Literal::class,
220
                        'options' => [
218
                        'options' => [
221
                            'route' => '/recruitment-and-selection',
219
                            'route' => '/recruitment-and-selection',
Línea 245... Línea 243...
245
                                    'route' => '/report/:id',
243
                                    'route' => '/report/:id',
246
                                    'constraints' => [
244
                                    'constraints' => [
247
                                        'id' => '[A-Za-z0-9\-]+\=*'
245
                                        'id' => '[A-Za-z0-9\-]+\=*'
248
                                    ],
246
                                    ],
249
                                    'defaults' => [
247
                                    'defaults' => [
250
                                        'controller' =>'\LeadersLinked\Controller\ActivityCenterRecruitmentSelectionController',
248
                                        'controller' => '\LeadersLinked\Controller\ActivityCenterRecruitmentSelectionController',
251
                                        'action' => 'report'
249
                                        'action' => 'report'
252
                                    ]
250
                                    ]
253
                                ]
251
                                ]
254
                            ],
252
                            ],
255
                        ]
253
                        ]
256
                    ],
254
                    ],
257
                    
-
 
258
                    
-
 
Línea -... Línea 255...
-
 
255
 
259
 
256
 
-
 
257
 
260
                   
258
 
261
                ]    
259
                ]
Línea 262... Línea 260...
262
            ], 
260
            ],
263
 
261
 
264
            /*             * * START COMPANIES ** */
262
            /*             * * START COMPANIES ** */
265
            'companies' => [
263
            'companies' => [
Línea 328... Línea 326...
328
                'child_routes' => [
326
                'child_routes' => [
329
                    'users-blocked' => [
327
                    'users-blocked' => [
330
                        'type' => Literal::class,
328
                        'type' => Literal::class,
331
                        'options' => [
329
                        'options' => [
332
                            'route' => '/users-blocked',
330
                            'route' => '/users-blocked',
333
 
331
 
334
                            'defaults' => [
332
                            'defaults' => [
335
                                'controller' => '\LeadersLinked\Controller\ReportController',
333
                                'controller' => '\LeadersLinked\Controller\ReportController',
336
                                'action' => 'usersBlocked'
334
                                'action' => 'usersBlocked'
337
                            ]
335
                            ]
338
                        ],
336
                        ],
Línea 346... Línea 344...
346
                                        'controller' => '\LeadersLinked\Controller\ReportController',
344
                                        'controller' => '\LeadersLinked\Controller\ReportController',
347
                                        'action' => 'usersBlockedExcel'
345
                                        'action' => 'usersBlockedExcel'
348
                                    ]
346
                                    ]
349
                                ]
347
                                ]
350
                            ],
348
                            ],
351
                        ]    
349
                        ]
352
                    ],
350
                    ],
353
                ],
351
                ],
354
            ],
352
            ],
355
            
353
 
356
            /*             * * START USERS ** */
354
            /*             * * START USERS ** */
357
            'users' => [
355
            'users' => [
358
                'type' => Literal::class,
356
                'type' => Literal::class,
359
                'options' => [
357
                'options' => [
360
                    'route' => '/users',
358
                    'route' => '/users',
Línea 511... Línea 509...
511
                                        'controller' => '\LeadersLinked\Controller\UserRequestAccessController',
509
                                        'controller' => '\LeadersLinked\Controller\UserRequestAccessController',
512
                                        'action' => 'reject'
510
                                        'action' => 'reject'
513
                                    ]
511
                                    ]
514
                                ]
512
                                ]
515
                            ],
513
                            ],
516
                        ]    
514
                        ]
517
                    ],
515
                    ],
518
                ]
516
                ]
519
            ],
517
            ],
520
            /** START FEEDS * */
518
            /** START FEEDS * */
521
            'feeds' => [
519
            'feeds' => [
Línea 535... Línea 533...
535
                            'route' => '/timeline[/id/:id][/type/:type][/urgent/:urgent][/myt_id/:myt_id][/feed/:feed][/topic_id/:topic_id][/hptg_id/:hptg_id]',
533
                            'route' => '/timeline[/id/:id][/type/:type][/urgent/:urgent][/myt_id/:myt_id][/feed/:feed][/topic_id/:topic_id][/hptg_id/:hptg_id]',
536
                            'constraints' => [
534
                            'constraints' => [
537
                                'id' => '[A-Za-z0-9\-]+\=*',
535
                                'id' => '[A-Za-z0-9\-]+\=*',
538
                                'type' => 'user|company|hptg|mytq|myta',
536
                                'type' => 'user|company|hptg|mytq|myta',
539
                                'myt_id' => '[A-Za-z0-9\-]+\=*',
537
                                'myt_id' => '[A-Za-z0-9\-]+\=*',
540
                                'hptg_id'=>'[A-Za-z0-9\-]+\=*',
538
                                'hptg_id' => '[A-Za-z0-9\-]+\=*',
541
                                'feed' => '[A-Za-z0-9\-]+\=*',
539
                                'feed' => '[A-Za-z0-9\-]+\=*',
542
                                'topic_id' => '[A-Za-z0-9\-]+\=*',
540
                                'topic_id' => '[A-Za-z0-9\-]+\=*',
543
                                'urgent' => 'u',
541
                                'urgent' => 'u',
544
                            ],
542
                            ],
545
                            'defaults' => [
543
                            'defaults' => [
Línea 848... Línea 846...
848
                        'action' => 'index'
846
                        'action' => 'index'
849
                    ]
847
                    ]
850
                ],
848
                ],
851
                'may_terminate' => true,
849
                'may_terminate' => true,
852
                'child_routes' => [
850
                'child_routes' => [
853
                    
851
 
854
                    'extended' => [
852
                    'extended' => [
855
                        'type' => Segment::class,
853
                        'type' => Segment::class,
856
                        'options' => [
854
                        'options' => [
857
                            'route' => '/extended',
855
                            'route' => '/extended',
858
                            'defaults' => [
856
                            'defaults' => [
Línea 1072... Línea 1070...
1072
                                                'controller' => '\LeadersLinked\Controller\MicrolearningReportsController',
1070
                                                'controller' => '\LeadersLinked\Controller\MicrolearningReportsController',
1073
                                                'action' => 'progressForCapsuleExcel'
1071
                                                'action' => 'progressForCapsuleExcel'
1074
                                            ]
1072
                                            ]
1075
                                        ]
1073
                                        ]
1076
                                    ],
1074
                                    ],
1077
                                ],    
1075
                                ],
1078
                            ],
1076
                            ],
1079
                            'progress-for-topic' => [
1077
                            'progress-for-topic' => [
1080
                                'type' => Literal::class,
1078
                                'type' => Literal::class,
1081
                                'options' => [
1079
                                'options' => [
1082
                                    'route' => '/progress-for-topic',
1080
                                    'route' => '/progress-for-topic',
Línea 1941... Línea 1939...
1941
                                            ]
1939
                                            ]
1942
                                        ]
1940
                                        ]
1943
                                    ]
1941
                                    ]
1944
                                ]
1942
                                ]
1945
                            ],
1943
                            ],
1946
                            
1944
 
1947
                            'companies' => [
1945
                            'companies' => [
1948
                                'type' => Literal::class,
1946
                                'type' => Literal::class,
1949
                                'options' => [
1947
                                'options' => [
1950
                                    'route' => '/companies',
1948
                                    'route' => '/companies',
1951
                                    'defaults' => [
1949
                                    'defaults' => [
Línea 2323... Línea 2321...
2323
                                        'action' => 'delete'
2321
                                        'action' => 'delete'
2324
                                    ]
2322
                                    ]
2325
                                ]
2323
                                ]
2326
                            ]
2324
                            ]
2327
                        ],
2325
                        ],
2328
                        
2326
 
2329
                    ],
2327
                    ],
2330
                    'reports' => [
2328
                    'reports' => [
2331
                        'type' => Literal::class,
2329
                        'type' => Literal::class,
2332
                        'options' => [
2330
                        'options' => [
2333
                            'route' => '/reports',
2331
                            'route' => '/reports',
Línea 2346... Línea 2344...
2346
                                        'controller' => '\LeadersLinked\Controller\EngagementReportsController',
2344
                                        'controller' => '\LeadersLinked\Controller\EngagementReportsController',
2347
                                        'action' => 'overview'
2345
                                        'action' => 'overview'
2348
                                    ]
2346
                                    ]
2349
                                ]
2347
                                ]
2350
                            ],
2348
                            ],
2351
                            
2349
 
2352
                        ]
2350
                        ]
2353
                    ],    
2351
                    ],
2354
                ],        
2352
                ],
2355
            ],   
2353
            ],
2356
            
2354
 
2357
            /*** DAILY PULSE ****/
2355
            /*** DAILY PULSE ****/
2358
            'daily-pulse' => [
2356
            'daily-pulse' => [
2359
                'type' => Literal::class,
2357
                'type' => Literal::class,
2360
                'options' => [
2358
                'options' => [
2361
                    'route' => '/daily-pulse',
2359
                    'route' => '/daily-pulse',
Línea 2412... Línea 2410...
2412
                                        'action' => 'delete'
2410
                                        'action' => 'delete'
2413
                                    ]
2411
                                    ]
2414
                                ]
2412
                                ]
2415
                            ]
2413
                            ]
2416
                        ],
2414
                        ],
2417
                      
2415
 
2418
                    ],
2416
                    ],
2419
                    'reports' => [
2417
                    'reports' => [
2420
                        'type' => Literal::class,
2418
                        'type' => Literal::class,
2421
                        'options' => [
2419
                        'options' => [
2422
                            'route' => '/reports',
2420
                            'route' => '/reports',
Línea 2448... Línea 2446...
2448
                                            ]
2446
                                            ]
2449
                                        ]
2447
                                        ]
2450
                                    ],
2448
                                    ],
2451
                                ]
2449
                                ]
2452
                            ],
2450
                            ],
2453
                            
2451
 
2454
                        ]
2452
                        ]
2455
                    ],    
2453
                    ],
2456
                ],
2454
                ],
2457
            ],    
2455
            ],
2458
            /*             * * START SELF EVALUATION ** */
2456
            /*             * * START SELF EVALUATION ** */
2459
            'self-evaluation' => [
2457
            'self-evaluation' => [
2460
                'type' => Literal::class,
2458
                'type' => Literal::class,
2461
                'options' => [
2459
                'options' => [
2462
                    'route' => '/self-evaluation',
2460
                    'route' => '/self-evaluation',
Línea 2597... Línea 2595...
2597
                        ]
2595
                        ]
2598
                    ],
2596
                    ],
2599
                ]
2597
                ]
2600
            ],
2598
            ],
2601
            /*             * * END SELF EVALUATION ** */
2599
            /*             * * END SELF EVALUATION ** */
2602
            
2600
 
2603
            /*             * * START MY COACH ** */
2601
            /*             * * START MY COACH ** */
2604
            'my-coach' => [
2602
            'my-coach' => [
2605
                'type' => Literal::class,
2603
                'type' => Literal::class,
2606
                'options' => [
2604
                'options' => [
2607
                    'route' => '/my-coach',
2605
                    'route' => '/my-coach',
Línea 2657... Línea 2655...
2657
                                        'controller' =>  '\LeadersLinked\Controller\MyCoachCategoryController',
2655
                                        'controller' =>  '\LeadersLinked\Controller\MyCoachCategoryController',
2658
                                        'action' => 'delete'
2656
                                        'action' => 'delete'
2659
                                    ]
2657
                                    ]
2660
                                ]
2658
                                ]
2661
                            ],
2659
                            ],
2662
                           
2660
 
2663
                        ]
2661
                        ]
2664
                    ],
2662
                    ],
2665
                ]
2663
                ]
2666
            ],
2664
            ],
2667
            
2665
 
2668
            /*             * * END MY COACH ** */
2666
            /*             * * END MY COACH ** */
2669
            
2667
 
Línea 2670... Línea 2668...
2670
 
2668
 
2671
            /*             * * START PERFOMANCE EVALUATION ** */
2669
            /*             * * START PERFOMANCE EVALUATION ** */
2672
            'performance-evaluation' => [
2670
            'performance-evaluation' => [
2673
                'type' => Literal::class,
2671
                'type' => Literal::class,
Línea 2813... Línea 2811...
2813
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationTestController',
2811
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationTestController',
2814
                                        'action' => 'delete'
2812
                                        'action' => 'delete'
2815
                                    ]
2813
                                    ]
2816
                                ]
2814
                                ]
2817
                            ],
2815
                            ],
2818
                            'report' =>[
2816
                            'report' => [
2819
                                'type' => Segment::class,
2817
                                'type' => Segment::class,
2820
                                'options' => [
2818
                                'options' => [
2821
                                    'route' => '/report/:id',
2819
                                    'route' => '/report/:id',
2822
                                    'constraints' => [
2820
                                    'constraints' => [
2823
                                        'id' => '[A-Za-z0-9\-]+\=*'
2821
                                        'id' => '[A-Za-z0-9\-]+\=*'
Línea 2830... Línea 2828...
2830
                            ],
2828
                            ],
2831
                        ]
2829
                        ]
2832
                    ],
2830
                    ],
2833
                ]
2831
                ]
2834
            ],
2832
            ],
2835
            
2833
 
2836
            /*             * * END PERFORMANCE EVALUATION ** */
2834
            /*             * * END PERFORMANCE EVALUATION ** */
Línea 2837... Línea 2835...
2837
 
2835
 
2838
            /* START JOBS DESCRIPTION */
2836
            /* START JOBS DESCRIPTION */
2839
            
2837
 
2840
            'jobs-description' => [
2838
            'jobs-description' => [
2841
                'type' => Literal::class,
2839
                'type' => Literal::class,
2842
                'options' => [
2840
                'options' => [
2843
                    'route' => '/jobs-description',
2841
                    'route' => '/jobs-description',
Línea 3024... Línea 3022...
3024
                                        'controller' => '\LeadersLinked\Controller\BehaviorsController',
3022
                                        'controller' => '\LeadersLinked\Controller\BehaviorsController',
3025
                                        'action' => 'import'
3023
                                        'action' => 'import'
3026
                                    ]
3024
                                    ]
3027
                                ]
3025
                                ]
3028
                            ],
3026
                            ],
3029
                            
3027
 
3030
                        ]
3028
                        ]
3031
                    ],
3029
                    ],
3032
                    'competencies' => [
3030
                    'competencies' => [
3033
                        'type' => Literal::class,
3031
                        'type' => Literal::class,
3034
                        'options' => [
3032
                        'options' => [
Línea 3201... Línea 3199...
3201
                            ],
3199
                            ],
3202
                        ]
3200
                        ]
3203
                    ],
3201
                    ],
3204
                ]
3202
                ]
3205
            ],
3203
            ],
3206
            
3204
 
3207
            /* END JOBS DESCRIPTION */
3205
            /* END JOBS DESCRIPTION */
3208
            
3206
 
3209
            
3207
 
3210
            /*             * * START SETTINGS ** */
3208
            /*             * * START SETTINGS ** */
3211
            'settings' => [
3209
            'settings' => [
3212
                'type' => Literal::class,
3210
                'type' => Literal::class,
3213
                'options' => [
3211
                'options' => [
3214
                    'route' => '/settings',
3212
                    'route' => '/settings',
Línea 3288... Línea 3286...
3288
                                        'controller' =>  '\LeadersLinked\Controller\MyPrivateNetworkController',
3286
                                        'controller' =>  '\LeadersLinked\Controller\MyPrivateNetworkController',
3289
                                        'action' => 'logo'
3287
                                        'action' => 'logo'
3290
                                    ]
3288
                                    ]
3291
                                ]
3289
                                ]
3292
                            ],
3290
                            ],
3293
                            
3291
 
3294
                            
3292
 
3295
                            
3293
 
3296
                        ]
3294
                        ]
3297
                    ],
3295
                    ],
3298
                    
3296
 
3299
                    'private-networks' => [
3297
                    'private-networks' => [
3300
                        'type' => Literal::class,
3298
                        'type' => Literal::class,
3301
                        'options' => [
3299
                        'options' => [
3302
                            'route' => '/private-networks',
3300
                            'route' => '/private-networks',
3303
                            'defaults' => [
3301
                            'defaults' => [
Línea 3392... Línea 3390...
3392
                                    ]
3390
                                    ]
3393
                                ]
3391
                                ]
3394
                            ]
3392
                            ]
3395
                        ]
3393
                        ]
3396
                    ],
3394
                    ],
3397
                    
3395
 
3398
                    
3396
 
3399
                    'countries' => [
3397
                    'countries' => [
3400
                        'type' => Literal::class,
3398
                        'type' => Literal::class,
3401
                        'options' => [
3399
                        'options' => [
3402
                            'route' => '/countries',
3400
                            'route' => '/countries',
3403
                            'defaults' => [
3401
                            'defaults' => [
Línea 3443... Línea 3441...
3443
                                    ]
3441
                                    ]
3444
                                ]
3442
                                ]
3445
                            ]
3443
                            ]
3446
                        ]
3444
                        ]
3447
                    ],
3445
                    ],
3448
                    
3446
 
3449
                    
3447
 
3450
                    'degrees' => [
3448
                    'degrees' => [
3451
                        'type' => Literal::class,
3449
                        'type' => Literal::class,
3452
                        'options' => [
3450
                        'options' => [
3453
                            'route' => '/degrees',
3451
                            'route' => '/degrees',
3454
                            'defaults' => [
3452
                            'defaults' => [
Línea 3690... Línea 3688...
3690
                                    ]
3688
                                    ]
3691
                                ]
3689
                                ]
3692
                            ]
3690
                            ]
3693
                        ]
3691
                        ]
3694
                    ],
3692
                    ],
3695
                    
3693
 
3696
                    'email-templates' => [
3694
                    'email-templates' => [
3697
                        'type' => Literal::class,
3695
                        'type' => Literal::class,
3698
                        'options' => [
3696
                        'options' => [
3699
                            'route' => '/email-templates',
3697
                            'route' => '/email-templates',
3700
                            'defaults' => [
3698
                            'defaults' => [
Línea 3717... Línea 3715...
3717
                                    ]
3715
                                    ]
3718
                                ]
3716
                                ]
3719
                            ],
3717
                            ],
3720
                        ]
3718
                        ]
3721
                    ],
3719
                    ],
3722
  
3720
 
3723
                    'push-templates' => [
3721
                    'push-templates' => [
3724
                        'type' => Literal::class,
3722
                        'type' => Literal::class,
3725
                        'options' => [
3723
                        'options' => [
3726
                            'route' => '/push-templates',
3724
                            'route' => '/push-templates',
3727
                            'defaults' => [
3725
                            'defaults' => [
Línea 3903... Línea 3901...
3903
                            ]
3901
                            ]
3904
                        ]
3902
                        ]
3905
                    ],
3903
                    ],
3906
                ]
3904
                ]
3907
            ],
3905
            ],
3908
        /*         * * FIN SETTINGS ** */
3906
            /*         * * FIN SETTINGS ** */
3909
            
3907
 
3910
            'own-professional-network' => [
3908
            'own-professional-network' => [
3911
                'type' => Literal::class,
3909
                'type' => Literal::class,
3912
                'options' => [
3910
                'options' => [
3913
                    'route' => '/own-professional-network',
3911
                    'route' => '/own-professional-network',
3914
                    'defaults' => [
3912
                    'defaults' => [
3915
                        'controller' => '\LeadersLinked\Controller\UnknownController',
3913
                        'controller' => '\LeadersLinked\Controller\UnknownController',
3916
                        'action' => 'index'
3914
                        'action' => 'index'
3917
                    ]
3915
                    ]
3918
                ],
3916
                ],
3919
                'may_terminate' => true,
3917
                'may_terminate' => true,
3920
                'child_routes' => [
3918
                'child_routes' => []
3921
                ]
-
 
3922
            ],
3919
            ],
3923
            
3920
 
3924
            'organizational-design' => [
3921
            'organizational-design' => [
3925
                'type' => Literal::class,
3922
                'type' => Literal::class,
3926
                'options' => [
3923
                'options' => [
3927
                    'route' => '/organizational-design',
3924
                    'route' => '/organizational-design',
3928
                    'defaults' => [
3925
                    'defaults' => [
3929
                        'controller' => '\LeadersLinked\Controller\UnknownController',
3926
                        'controller' => '\LeadersLinked\Controller\UnknownController',
3930
                        'action' => 'index'
3927
                        'action' => 'index'
3931
                    ]
3928
                    ]
3932
                ],
3929
                ],
3933
                'may_terminate' => true,
3930
                'may_terminate' => true,
3934
                'child_routes' => [
3931
                'child_routes' => []
3935
                ]
-
 
3936
            ],
3932
            ],
3937
            
3933
 
3938
            'planning-objectives-and-goals' => [
3934
            'planning-objectives-and-goals' => [
3939
                'type' => Literal::class,
3935
                'type' => Literal::class,
3940
                'options' => [
3936
                'options' => [
3941
                    'route' => '/planning-objectives-and-goals',
3937
                    'route' => '/planning-objectives-and-goals',
3942
                    'defaults' => [
3938
                    'defaults' => [
Línea 3953... Línea 3949...
3953
                            'defaults' => [
3949
                            'defaults' => [
3954
                                'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController',
3950
                                'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController',
3955
                                'action' => 'index'
3951
                                'action' => 'index'
3956
                            ]
3952
                            ]
3957
                        ],
3953
                        ],
3958
                        
3954
 
3959
                        'may_terminate' => true,
3955
                        'may_terminate' => true,
3960
                        'child_routes' => [
3956
                        'child_routes' => [
Línea 3961... Línea 3957...
3961
 
3957
 
3962
                            'add' => [
3958
                            'add' => [
Línea 4005... Línea 4001...
4005
                                    'defaults' => [
4001
                                    'defaults' => [
4006
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController',
4002
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController',
4007
                                        'action' => 'report'
4003
                                        'action' => 'report'
4008
                                    ]
4004
                                    ]
4009
                                ]
4005
                                ]
4010
                            ], 
4006
                            ],
4011
                            'reportall' => [
4007
                            'reportall' => [
4012
                                'type' => Literal::class,
4008
                                'type' => Literal::class,
4013
                                'options' => [
4009
                                'options' => [
4014
                                    'route' => '/reportall',
4010
                                    'route' => '/reportall',
4015
                                    'defaults' => [
4011
                                    'defaults' => [
4016
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController',
4012
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController',
4017
                                        'action' => 'reportall'
4013
                                        'action' => 'reportall'
4018
                                    ]
4014
                                    ]
4019
                                ]
4015
                                ]
4020
                            ],
4016
                            ],
4021
                             
4017
 
4022
                            'matriz' => [
4018
                            'matriz' => [
4023
                                'type' => Literal::class,
4019
                                'type' => Literal::class,
4024
                                'options' => [
4020
                                'options' => [
4025
                                    'route' => '/matriz',
4021
                                    'route' => '/matriz',
4026
                                    'defaults' => [
4022
                                    'defaults' => [
Línea 4039... Línea 4035...
4039
                                    'defaults' => [
4035
                                    'defaults' => [
4040
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsGoalsController',
4036
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsGoalsController',
4041
                                        'action' => 'index'
4037
                                        'action' => 'index'
4042
                                    ]
4038
                                    ]
4043
                                ],
4039
                                ],
4044
                            
4040
 
4045
                                'may_terminate' => true,
4041
                                'may_terminate' => true,
4046
                                'child_routes' => [
4042
                                'child_routes' => [
4047
                                    'add' => [
4043
                                    'add' => [
4048
                                        'type' => Literal::class,
4044
                                        'type' => Literal::class,
4049
                                        'options' => [
4045
                                        'options' => [
Línea 4090... Línea 4086...
4090
                                            'defaults' => [
4086
                                            'defaults' => [
4091
                                                'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController',
4087
                                                'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController',
4092
                                                'action' => 'index'
4088
                                                'action' => 'index'
4093
                                            ]
4089
                                            ]
4094
                                        ],
4090
                                        ],
4095
                                    
4091
 
4096
                                        'may_terminate' => true,
4092
                                        'may_terminate' => true,
4097
                                        'child_routes' => [
4093
                                        'child_routes' => [
4098
                                            'add' => [
4094
                                            'add' => [
4099
                                                'type' => Literal::class,
4095
                                                'type' => Literal::class,
4100
                                                'options' => [
4096
                                                'options' => [
Línea 4142... Línea 4138...
4142
                                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController',
4138
                                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController',
4143
                                                        'action' => 'view'
4139
                                                        'action' => 'view'
4144
                                                    ]
4140
                                                    ]
4145
                                                ]
4141
                                                ]
4146
                                            ],
4142
                                            ],
4147
                                    ]
4143
                                        ]
4148
                                ],
4144
                                    ],
4149
                            ]
4145
                                ]
4150
                        ],
4146
                            ],
4151
                        ]
4147
                        ]
4152
                    ]
4148
                    ]
4153
                    
4149
 
4154
                ]
4150
                ]
4155
            ],
4151
            ],
4156
            
4152
 
4157
            
4153
 
4158
            'discovery-contacts' => [
4154
            'discovery-contacts' => [
4159
                'type' => Literal::class,
4155
                'type' => Literal::class,
4160
                'options' => [
4156
                'options' => [
4161
                    'route' => '/discovery-contacts',
4157
                    'route' => '/discovery-contacts',
4162
                    'defaults' => [
4158
                    'defaults' => [
Línea 4270... Línea 4266...
4270
                                        'controller' => '\LeadersLinked\Controller\DiscoveryContactInteractionTypeController',
4266
                                        'controller' => '\LeadersLinked\Controller\DiscoveryContactInteractionTypeController',
4271
                                        'action' => 'delete'
4267
                                        'action' => 'delete'
4272
                                    ]
4268
                                    ]
4273
                                ]
4269
                                ]
4274
                            ],
4270
                            ],
4275
                
-
 
Línea -... Línea 4271...
-
 
4271
 
4276
 
4272
 
4277
                            
4273
 
4278
                        ]
4274
                        ]
4279
                    ],
4275
                    ],
4280
                    'interactions' => [
4276
                    'interactions' => [
4281
                        'type' => Segment::class,
4277
                        'type' => Segment::class,
Línea 4312... Línea 4308...
4312
                                        'controller' => '\LeadersLinked\Controller\DiscoveryContactInteractionController',
4308
                                        'controller' => '\LeadersLinked\Controller\DiscoveryContactInteractionController',
4313
                                        'action' => 'delete'
4309
                                        'action' => 'delete'
4314
                                    ]
4310
                                    ]
4315
                                ]
4311
                                ]
4316
                            ],
4312
                            ],
4317
                            
4313
 
4318
                            
4314
 
4319
                            
4315
 
4320
                        ]
4316
                        ]
4321
                    ],
4317
                    ],
4322
                    'logs' => [
4318
                    'logs' => [
4323
                        'type' => Segment::class,
4319
                        'type' => Segment::class,
4324
                        'options' => [
4320
                        'options' => [
Línea 4330... Línea 4326...
4330
                                'controller' => '\LeadersLinked\Controller\DiscoveryContactLogController',
4326
                                'controller' => '\LeadersLinked\Controller\DiscoveryContactLogController',
4331
                                'action' => 'index'
4327
                                'action' => 'index'
4332
                            ]
4328
                            ]
4333
                        ],
4329
                        ],
4334
                        'may_terminate' => true,
4330
                        'may_terminate' => true,
4335
                        'child_routes' => [
4331
                        'child_routes' => []
4336
                        ]
-
 
4337
                    ],
4332
                    ],
4338
                    
4333
 
4339
                ]
4334
                ]
4340
            ],
4335
            ],
4341
            
-
 
Línea -... Línea 4336...
-
 
4336
 
4342
 
4337
 
4343
            
4338
 
4344
            'development-and-training' => [
4339
            'development-and-training' => [
4345
                'type' => Literal::class,
4340
                'type' => Literal::class,
4346
                'options' => [
4341
                'options' => [
4347
                    'route' => '/development-and-training',
4342
                    'route' => '/development-and-training',
4348
                    'defaults' => [
4343
                    'defaults' => [
4349
                        'controller' => '\LeadersLinked\Controller\UnknownController',
4344
                        'controller' => '\LeadersLinked\Controller\UnknownController',
4350
                        'action' => 'index'
4345
                        'action' => 'index'
4351
                    ]
4346
                    ]
4352
                ],
4347
                ],
4353
                'may_terminate' => true,
4348
                'may_terminate' => true,
4354
                'child_routes' => [
-
 
4355
                    
-
 
4356
                ]
4349
                'child_routes' => []
Línea 4357... Línea 4350...
4357
            ],
4350
            ],
4358
 
4351
 
4359
            
4352
 
4360
            'recruitment-and-selection' => [
4353
            'recruitment-and-selection' => [
4361
                'type' => Literal::class,
4354
                'type' => Literal::class,
4362
                'options' => [
4355
                'options' => [
Línea 4570... Línea 4563...
4570
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionFileController',
4563
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionFileController',
4571
                                                'action' => 'view'
4564
                                                'action' => 'view'
4572
                                            ]
4565
                                            ]
4573
                                        ]
4566
                                        ]
4574
                                    ],
4567
                                    ],
4575
                                ]    
4568
                                ]
4576
                            ],
4569
                            ],
4577
                            'interviews' => [
4570
                            'interviews' => [
4578
                                'type' => Segment::class,
4571
                                'type' => Segment::class,
4579
                                'options' => [
4572
                                'options' => [
4580
                                    'route' => '/interviews/vacancy/:vacancy_id/application/:application_id',
4573
                                    'route' => '/interviews/vacancy/:vacancy_id/application/:application_id',
Línea 4639... Línea 4632...
4639
                                        ]
4632
                                        ]
4640
                                    ],
4633
                                    ],
4641
                                ]
4634
                                ]
4642
                            ],
4635
                            ],
4643
                        ]
4636
                        ]
4644
                        
-
 
Línea -... Línea 4637...
-
 
4637
 
4645
 
4638
 
4646
                     ],   
4639
                    ],
4647
                    /*
4640
                    /*
4648
                    'candidates' => [
4641
                    'candidates' => [
4649
                        'type' => Segment::class,
4642
                        'type' => Segment::class,
4650
                        'options' => [
4643
                        'options' => [
Línea 4872... Línea 4865...
4872
                                        'action' => 'type',
4865
                                        'action' => 'type',
4873
                                    ],
4866
                                    ],
4874
                                ],
4867
                                ],
4875
                            ],
4868
                            ],
4876
                        ],
4869
                        ],
4877
                    ], */              
4870
                    ], */
4878
                ],
4871
                ],
4879
            ],
4872
            ],
4880
            
4873
 
4881
            'induction' => [
4874
            'induction' => [
4882
                'type' => Literal::class,
4875
                'type' => Literal::class,
4883
                'options' => [
4876
                'options' => [
4884
                    'route' => '/induction',
4877
                    'route' => '/induction',
4885
                    'defaults' => [
4878
                    'defaults' => [
4886
                        'controller' => '\LeadersLinked\Controller\UnknownController',
4879
                        'controller' => '\LeadersLinked\Controller\UnknownController',
4887
                        'action' => 'index'
4880
                        'action' => 'index'
4888
                    ]
4881
                    ]
4889
                ],
4882
                ],
4890
                'may_terminate' => true,
4883
                'may_terminate' => true,
4891
                'child_routes' => [
4884
                'child_routes' => []
4892
                ]
-
 
4893
            ],
4885
            ],
4894
            
4886
 
4895
            'organizational-climate' => [
4887
            'organizational-climate' => [
4896
                'type' => Literal::class,
4888
                'type' => Literal::class,
4897
                'options' => [
4889
                'options' => [
4898
                    'route' => '/organizational-climate',
4890
                    'route' => '/organizational-climate',
4899
                    'defaults' => [
4891
                    'defaults' => [
Línea 5089... Línea 5081...
5089
                            ],
5081
                            ],
5090
                        ],
5082
                        ],
5091
                    ],
5083
                    ],
5092
                ],
5084
                ],
5093
            ],
5085
            ],
5094
            
5086
 
5095
            'culture' => [
5087
            'culture' => [
5096
                'type' => Literal::class,
5088
                'type' => Literal::class,
5097
                'options' => [
5089
                'options' => [
5098
                    'route' => '/culture',
5090
                    'route' => '/culture',
5099
                    'defaults' => [
5091
                    'defaults' => [
5100
                        'controller' => '\LeadersLinked\Controller\UnknownController',
5092
                        'controller' => '\LeadersLinked\Controller\UnknownController',
5101
                        'action' => 'index'
5093
                        'action' => 'index'
5102
                    ]
5094
                    ]
5103
                ],
5095
                ],
5104
                'may_terminate' => true,
5096
                'may_terminate' => true,
5105
                'child_routes' => [
5097
                'child_routes' => []
5106
                ]
-
 
5107
            ],
5098
            ],
5108
            'inmail' => [
5099
            'inmail' => [
5109
                'type' => Literal::class,
5100
                'type' => Literal::class,
5110
                'options' => [
5101
                'options' => [
5111
                    'route' => '/inmail',
5102
                    'route' => '/inmail',
5112
                   
5103
 
5113
                    'defaults' => [
5104
                    'defaults' => [
5114
                        'controller' => '\LeadersLinked\Controller\InMailController',
5105
                        'controller' => '\LeadersLinked\Controller\InMailController',
5115
                        'action' => 'index'
5106
                        'action' => 'index'
5116
                    ]
5107
                    ]
5117
                ],
5108
                ],
Línea 5183... Línea 5174...
5183
                        'type' => Segment::class,
5174
                        'type' => Segment::class,
5184
                        'options' => [
5175
                        'options' => [
5185
                            'route' => '/company[/id/:id][/type/:type]',
5176
                            'route' => '/company[/id/:id][/type/:type]',
5186
                            'constraints' => [
5177
                            'constraints' => [
5187
                                'id' => '[A-Za-z0-9\-]+\=*',
5178
                                'id' => '[A-Za-z0-9\-]+\=*',
5188
                                'type'=>'company',
5179
                                'type' => 'company',
5189
                            ],
5180
                            ],
5190
                            'defaults' => [
5181
                            'defaults' => [
5191
                                'controller' => '\LeadersLinked\Controller\InMailController',
5182
                                'controller' => '\LeadersLinked\Controller\InMailController',
5192
                                'action' => 'view'
5183
                                'action' => 'view'
5193
                            ]
5184
                            ]
Línea 5220... Línea 5211...
5220
                                    ],
5211
                                    ],
5221
                                ],
5212
                                ],
5222
                            ],
5213
                            ],
5223
                        ]
5214
                        ]
5224
                    ],
5215
                    ],
5225
                    
5216
 
5226
                ],
5217
                ],
5227
            ],
5218
            ],
5228
           
5219
 
5229
            
5220
 
5230
            'communication' => [
5221
            'communication' => [
5231
                'type' => Literal::class,
5222
                'type' => Literal::class,
5232
                'options' => [
5223
                'options' => [
5233
                    'route' => '/communication',
5224
                    'route' => '/communication',
5234
                    'defaults' => [
5225
                    'defaults' => [
Línea 5240... Línea 5231...
5240
                'child_routes' => [
5231
                'child_routes' => [
5241
                    'inbox' => [
5232
                    'inbox' => [
5242
                        'type' => Literal::class,
5233
                        'type' => Literal::class,
5243
                        'options' => [
5234
                        'options' => [
5244
                            'route' => '/inbox',
5235
                            'route' => '/inbox',
5245
                           
5236
 
5246
                            'defaults' => [
5237
                            'defaults' => [
5247
                                'controller' => '\LeadersLinked\Controller\CommunicationInboxController',
5238
                                'controller' => '\LeadersLinked\Controller\CommunicationInboxController',
5248
                                'action' => 'index'
5239
                                'action' => 'index'
5249
                            ]
5240
                            ]
5250
                        ],
5241
                        ],
Línea 5310... Línea 5301...
5310
                                            ],
5301
                                            ],
5311
                                        ],
5302
                                        ],
5312
                                    ],
5303
                                    ],
5313
                                ]
5304
                                ]
5314
                            ],
5305
                            ],
5315
                            
5306
 
5316
                        ],
5307
                        ],
5317
                    ],
5308
                    ],
5318
                   
5309
 
5319
                ]
5310
                ]
5320
            ],
5311
            ],
5321
            
5312
 
5322
            'career-development' => [
5313
            'career-development' => [
5323
                'type' => Literal::class,
5314
                'type' => Literal::class,
5324
                'options' => [
5315
                'options' => [
5325
                    'route' => '/career-development',
5316
                    'route' => '/career-development',
5326
                    'defaults' => [
5317
                    'defaults' => [
5327
                        'controller' => '\LeadersLinked\Controller\UnknownController',
5318
                        'controller' => '\LeadersLinked\Controller\UnknownController',
5328
                        'action' => 'index'
5319
                        'action' => 'index'
5329
                    ]
5320
                    ]
5330
                ],
5321
                ],
5331
                'may_terminate' => true,
5322
                'may_terminate' => true,
5332
                'child_routes' => [
5323
                'child_routes' => []
5333
                ]
-
 
5334
            ],
5324
            ],
5335
            
5325
 
5336
            'survey' => [
5326
            'survey' => [
5337
                'type' => Literal::class,
5327
                'type' => Literal::class,
5338
                'options' => [
5328
                'options' => [
5339
                    'route' => '/survey',
5329
                    'route' => '/survey',
5340
                    'defaults' => [
5330
                    'defaults' => [
Línea 5527... Línea 5517...
5527
                            ],
5517
                            ],
5528
                        ],
5518
                        ],
5529
                    ],
5519
                    ],
5530
                ]
5520
                ]
5531
            ],
5521
            ],
5532
            
5522
 
5533
            'building-my-future' => [
5523
            'building-my-future' => [
5534
                'type' => Literal::class,
5524
                'type' => Literal::class,
5535
                'options' => [
5525
                'options' => [
5536
                    'route' => '/building-my-future',
5526
                    'route' => '/building-my-future',
5537
                    'defaults' => [
5527
                    'defaults' => [
5538
                        'controller' => '\LeadersLinked\Controller\UnknownController',
5528
                        'controller' => '\LeadersLinked\Controller\UnknownController',
5539
                        'action' => 'index'
5529
                        'action' => 'index'
5540
                    ]
5530
                    ]
5541
                ],
5531
                ],
5542
                'may_terminate' => true,
5532
                'may_terminate' => true,
5543
                'child_routes' => [
5533
                'child_routes' => []
5544
                ]
-
 
5545
            ],
5534
            ],
Línea 5546... Línea 5535...
5546
 
5535
 
5547
            'csrf' => [
5536
            'csrf' => [
5548
                'type' => Literal::class,
5537
                'type' => Literal::class,
Línea 5770... Línea 5759...
5770
                            ],
5759
                            ],
5771
                        ],
5760
                        ],
5772
                    ],
5761
                    ],
5773
                ],
5762
                ],
5774
            ],
5763
            ],
5775
            
5764
 
5776
            'high-performance-teams' => [
5765
            'high-performance-teams' => [
5777
                'type' => Literal::class,
5766
                'type' => Literal::class,
5778
                'options' => [
5767
                'options' => [
5779
                    'route' => '/high-performance-teams',
5768
                    'route' => '/high-performance-teams',
5780
                    'defaults' => [
5769
                    'defaults' => [
Línea 5790... Línea 5779...
5790
                            'route' => '/groups',
5779
                            'route' => '/groups',
5791
                            'defaults' => [
5780
                            'defaults' => [
5792
                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsController',
5781
                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsController',
5793
                                'action' => 'index'
5782
                                'action' => 'index'
5794
                            ]
5783
                            ]
5795
                        ],'may_terminate' => true,
5784
                        ], 'may_terminate' => true,
5796
                        'child_routes' => [
5785
                        'child_routes' => [
Línea 5797... Línea 5786...
5797
 
5786
 
5798
                            'add' => [
5787
                            'add' => [
5799
                                'type' => Literal::class,
5788
                                'type' => Literal::class,
Línea 5828... Línea 5817...
5828
                                    'defaults' => [
5817
                                    'defaults' => [
5829
                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsController',
5818
                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsController',
5830
                                        'action' => 'delete'
5819
                                        'action' => 'delete'
5831
                                    ]
5820
                                    ]
5832
                                ]
5821
                                ]
5833
                            ],'view' => [
5822
                            ], 'view' => [
5834
                                'type' => Segment::class,
5823
                                'type' => Segment::class,
5835
                                'options' => [
5824
                                'options' => [
5836
                                    'route' => '/view/:group_id',
5825
                                    'route' => '/view/:group_id',
5837
                                    'constraints' => [
5826
                                    'constraints' => [
5838
                                        'group_id' => '[A-Za-z0-9\-]+\=*',
5827
                                        'group_id' => '[A-Za-z0-9\-]+\=*',
Línea 5840... Línea 5829...
5840
                                    'defaults' => [
5829
                                    'defaults' => [
5841
                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewController',
5830
                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewController',
5842
                                        'action' => 'index'
5831
                                        'action' => 'index'
5843
                                    ]
5832
                                    ]
5844
                                ],
5833
                                ],
5845
                                    'may_terminate' => true,
5834
                                'may_terminate' => true,
5846
                                    'child_routes' => [
5835
                                'child_routes' => [
5847
                                        'objectives' => [
5836
                                    'objectives' => [
5848
                                            'type' => Literal::class,
5837
                                        'type' => Literal::class,
5849
                                            'options' => [
5838
                                        'options' => [
5850
                                                'route' => '/objectives',
5839
                                            'route' => '/objectives',
5851
                                                'defaults' => [
5840
                                            'defaults' => [
5852
                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController',
5841
                                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController',
5853
                                                    'action' => 'index'
5842
                                                'action' => 'index'
-
 
5843
                                            ]
-
 
5844
                                        ],
-
 
5845
 
-
 
5846
                                        'may_terminate' => true,
-
 
5847
                                        'child_routes' => [
-
 
5848
 
-
 
5849
                                            'add' => [
-
 
5850
                                                'type' => Literal::class,
-
 
5851
                                                'options' => [
-
 
5852
                                                    'route' => '/add',
-
 
5853
                                                    'defaults' => [
-
 
5854
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController',
-
 
5855
                                                        'action' => 'add'
-
 
5856
                                                    ]
5854
                                                ]
5857
                                                ]
5855
                                            ],
5858
                                            ],
5856
                                            
-
 
5857
                                            'may_terminate' => true,
5859
                                            'edit' => [
5858
                                            'child_routes' => [
5860
                                                'type' => Segment::class,
5859
                    
-
 
5860
                                                'add' => [
5861
                                                'options' => [
5861
                                                    'type' => Literal::class,
5862
                                                    'route' => '/edit/:id',
5862
                                                    'options' => [
5863
                                                    'constraints' => [
5863
                                                        'route' => '/add',
5864
                                                        'id' => '[A-Za-z0-9\-]+\=*'
-
 
5865
                                                    ],
5864
                                                        'defaults' => [
5866
                                                    'defaults' => [
5865
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController',
5867
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController',
5866
                                                            'action' => 'add'
5868
                                                        'action' => 'edit'
5867
                                                        ]
-
 
5868
                                                    ]
5869
                                                    ]
5869
                                                ],
5870
                                                ]
-
 
5871
                                            ],
5870
                                                'edit' => [
5872
                                            'delete' => [
5871
                                                    'type' => Segment::class,
5873
                                                'type' => Segment::class,
5872
                                                    'options' => [
5874
                                                'options' => [
5873
                                                        'route' => '/edit/:id',
5875
                                                    'route' => '/delete/:id',
5874
                                                        'constraints' => [
5876
                                                    'constraints' => [
5875
                                                            'id' => '[A-Za-z0-9\-]+\=*'
5877
                                                        'id' => '[A-Za-z0-9\-]+\=*'
5876
                                                        ],
5878
                                                    ],
5877
                                                        'defaults' => [
5879
                                                    'defaults' => [
5878
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController',
5880
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController',
5879
                                                            'action' => 'edit'
5881
                                                        'action' => 'delete'
5880
                                                        ]
-
 
5881
                                                    ]
5882
                                                    ]
5882
                                                ],
5883
                                                ]
-
 
5884
                                            ],
5883
                                                'delete' => [
5885
                                            'report' => [
5884
                                                    'type' => Segment::class,
5886
                                                'type' => Segment::class,
5885
                                                    'options' => [
5887
                                                'options' => [
5886
                                                        'route' => '/delete/:id',
5888
                                                    'route' => '/report/:id',
5887
                                                        'constraints' => [
5889
                                                    'constraints' => [
5888
                                                            'id' => '[A-Za-z0-9\-]+\=*'
5890
                                                        'id' => '[A-Za-z0-9\-]+\=*'
5889
                                                        ],
5891
                                                    ],
5890
                                                        'defaults' => [
5892
                                                    'defaults' => [
5891
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController',
5893
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController',
5892
                                                            'action' => 'delete'
5894
                                                        'action' => 'report'
5893
                                                        ]
-
 
5894
                                                    ]
5895
                                                    ]
5895
                                                ],
5896
                                                ]
5896
                                                'report' => [
5897
                                            ],
5897
                                                    'type' => Segment::class,
-
 
5898
                                                    'options' => [
5898
                                            'reportall' => [
5899
                                                        'route' => '/report/:id',
5899
                                                'type' => Literal::class,
5900
                                                        'constraints' => [
5900
                                                'options' => [
5901
                                                            'id' => '[A-Za-z0-9\-]+\=*'
-
 
5902
                                                        ],
5901
                                                    'route' => '/reportall',
5903
                                                        'defaults' => [
5902
                                                    'defaults' => [
5904
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController',
5903
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController',
5905
                                                            'action' => 'report'
5904
                                                        'action' => 'reportall'
5906
                                                        ]
-
 
5907
                                                    ]
5905
                                                    ]
5908
                                                ], 
5906
                                                ]
-
 
5907
                                            ],
-
 
5908
 
5909
                                                'reportall' => [
5909
                                            'matriz' => [
5910
                                                    'type' => Literal::class,
5910
                                                'type' => Literal::class,
5911
                                                    'options' => [
5911
                                                'options' => [
5912
                                                        'route' => '/reportall',
5912
                                                    'route' => '/matriz',
5913
                                                        'defaults' => [
5913
                                                    'defaults' => [
5914
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController',
5914
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController',
5915
                                                            'action' => 'reportall'
5915
                                                        'action' => 'matriz'
5916
                                                        ]
-
 
5917
                                                    ]
5916
                                                    ]
5918
                                                ],
5917
                                                ]
5919
                                                 
-
 
-
 
5918
                                            ],
5920
                                                'matriz' => [
5919
                                            'goals' => [
5921
                                                    'type' => Literal::class,
5920
                                                'type' => Segment::class,
5922
                                                    'options' => [
5921
                                                'options' => [
5923
                                                        'route' => '/matriz',
5922
                                                    'route' => '/:objective_id/goals',
5924
                                                        'defaults' => [
5923
                                                    'constraints' => [
5925
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController',
5924
                                                        'objective_id' => '[A-Za-z0-9\-]+\=*'
-
 
5925
                                                    ],
5926
                                                            'action' => 'matriz'
5926
                                                    'defaults' => [
-
 
5927
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewGoalsController',
5927
                                                        ]
5928
                                                        'action' => 'index'
5928
                                                    ]
5929
                                                    ]
5929
                                                ],
5930
                                                ],
-
 
5931
 
5930
                                                'goals' => [
5932
                                                'may_terminate' => true,
5931
                                                    'type' => Segment::class,
5933
                                                'child_routes' => [
5932
                                                    'options' => [
5934
                                                    'add' => [
5933
                                                        'route' => '/:objective_id/goals',
5935
                                                        'type' => Literal::class,
5934
                                                        'constraints' => [
5936
                                                        'options' => [
5935
                                                            'objective_id' => '[A-Za-z0-9\-]+\=*'
-
 
5936
                                                        ],
5937
                                                            'route' => '/add',
5937
                                                        'defaults' => [
5938
                                                            'defaults' => [
5938
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewGoalsController',
5939
                                                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewGoalsController',
5939
                                                            'action' => 'index'
5940
                                                                'action' => 'add'
-
 
5941
                                                            ]
5940
                                                        ]
5942
                                                        ]
5941
                                                    ],
5943
                                                    ],
5942
                                                
-
 
5943
                                                    'may_terminate' => true,
5944
                                                    'edit' => [
5944
                                                    'child_routes' => [
5945
                                                        'type' => Segment::class,
5945
                                                        'add' => [
5946
                                                        'options' => [
5946
                                                            'type' => Literal::class,
5947
                                                            'route' => '/edit/:id',
5947
                                                            'options' => [
5948
                                                            'constraints' => [
5948
                                                                'route' => '/add',
5949
                                                                'id' => '[A-Za-z0-9\-]+\=*'
-
 
5950
                                                            ],
5949
                                                                'defaults' => [
5951
                                                            'defaults' => [
5950
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewGoalsController',
5952
                                                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewGoalsController',
5951
                                                                    'action' => 'add'
5953
                                                                'action' => 'edit'
5952
                                                                ]
-
 
5953
                                                            ]
5954
                                                            ]
5954
                                                        ],
5955
                                                        ]
-
 
5956
                                                    ],
5955
                                                        'edit' => [
5957
                                                    'delete' => [
5956
                                                            'type' => Segment::class,
5958
                                                        'type' => Segment::class,
5957
                                                            'options' => [
5959
                                                        'options' => [
5958
                                                                'route' => '/edit/:id',
5960
                                                            'route' => '/delete/:id',
5959
                                                                'constraints' => [
5961
                                                            'constraints' => [
5960
                                                                    'id' => '[A-Za-z0-9\-]+\=*'
5962
                                                                'id' => '[A-Za-z0-9\-]+\=*'
5961
                                                                ],
5963
                                                            ],
5962
                                                                'defaults' => [
5964
                                                            'defaults' => [
5963
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewGoalsController',
5965
                                                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewGoalsController',
5964
                                                                    'action' => 'edit'
5966
                                                                'action' => 'delete'
5965
                                                                ]
-
 
5966
                                                            ]
5967
                                                            ]
5967
                                                        ],
5968
                                                        ]
-
 
5969
                                                    ],
5968
                                                        'delete' => [
5970
                                                    'task' => [
5969
                                                            'type' => Segment::class,
5971
                                                        'type' => Segment::class,
5970
                                                            'options' => [
5972
                                                        'options' => [
5971
                                                                'route' => '/delete/:id',
5973
                                                            'route' => '/:goal_id/task',
5972
                                                                'constraints' => [
5974
                                                            'constraints' => [
5973
                                                                    'id' => '[A-Za-z0-9\-]+\=*'
5975
                                                                'goal_id' => '[A-Za-z0-9\-]+\=*'
5974
                                                                ],
5976
                                                            ],
5975
                                                                'defaults' => [
5977
                                                            'defaults' => [
5976
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewGoalsController',
5978
                                                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController',
5977
                                                                    'action' => 'delete'
5979
                                                                'action' => 'index'
5978
                                                                ]
-
 
5979
                                                            ]
5980
                                                            ]
5980
                                                        ],
5981
                                                        ],
-
 
5982
 
5981
                                                        'task' => [
5983
                                                        'may_terminate' => true,
5982
                                                            'type' => Segment::class,
5984
                                                        'child_routes' => [
5983
                                                            'options' => [
5985
                                                            'add' => [
5984
                                                                'route' => '/:goal_id/task',
5986
                                                                'type' => Literal::class,
5985
                                                                'constraints' => [
5987
                                                                'options' => [
5986
                                                                    'goal_id' => '[A-Za-z0-9\-]+\=*'
5988
                                                                    'route' => '/add',
5987
                                                                ],
-
 
5988
                                                                'defaults' => [
5989
                                                                    'defaults' => [
5989
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController',
5990
                                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController',
5990
                                                                    'action' => 'index'
5991
                                                                        'action' => 'add'
-
 
5992
                                                                    ]
5991
                                                                ]
5993
                                                                ]
5992
                                                            ],
5994
                                                            ],
5993
                                                        
-
 
5994
                                                            'may_terminate' => true,
-
 
5995
                                                            'child_routes' => [
-
 
5996
                                                                'add' => [
-
 
5997
                                                                    'type' => Literal::class,
-
 
5998
                                                                    'options' => [
-
 
5999
                                                                        'route' => '/add',
-
 
6000
                                                                        'defaults' => [
-
 
6001
                                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController',
-
 
6002
                                                                            'action' => 'add'
-
 
6003
                                                                        ]
-
 
6004
                                                                    ]
-
 
6005
                                                                ],
-
 
6006
                                                                'edit' => [
5995
                                                            'edit' => [
6007
                                                                    'type' => Segment::class,
5996
                                                                'type' => Segment::class,
6008
                                                                    'options' => [
5997
                                                                'options' => [
6009
                                                                        'route' => '/edit/:id',
5998
                                                                    'route' => '/edit/:id',
6010
                                                                        'constraints' => [
5999
                                                                    'constraints' => [
6011
                                                                            'id' => '[A-Za-z0-9\-]+\=*'
6000
                                                                        'id' => '[A-Za-z0-9\-]+\=*'
6012
                                                                        ],
6001
                                                                    ],
6013
                                                                        'defaults' => [
6002
                                                                    'defaults' => [
6014
                                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController',
6003
                                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController',
6015
                                                                            'action' => 'edit'
6004
                                                                        'action' => 'edit'
6016
                                                                        ]
-
 
6017
                                                                    ]
6005
                                                                    ]
6018
                                                                ],
6006
                                                                ]
-
 
6007
                                                            ],
6019
                                                                'delete' => [
6008
                                                            'delete' => [
6020
                                                                    'type' => Segment::class,
6009
                                                                'type' => Segment::class,
6021
                                                                    'options' => [
6010
                                                                'options' => [
6022
                                                                        'route' => '/delete/:id',
6011
                                                                    'route' => '/delete/:id',
6023
                                                                        'constraints' => [
6012
                                                                    'constraints' => [
6024
                                                                            'id' => '[A-Za-z0-9\-]+\=*'
6013
                                                                        'id' => '[A-Za-z0-9\-]+\=*'
6025
                                                                        ],
6014
                                                                    ],
6026
                                                                        'defaults' => [
6015
                                                                    'defaults' => [
6027
                                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController',
6016
                                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController',
6028
                                                                            'action' => 'delete'
6017
                                                                        'action' => 'delete'
6029
                                                                        ]
-
 
6030
                                                                    ]
6018
                                                                    ]
6031
                                                                ],
6019
                                                                ]
-
 
6020
                                                            ],
6032
                                                                'view' => [
6021
                                                            'view' => [
6033
                                                                    'type' => Segment::class,
6022
                                                                'type' => Segment::class,
6034
                                                                    'options' => [
6023
                                                                'options' => [
6035
                                                                        'route' => '/view/:id',
6024
                                                                    'route' => '/view/:id',
6036
                                                                        'constraints' => [
6025
                                                                    'constraints' => [
6037
                                                                            'id' => '[A-Za-z0-9\-]+\=*'
6026
                                                                        'id' => '[A-Za-z0-9\-]+\=*'
6038
                                                                        ],
6027
                                                                    ],
6039
                                                                        'defaults' => [
6028
                                                                    'defaults' => [
6040
                                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController',
6029
                                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController',
6041
                                                                            'action' => 'view'
6030
                                                                        'action' => 'view'
6042
                                                                        ]
-
 
6043
                                                                    ]
6031
                                                                    ]
6044
                                                                ],
6032
                                                                ]
-
 
6033
                                                            ],
6045
                                                        ]
6034
                                                        ]
6046
                                                    ],
6035
                                                    ],
6047
                                                ]
6036
                                                ]
6048
                                            ],
6037
                                            ],
6049
                                            ]
-
 
6050
                                        ]
6038
                                        ]
6051
                                        ,'feeds' => [
6039
                                    ], 'feeds' => [
6052
                                            'type' => Literal::class,
6040
                                        'type' => Literal::class,
6053
                                            'options' => [
6041
                                        'options' => [
6054
                                                'route' => '/feeds',
6042
                                            'route' => '/feeds',
6055
                                               
6043
 
6056
                                            ],
6044
                                        ],
6057
                                            'may_terminate' => true,
6045
                                        'may_terminate' => true,
6058
                                            'child_routes' => [
6046
                                        'child_routes' => [
6059
                                                'timeline' => [
6047
                                            'timeline' => [
6060
                                                    'type' => Segment::class,
6048
                                                'type' => Segment::class,
6061
                                                    'options' => [
6049
                                                'options' => [
6062
                                                        'route' => '/timeline[/urgent/:urgent][/topic_id/:topic_id]',
6050
                                                    'route' => '/timeline[/urgent/:urgent][/topic_id/:topic_id]',
6063
                                                        'constraints' => [
6051
                                                    'constraints' => [
6064
                                                            'hptg_id'=>'[A-Za-z0-9\-]+\=*',
6052
                                                        'hptg_id' => '[A-Za-z0-9\-]+\=*',
6065
                                                            'topic_id' => '[A-Za-z0-9\-]+\=*',
6053
                                                        'topic_id' => '[A-Za-z0-9\-]+\=*',
6066
                                                            'urgent' => 'u',
6054
                                                        'urgent' => 'u',
6067
                                                        ],
6055
                                                    ],
6068
                                                        'defaults' => [
6056
                                                    'defaults' => [
6069
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController',
6057
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController',
6070
                                                            'action' => 'timeline'
6058
                                                        'action' => 'timeline'
6071
                                                        ]
-
 
6072
                                                    ]
-
 
6073
                                                ],
-
 
6074
                                                'onefeed' => [
-
 
6075
                                                    'type' => Segment::class,
-
 
6076
                                                    'options' => [
-
 
6077
                                                        'route' => '/onefeed[/:feed_id][/:topic_id]',
-
 
6078
                                                        'constraints' => [
-
 
6079
                                                            'group_id' => '[A-Za-z0-9\-]+\=*',
-
 
6080
                                                            'feed_id' => '[A-Za-z0-9\-]+\=*',
-
 
6081
                                                            'topic_id' => '[A-Za-z0-9\-]+\=*',
-
 
6082
                                                        ],
-
 
6083
                                                        'defaults' => [
-
 
6084
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController',
-
 
6085
                                                            'action' => 'oneFeed'
-
 
6086
                                                        ]
-
 
6087
                                                    ]
6059
                                                    ]
6088
                                                ],
6060
                                                ]
-
 
6061
                                            ],
6089
                                                'delete' => [
6062
                                            'onefeed' => [
6090
                                                    'type' => Segment::class,
6063
                                                'type' => Segment::class,
6091
                                                    'options' => [
6064
                                                'options' => [
6092
                                                        'route' => '/delete/:id',
6065
                                                    'route' => '/onefeed[/:feed_id][/:topic_id]',
6093
                                                        'constraints' => [
6066
                                                    'constraints' => [
-
 
6067
                                                        'group_id' => '[A-Za-z0-9\-]+\=*',
6094
                                                            'id' => '[A-Za-z0-9\-]+\=*',
6068
                                                        'feed_id' => '[A-Za-z0-9\-]+\=*',
-
 
6069
                                                        'topic_id' => '[A-Za-z0-9\-]+\=*',
6095
                                                        ],
6070
                                                    ],
6096
                                                        'defaults' => [
6071
                                                    'defaults' => [
6097
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController',
6072
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController',
6098
                                                            'action' => 'delete'
6073
                                                        'action' => 'oneFeed'
6099
                                                        ],
-
 
6100
                                                    ]
6074
                                                    ]
6101
                                                ],
6075
                                                ]
6102
                                                'comments' => [
6076
                                            ],
6103
                                                    'type' => Segment::class,
-
 
6104
                                                    'options' => [
6077
                                            'delete' => [
6105
                                                        'route' => '/comments/:id',
6078
                                                'type' => Segment::class,
6106
                                                        'constraints' => [
6079
                                                'options' => [
6107
                                                            'id' => '[A-Za-z0-9\-]+\=*',
-
 
6108
                                                        ],
6080
                                                    'route' => '/delete/:id',
6109
                                                        'defaults' => [
6081
                                                    'constraints' => [
6110
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController',
-
 
6111
                                                            'action' => 'comment'
6082
                                                        'id' => '[A-Za-z0-9\-]+\=*',
6112
                                                        ],
-
 
6113
                                                    ],
6083
                                                    ],
-
 
6084
                                                    'defaults' => [
-
 
6085
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController',
-
 
6086
                                                        'action' => 'delete'
-
 
6087
                                                    ],
-
 
6088
                                                ]
-
 
6089
                                            ],
-
 
6090
                                            'comments' => [
-
 
6091
                                                'type' => Segment::class,
-
 
6092
                                                'options' => [
-
 
6093
                                                    'route' => '/comments/:id',
-
 
6094
                                                    'constraints' => [
-
 
6095
                                                        'id' => '[A-Za-z0-9\-]+\=*',
-
 
6096
                                                    ],
-
 
6097
                                                    'defaults' => [
-
 
6098
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController',
-
 
6099
                                                        'action' => 'comment'
-
 
6100
                                                    ],
-
 
6101
                                                ],
6114
                                                    'may_terminate' => true,
6102
                                                'may_terminate' => true,
6115
                                                    'child_routes' => [
6103
                                                'child_routes' => [
6116
                                                        'delete' => [
6104
                                                    'delete' => [
6117
                                                            'type' => Segment::class,
6105
                                                        'type' => Segment::class,
6118
                                                            'options' => [
6106
                                                        'options' => [
6119
                                                                'route' => '/delete/:comment',
6107
                                                            'route' => '/delete/:comment',
6120
                                                                'constraints' => [
6108
                                                            'constraints' => [
6121
                                                                    'comment' => '[A-Za-z0-9\-]+\=*',
6109
                                                                'comment' => '[A-Za-z0-9\-]+\=*',
6122
                                                                ],
6110
                                                            ],
6123
                                                                'defaults' => [
6111
                                                            'defaults' => [
6124
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController',
6112
                                                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController',
6125
                                                                    'action' => 'commentDelete'
6113
                                                                'action' => 'commentDelete'
6126
                                                                ]
-
 
6127
                                                            ]
6114
                                                            ]
6128
                                                        ],
6115
                                                        ]
-
 
6116
                                                    ],
6129
                            
6117
 
6130
                                                        'answer' => [
6118
                                                    'answer' => [
6131
                                                            'type' => Segment::class,
6119
                                                        'type' => Segment::class,
6132
                                                            'options' => [
6120
                                                        'options' => [
6133
                                                                'route' => '/answer/:comment',
6121
                                                            'route' => '/answer/:comment',
6134
                                                                'constraints' => [
6122
                                                            'constraints' => [
6135
                                                                    'comment' => '[A-Za-z0-9\-]+\=*',
6123
                                                                'comment' => '[A-Za-z0-9\-]+\=*',
6136
                                                                ],
6124
                                                            ],
6137
                                                                'defaults' => [
6125
                                                            'defaults' => [
6138
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController',
6126
                                                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController',
6139
                                                                    'action' => 'answer'
6127
                                                                'action' => 'answer'
6140
                                                                ]
-
 
6141
                                                            ]
6128
                                                            ]
6142
                                                        ],
-
 
6143
                                                    ]
-
 
6144
                                                ],
-
 
6145
                                                'add' => [
-
 
6146
                                                    'type' => Segment::class,
-
 
6147
                                                    'options' => [
-
 
6148
                                                        'route' => '/add[/group/:group_id][/encoding/:encoding][/topic_id/:topic_id]',
-
 
6149
                                                        'constraints' => [
-
 
6150
                                                            'group_id' => '[A-Za-z0-9\-]+\=*',
-
 
6151
                                                            'topic_id' => '[A-Za-z0-9\-]+\=*',
-
 
6152
                                                            'encoding' => 'base64'
-
 
6153
                                                        ],
-
 
6154
                                                        'defaults' => [
-
 
6155
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController',
-
 
6156
                                                            'action' => 'add'
-
 
6157
                                                        ]
6129
                                                        ]
-
 
6130
                                                    ],
-
 
6131
                                                ]
-
 
6132
                                            ],
-
 
6133
                                            'add' => [
-
 
6134
                                                'type' => Segment::class,
-
 
6135
                                                'options' => [
-
 
6136
                                                    'route' => '/add[/group/:group_id][/encoding/:encoding][/topic_id/:topic_id]',
-
 
6137
                                                    'constraints' => [
-
 
6138
                                                        'group_id' => '[A-Za-z0-9\-]+\=*',
-
 
6139
                                                        'topic_id' => '[A-Za-z0-9\-]+\=*',
-
 
6140
                                                        'encoding' => 'base64'
-
 
6141
                                                    ],
-
 
6142
                                                    'defaults' => [
-
 
6143
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController',
-
 
6144
                                                        'action' => 'add'
6158
                                                    ]
6145
                                                    ]
6159
                                                ],
6146
                                                ]
6160
                                            ],
6147
                                            ],
6161
                                        ],
6148
                                        ],
-
 
6149
                                    ],
6162
                                        'members' => [
6150
                                    'members' => [
6163
                                            'type' => Literal::class,
6151
                                        'type' => Literal::class,
6164
                                            'options' => [
6152
                                        'options' => [
6165
                                                'route' => '/members',
6153
                                            'route' => '/members',
6166
                                                'defaults' => [
6154
                                            'defaults' => [
6167
                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController',
6155
                                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController',
6168
                                                    'action' => 'index'
6156
                                                'action' => 'index'
6169
                                                ]
6157
                                            ]
6170
                                            ],'may_terminate' => true,
6158
                                        ], 'may_terminate' => true,
6171
                                            'child_routes' => [
6159
                                        'child_routes' => [
6172
                                                'invite' => [
6160
                                            'invite' => [
6173
                                                    'type' => Segment::class,
6161
                                                'type' => Segment::class,
6174
                                                    'options' => [
6162
                                                'options' => [
6175
                                                        'route' => '/invite/:user_id',
6163
                                                    'route' => '/invite/:user_id',
6176
                                                        'constraints' => [
6164
                                                    'constraints' => [
6177
                                                            'user_id' => '[A-Za-z0-9\-]+\=*'
6165
                                                        'user_id' => '[A-Za-z0-9\-]+\=*'
6178
                                                        ],
6166
                                                    ],
6179
                                                        'defaults' => [
6167
                                                    'defaults' => [
6180
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController',
6168
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController',
6181
                                                            'action' => 'invite'
6169
                                                        'action' => 'invite'
6182
                                                        ]
-
 
6183
                                                    ]
6170
                                                    ]
6184
                                                ],
6171
                                                ]
-
 
6172
                                            ],
6185
                                                'edit' => [
6173
                                            'edit' => [
6186
                                                    'type' => Segment::class,
6174
                                                'type' => Segment::class,
6187
                                                    'options' => [
6175
                                                'options' => [
6188
                                                        'route' => '/edit/:user_id',
6176
                                                    'route' => '/edit/:user_id',
6189
                                                        'constraints' => [
6177
                                                    'constraints' => [
6190
                                                            'user_id' => '[A-Za-z0-9\-]+\=*'
6178
                                                        'user_id' => '[A-Za-z0-9\-]+\=*'
6191
                                                        ],
6179
                                                    ],
6192
                                                        'defaults' => [
6180
                                                    'defaults' => [
6193
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController',
6181
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController',
6194
                                                            'action' => 'edit'
6182
                                                        'action' => 'edit'
6195
                                                        ]
-
 
6196
                                                    ]
6183
                                                    ]
6197
                                                ],
6184
                                                ]
-
 
6185
                                            ],
6198
                                                'delete' => [
6186
                                            'delete' => [
6199
                                                    'type' => Segment::class,
6187
                                                'type' => Segment::class,
6200
                                                    'options' => [
6188
                                                'options' => [
6201
                                                        'route' => '/delete[/:user_id]',
6189
                                                    'route' => '/delete[/:user_id]',
6202
                                                        'constraints' => [
6190
                                                    'constraints' => [
6203
                                                            'user_id' => '[A-Za-z0-9\-]+\=*'
6191
                                                        'user_id' => '[A-Za-z0-9\-]+\=*'
6204
                                                        ],
6192
                                                    ],
6205
                                                        'defaults' => [
6193
                                                    'defaults' => [
6206
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController',
6194
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController',
6207
                                                            'action' => 'delete'
6195
                                                        'action' => 'delete'
6208
                                                        ]
-
 
6209
                                                    ]
6196
                                                    ]
6210
                                                ],
-
 
6211
                                            ]
-
 
6212
                                        ],
-
 
6213
                                        'urgent' => [
-
 
6214
                                            'type' => Segment::class,
-
 
6215
                                            'options' => [
-
 
6216
                                                'route' => '/urgent[/:urgent]',
-
 
6217
                                                'constraints' => [
-
 
6218
                                                    'urgent' => 'u'
-
 
6219
                                                ],
-
 
6220
                                                'defaults' => [
-
 
6221
                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewController',
-
 
6222
                                                    'action' => 'index'
-
 
6223
                                                ]
6197
                                                ]
-
 
6198
                                            ],
-
 
6199
                                        ]
-
 
6200
                                    ],
-
 
6201
                                    'urgent' => [
-
 
6202
                                        'type' => Segment::class,
-
 
6203
                                        'options' => [
-
 
6204
                                            'route' => '/urgent[/:urgent]',
-
 
6205
                                            'constraints' => [
-
 
6206
                                                'urgent' => 'u'
-
 
6207
                                            ],
-
 
6208
                                            'defaults' => [
-
 
6209
                                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewController',
-
 
6210
                                                'action' => 'index'
6224
                                            ]
6211
                                            ]
6225
                                        ],
6212
                                        ]
-
 
6213
                                    ],
6226
                                        'calendar' => [
6214
                                    'calendar' => [
6227
                                            'type' => Literal::class,
6215
                                        'type' => Literal::class,
6228
                                            'options' => [
6216
                                        'options' => [
6229
                                                'route' => '/calendar',
6217
                                            'route' => '/calendar',
6230
                                                
6218
 
6231
                                                'defaults' => [
6219
                                            'defaults' => [
6232
                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewCalendarController',
6220
                                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewCalendarController',
6233
                                                    'action' => 'index'
6221
                                                'action' => 'index'
6234
                                                ]
6222
                                            ]
6235
                                            ],'may_terminate' => true,
6223
                                        ], 'may_terminate' => true,
6236
                                            'child_routes' => [
6224
                                        'child_routes' => [
6237
                                                'view' => [
6225
                                            'view' => [
6238
                                                    'type' => Segment::class,
6226
                                                'type' => Segment::class,
6239
                                                    'options' => [
6227
                                                'options' => [
6240
                                                        'route' => '/view[/:feed_id]',
6228
                                                    'route' => '/view[/:feed_id]',
6241
                                                        'constraints' => [
6229
                                                    'constraints' => [
6242
                                                            'feed_id' => '[A-Za-z0-9\-]+\=*'
6230
                                                        'feed_id' => '[A-Za-z0-9\-]+\=*'
6243
                                                        ],
6231
                                                    ],
6244
                                                        'defaults' => [
6232
                                                    'defaults' => [
6245
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewCalendarController',
6233
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewCalendarController',
6246
                                                            'action' => 'view'
6234
                                                        'action' => 'view'
6247
                                                        ]
-
 
6248
                                                    ]
6235
                                                    ]
6249
                                                ],
6236
                                                ]
-
 
6237
                                            ],
-
 
6238
                                        ]
-
 
6239
                                    ],
-
 
6240
                                    'foro' => [
-
 
6241
                                        'type' => Literal::class,
-
 
6242
                                        'options' => [
-
 
6243
                                            'route' => '/foro',
-
 
6244
                                            'defaults' => [
-
 
6245
                                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoController',
-
 
6246
                                                'action' => 'index'
6250
                                            ]
6247
                                            ]
6251
                                        ],
6248
                                        ],
-
 
6249
                                        'may_terminate' => true,
-
 
6250
                                        'child_routes' => [
6252
                                        'foro' => [
6251
                                            'view' => [
6253
                                            'type' => Literal::class,
6252
                                                'type' => Literal::class,
6254
                                            'options' => [
6253
                                                'options' => [
6255
                                                'route' => '/foro',
6254
                                                    'route' => '/view',
6256
                                                'defaults' => [
6255
                                                    'defaults' => [
6257
                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoController',
6256
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoController',
6258
                                                    'action' => 'index'
6257
                                                        'action' => 'view'
-
 
6258
                                                    ]
6259
                                                ]
6259
                                                ]
6260
                                            ],
6260
                                            ],
6261
                                            'may_terminate' => true,
-
 
6262
                                            'child_routes' => [
6261
                                            'categories' => [
6263
                                                'view' => [
-
 
6264
                                                    'type' => Literal::class,
6262
                                                'type' => Literal::class,
6265
                                                    'options' => [
6263
                                                'options' => [
6266
                                                        'route' => '/view',
6264
                                                    'route' => '/categories',
6267
                                                        'defaults' => [
6265
                                                    'defaults' => [
6268
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoController',
6266
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController',
6269
                                                            'action' => 'view'
6267
                                                        'action' => 'index'
6270
                                                        ]
-
 
6271
                                                    ]
6268
                                                    ]
6272
                                                ],
6269
                                                ],
-
 
6270
                                                'may_terminate' => true,
6273
                                                'categories' => [
6271
                                                'child_routes' => [
-
 
6272
                                                    'view' => [
6274
                                                    'type' => Literal::class,
6273
                                                        'type' => Literal::class,
6275
                                                    'options' => [
6274
                                                        'options' => [
6276
                                                        'route' => '/categories',
6275
                                                            'route' => '/view',
6277
                                                        'defaults' => [
6276
                                                            'defaults' => [
6278
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController',
6277
                                                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController',
6279
                                                            'action' => 'index'
6278
                                                                'action' => 'view'
-
 
6279
                                                            ]
6280
                                                        ]
6280
                                                        ]
6281
                                                    ],
6281
                                                    ],
6282
                                                    'may_terminate' => true,
-
 
6283
                                                    'child_routes' => [
-
 
6284
                                                        'view' => [
6282
                                                    'add' => [
6285
                                                            'type' => Literal::class,
6283
                                                        'type' => Literal::class,
6286
                                                            'options' => [
6284
                                                        'options' => [
6287
                                                                'route' => '/view',
6285
                                                            'route' => '/add',
6288
                                                                'defaults' => [
6286
                                                            'defaults' => [
6289
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController',
6287
                                                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController',
6290
                                                                    'action' => 'view'
6288
                                                                'action' => 'add'
6291
                                                                ]
-
 
6292
                                                            ]
6289
                                                            ]
6293
                                                        ],
6290
                                                        ]
-
 
6291
                                                    ],
6294
                                                        'add' => [
6292
                                                    'edit' => [
6295
                                                            'type' => Literal::class,
6293
                                                        'type' => Segment::class,
6296
                                                            'options' => [
6294
                                                        'options' => [
6297
                                                                'route' => '/add',
6295
                                                            'route' => '/edit/:category_id',
6298
                                                                'defaults' => [
6296
                                                            'constraints' => [
6299
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController',
6297
                                                                'category_id' => '[A-Za-z0-9\-]+\=*'
-
 
6298
                                                            ],
6300
                                                                    'action' => 'add'
6299
                                                            'defaults' => [
-
 
6300
                                                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController',
6301
                                                                ]
6301
                                                                'action' => 'edit'
6302
                                                            ]
6302
                                                            ]
6303
                                                        ],
6303
                                                        ]
-
 
6304
                                                    ],
6304
                                                        'edit' => [
6305
                                                    'delete' => [
6305
                                                            'type' => Segment::class,
6306
                                                        'type' => Segment::class,
6306
                                                            'options' => [
6307
                                                        'options' => [
6307
                                                                'route' => '/edit/:category_id',
6308
                                                            'route' => '/delete/:category_id',
6308
                                                                'constraints' => [
6309
                                                            'constraints' => [
6309
                                                                    'category_id' => '[A-Za-z0-9\-]+\=*'
6310
                                                                'category_id' => '[A-Za-z0-9\-]+\=*'
6310
                                                                ],
6311
                                                            ],
6311
                                                                'defaults' => [
6312
                                                            'defaults' => [
6312
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController',
6313
                                                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController',
6313
                                                                    'action' => 'edit'
6314
                                                                'action' => 'delete'
6314
                                                                ]
-
 
6315
                                                            ]
6315
                                                            ]
6316
                                                        ],
6316
                                                        ]
-
 
6317
                                                    ],
6317
                                                        'delete' => [
6318
                                                    'articles' => [
6318
                                                            'type' => Segment::class,
6319
                                                        'type' => Segment::class,
6319
                                                            'options' => [
6320
                                                        'options' => [
6320
                                                                'route' => '/delete/:category_id',
6321
                                                            'route' => '/:category_id/articles',
6321
                                                                'constraints' => [
6322
                                                            'constraints' => [
6322
                                                                    'category_id' => '[A-Za-z0-9\-]+\=*'
6323
                                                                'category_id' => '[A-Za-z0-9\-]+\=*'
6323
                                                                ],
6324
                                                            ],
6324
                                                                'defaults' => [
6325
                                                            'defaults' => [
6325
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController',
6326
                                                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesController',
6326
                                                                    'action' => 'delete'
6327
                                                                'action' => 'index'
6327
                                                                ]
-
 
6328
                                                            ]
6328
                                                            ]
6329
                                                        ],
6329
                                                        ],
6330
                                                        'articles' => [
6330
                                                        'may_terminate' => true,
6331
                                                            'type' => Segment::class,
6331
                                                        'child_routes' => [
6332
                                                            'options' => [
6332
                                                            'add' => [
6333
                                                                'route' => '/:category_id/articles',
6333
                                                                'type' => Literal::class,
6334
                                                                'constraints' => [
6334
                                                                'options' => [
6335
                                                                    'category_id' => '[A-Za-z0-9\-]+\=*'
-
 
6336
                                                                ],
6335
                                                                    'route' => '/add',
6337
                                                                'defaults' => [
6336
                                                                    'defaults' => [
6338
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesController',
6337
                                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesController',
6339
                                                                    'action' => 'index'
6338
                                                                        'action' => 'add'
-
 
6339
                                                                    ]
6340
                                                                ]
6340
                                                                ]
6341
                                                            ],
6341
                                                            ],
6342
                                                            'may_terminate' => true,
-
 
6343
                                                            'child_routes' => [
-
 
6344
                                                                'add' => [
-
 
6345
                                                                    'type' => Literal::class,
-
 
6346
                                                                    'options' => [
-
 
6347
                                                                        'route' => '/add',
-
 
6348
                                                                        'defaults' => [
-
 
6349
                                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesController',
-
 
6350
                                                                            'action' => 'add'
-
 
6351
                                                                        ]
-
 
6352
                                                                    ]
-
 
6353
                                                                ],
-
 
6354
                                                                'edit' => [
6342
                                                            'edit' => [
6355
                                                                    'type' => Segment::class,
6343
                                                                'type' => Segment::class,
6356
                                                                    'options' => [
6344
                                                                'options' => [
6357
                                                                        'route' => '/edit/:article_id',
6345
                                                                    'route' => '/edit/:article_id',
6358
                                                                        'constraints' => [
6346
                                                                    'constraints' => [
6359
                                                                            'articles_id' => '[A-Za-z0-9\-]+\=*'
6347
                                                                        'articles_id' => '[A-Za-z0-9\-]+\=*'
6360
                                                                        ],
6348
                                                                    ],
6361
                                                                        'defaults' => [
6349
                                                                    'defaults' => [
6362
                                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesController',
6350
                                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesController',
6363
                                                                            'action' => 'edit'
6351
                                                                        'action' => 'edit'
6364
                                                                        ]
-
 
6365
                                                                    ]
6352
                                                                    ]
6366
                                                                ],
6353
                                                                ]
-
 
6354
                                                            ],
6367
                                                                
6355
 
6368
                                                                'delete' => [
6356
                                                            'delete' => [
6369
                                                                    'type' => Segment::class,
6357
                                                                'type' => Segment::class,
6370
                                                                    'options' => [
6358
                                                                'options' => [
6371
                                                                        'route' => '/delete/:article_id',
6359
                                                                    'route' => '/delete/:article_id',
6372
                                                                        'constraints' => [
6360
                                                                    'constraints' => [
6373
                                                                            'articles_id' => '[A-Za-z0-9\-]+\=*'
6361
                                                                        'articles_id' => '[A-Za-z0-9\-]+\=*'
6374
                                                                        ],
6362
                                                                    ],
6375
                                                                        'defaults' => [
6363
                                                                    'defaults' => [
6376
                                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesController',
6364
                                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesController',
6377
                                                                            'action' => 'delete'
6365
                                                                        'action' => 'delete'
6378
                                                                        ]
-
 
6379
                                                                    ]
6366
                                                                    ]
6380
                                                                ],
6367
                                                                ]
-
 
6368
                                                            ],
6381
                                                                'view' => [
6369
                                                            'view' => [
6382
                                                                    'type' => Segment::class,
6370
                                                                'type' => Segment::class,
6383
                                                                    'options' => [
6371
                                                                'options' => [
6384
                                                                        'route' => '/view/:article_id',
6372
                                                                    'route' => '/view/:article_id',
6385
                                                                        'constraints' => [
6373
                                                                    'constraints' => [
6386
                                                                            'articles_id' => '[A-Za-z0-9\-]+\=*'
6374
                                                                        'articles_id' => '[A-Za-z0-9\-]+\=*'
6387
                                                                        ],
6375
                                                                    ],
6388
                                                                        'defaults' => [
6376
                                                                    'defaults' => [
6389
                                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesViewController',
6377
                                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesViewController',
6390
                                                                            'action' => 'index'
6378
                                                                        'action' => 'index'
6391
                                                                        ]
-
 
6392
                                                                    ]
6379
                                                                    ]
6393
                                                                ],
6380
                                                                ]
6394
                                                            ]
6381
                                                            ],
6395
                                                        ],
6382
                                                        ]
6396
                                                    ],
6383
                                                    ],
6397
                                                ],
6384
                                                ],
-
 
6385
                                            ],
-
 
6386
                                        ]
-
 
6387
                                    ],
-
 
6388
                                    'topic' => [
-
 
6389
                                        'type' => Literal::class,
-
 
6390
                                        'options' => [
-
 
6391
                                            'route' => '/topic',
-
 
6392
                                            'defaults' => [
-
 
6393
                                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController',
-
 
6394
                                                'action' => 'index'
6398
                                            ]
6395
                                            ]
6399
                                        ],
-
 
6400
                                        'topic' => [
-
 
6401
                                            'type' => Literal::class,
-
 
6402
                                            'options' => [
-
 
6403
                                                'route' => '/topic',
-
 
6404
                                                'defaults' => [
-
 
6405
                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController',
-
 
6406
                                                    'action' => 'index'
-
 
6407
                                                ]
-
 
6408
                                            ],'may_terminate' => true,
6396
                                        ], 'may_terminate' => true,
6409
                                            'child_routes' => [
6397
                                        'child_routes' => [
6410
                                                'add' => [
6398
                                            'add' => [
6411
                                                    'type' => Literal::class,
6399
                                                'type' => Literal::class,
6412
                                                    'options' => [
6400
                                                'options' => [
6413
                                                        'route' => '/add',
6401
                                                    'route' => '/add',
6414
                                                        'defaults' => [
6402
                                                    'defaults' => [
6415
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController',
6403
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController',
6416
                                                            'action' => 'add'
6404
                                                        'action' => 'add'
6417
                                                        ]
-
 
6418
                                                    ]
-
 
6419
                                                ],
-
 
6420
                                                'edit' => [
-
 
6421
                                                    'type' => Segment::class,
-
 
6422
                                                    'options' => [
-
 
6423
                                                        'route' => '/edit/:topic_id',
-
 
6424
                                                        'constraints' => [
-
 
6425
                                                            'topic_id' => '[A-Za-z0-9\-]+\=*'
-
 
6426
                                                        ],
-
 
6427
                                                        'defaults' => [
-
 
6428
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController',
-
 
6429
                                                            'action' => 'edit'
-
 
6430
                                                        ]
-
 
6431
                                                    ]
6405
                                                    ]
6432
                                                ],
6406
                                                ]
-
 
6407
                                            ],
6433
                                                'view' => [
6408
                                            'edit' => [
6434
                                                    'type' => Segment::class,
6409
                                                'type' => Segment::class,
6435
                                                    'options' => [
6410
                                                'options' => [
6436
                                                        'route' => '/view[/:topic_id]',
6411
                                                    'route' => '/edit/:topic_id',
6437
                                                        'constraints' => [
6412
                                                    'constraints' => [
6438
                                                            'topic_id' => '[A-Za-z0-9\-]+\=*'
6413
                                                        'topic_id' => '[A-Za-z0-9\-]+\=*'
6439
                                                        ],
6414
                                                    ],
6440
                                                        'defaults' => [
6415
                                                    'defaults' => [
6441
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewController',
6416
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController',
6442
                                                            'action' => 'index'
6417
                                                        'action' => 'edit'
6443
                                                        ]
-
 
6444
                                                    ]
6418
                                                    ]
6445
                                                ],
6419
                                                ]
6446
                                                
-
 
-
 
6420
                                            ],
6447
                                                'delete' => [
6421
                                            'view' => [
6448
                                                    'type' => Segment::class,
6422
                                                'type' => Segment::class,
6449
                                                    'options' => [
6423
                                                'options' => [
6450
                                                        'route' => '/delete/:topic_id',
6424
                                                    'route' => '/view[/:topic_id]',
6451
                                                        'constraints' => [
6425
                                                    'constraints' => [
6452
                                                            'topic_id' => '[A-Za-z0-9\-]+\=*'
6426
                                                        'topic_id' => '[A-Za-z0-9\-]+\=*'
6453
                                                        ],
6427
                                                    ],
6454
                                                        'defaults' => [
6428
                                                    'defaults' => [
6455
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController',
6429
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewController',
6456
                                                            'action' => 'delete'
6430
                                                        'action' => 'index'
6457
                                                        ]
-
 
6458
                                                    ]
6431
                                                    ]
6459
                                                ]
6432
                                                ]
6460
                                            ],
6433
                                            ],
6461
                                        ],
-
 
Línea -... Línea 6434...
-
 
6434
 
-
 
6435
                                            'delete' => [
-
 
6436
                                                'type' => Segment::class,
-
 
6437
                                                'options' => [
-
 
6438
                                                    'route' => '/delete/:topic_id',
-
 
6439
                                                    'constraints' => [
-
 
6440
                                                        'topic_id' => '[A-Za-z0-9\-]+\=*'
-
 
6441
                                                    ],
-
 
6442
                                                    'defaults' => [
-
 
6443
                                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController',
-
 
6444
                                                        'action' => 'delete'
-
 
6445
                                                    ]
-
 
6446
                                                ]
-
 
6447
                                            ]
6462
 
6448
                                        ],
Línea -... Línea 6449...
-
 
6449
                                    ],
-
 
6450
 
6463
                                    ],
6451
                                ],
6464
 
6452
 
6465
                            ],
6453
                            ],
6466
                        ]
6454
                        ]
6467
                    ],
6455
                    ],
6468
                ]
6456
                ]
Línea 6469... Línea 6457...
6469
            ],
6457
            ],
6470
            
6458
 
6471
 
6459
 
6472
            'my-trainer' => [
6460
            'my-trainer' => [
Línea 6618... Línea 6606...
6618
                                    ],
6606
                                    ],
6619
                                    'edit' => [
6607
                                    'edit' => [
6620
                                        'type' => Segment::class,
6608
                                        'type' => Segment::class,
6621
                                        'options' => [
6609
                                        'options' => [
6622
                                            'route' => '/edit',
6610
                                            'route' => '/edit',
6623
                                           
6611
 
6624
                                            'defaults' => [
6612
                                            'defaults' => [
6625
                                                'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
6613
                                                'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
6626
                                                'action' => 'edit'
6614
                                                'action' => 'edit'
6627
                                            ]
6615
                                            ]
6628
                                        ]
6616
                                        ]
Línea 6648... Línea 6636...
6648
                                        ],
6636
                                        ],
6649
                                    ],
6637
                                    ],
6650
                                    'timeline' => [
6638
                                    'timeline' => [
6651
                                        'type' => Segment::class,
6639
                                        'type' => Segment::class,
6652
                                        'options' => [
6640
                                        'options' => [
6653
                                            'route' => '/timeline',                                           
6641
                                            'route' => '/timeline',
6654
                                            'defaults' => [
6642
                                            'defaults' => [
6655
                                                'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
6643
                                                'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
6656
                                                'action' => 'timeline'
6644
                                                'action' => 'timeline'
6657
                                            ],
6645
                                            ],
6658
                                        ],
6646
                                        ],
6659
                                    ],
6647
                                    ],
6660
                                    'comments' => [
6648
                                    'comments' => [
6661
                                        'type' => Segment::class,
6649
                                        'type' => Segment::class,
6662
                                        'options' => [
6650
                                        'options' => [
6663
                                            'route' => '/comments',
6651
                                            'route' => '/comments',
6664
                                            
6652
 
6665
                                            'defaults' => [
6653
                                            'defaults' => [
6666
                                                'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
6654
                                                'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
6667
                                                'action' => 'comment'
6655
                                                'action' => 'comment'
6668
                                            ],
6656
                                            ],
6669
                                        ],
6657
                                        ],
Línea 6712... Línea 6700...
6712
                        'controller' => '\LeadersLinked\Controller\DevelopmentContentController',
6700
                        'controller' => '\LeadersLinked\Controller\DevelopmentContentController',
6713
                        'action' => 'index',
6701
                        'action' => 'index',
6714
                    ]
6702
                    ]
6715
                ],
6703
                ],
Línea 6716... Línea 6704...
6716
 
6704
 
6717
                
6705
 
6718
                'may_terminate' => true,
6706
                'may_terminate' => true,
6719
                'child_routes' => [
6707
                'child_routes' => [
6720
                    'listing' => [
6708
                    'listing' => [
6721
                        'type' => Segment::class,
6709
                        'type' => Segment::class,
Línea 6828... Línea 6816...
6828
                            ]
6816
                            ]
6829
                        ]
6817
                        ]
6830
                    ]
6818
                    ]
6831
                ]
6819
                ]
6832
            ],
6820
            ],
6833
            
6821
 
6834
        ]
6822
        ]
6835
    ],
6823
    ],
6836
    'controllers' => [
6824
    'controllers' => [
6837
        'factories' => [
6825
        'factories' => [
6838
            \LeadersLinked\Controller\AuthController::class => \LeadersLinked\Factory\Controller\AuthControllerFactory::class,
6826
            \LeadersLinked\Controller\AuthController::class => \LeadersLinked\Factory\Controller\AuthControllerFactory::class,
Línea 6842... Línea 6830...
6842
            \LeadersLinked\Controller\RecruitmentSelectionController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionFactory::class,
6830
            \LeadersLinked\Controller\RecruitmentSelectionController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionFactory::class,
6843
            \LeadersLinked\Controller\RecruitmentSelectionVacancyController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionVacancyFactory::class,
6831
            \LeadersLinked\Controller\RecruitmentSelectionVacancyController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionVacancyFactory::class,
6844
            \LeadersLinked\Controller\RecruitmentSelectionApplicationController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionApplicationFactory::class,
6832
            \LeadersLinked\Controller\RecruitmentSelectionApplicationController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionApplicationFactory::class,
6845
            \LeadersLinked\Controller\RecruitmentSelectionFileController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionFileControllerFactory::class,
6833
            \LeadersLinked\Controller\RecruitmentSelectionFileController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionFileControllerFactory::class,
6846
            \LeadersLinked\Controller\RecruitmentSelectionInterviewController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionInterviewFactory::class,
6834
            \LeadersLinked\Controller\RecruitmentSelectionInterviewController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionInterviewFactory::class,
6847
          /*
6835
            /*
6848
            \LeadersLinked\Controller\RecruitmentSelectionInterviewController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionInterviewFactory::class,
6836
            \LeadersLinked\Controller\RecruitmentSelectionInterviewController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionInterviewFactory::class,
6849
            \LeadersLinked\Controller\RecruitmentSelectionInterviewFormController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionInterviewFormFactory::class,
6837
            \LeadersLinked\Controller\RecruitmentSelectionInterviewFormController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionInterviewFormFactory::class,
6850
            \LeadersLinked\Controller\RecruitmentSelectionInterviewFileController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionInterviewFileControllerFactory::class,
6838
            \LeadersLinked\Controller\RecruitmentSelectionInterviewFileController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionInterviewFileControllerFactory::class,
6851
            \LeadersLinked\Controller\RecruitmentSelectionVacancyController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionVacancyFactory::class,
6839
            \LeadersLinked\Controller\RecruitmentSelectionVacancyController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionVacancyFactory::class,
6852
            \LeadersLinked\Controller\RecruitmentSelectionCandidateController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionCandidateFactory::class,
6840
            \LeadersLinked\Controller\RecruitmentSelectionCandidateController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionCandidateFactory::class,
6853
            */
6841
            */
6854
            \LeadersLinked\Controller\ProfileController::class => \LeadersLinked\Factory\Controller\ProfileControllerFactory::class,
6842
            \LeadersLinked\Controller\ProfileController::class => \LeadersLinked\Factory\Controller\ProfileControllerFactory::class,
6855
            \LeadersLinked\Controller\CompanyController::class => \LeadersLinked\Factory\Controller\CompanyControllerFactory::class,
6843
            \LeadersLinked\Controller\CompanyController::class => \LeadersLinked\Factory\Controller\CompanyControllerFactory::class,
6856
            \LeadersLinked\Controller\CompanySizeController::class => \LeadersLinked\Factory\Controller\CompanySizeControllerFactory::class,
6844
            \LeadersLinked\Controller\CompanySizeController::class => \LeadersLinked\Factory\Controller\CompanySizeControllerFactory::class,
6857
            \LeadersLinked\Controller\CountriesController::class => \LeadersLinked\Factory\Controller\CountriesControllerFactory::class,
6845
            \LeadersLinked\Controller\CountriesController::class => \LeadersLinked\Factory\Controller\CountriesControllerFactory::class,
6858
            
6846
 
6859
            \LeadersLinked\Controller\BehaviorsController::class => \LeadersLinked\Factory\Controller\BehaviorsControllerFactory::class,
6847
            \LeadersLinked\Controller\BehaviorsController::class => \LeadersLinked\Factory\Controller\BehaviorsControllerFactory::class,
6860
            \LeadersLinked\Controller\CompetencyTypeController::class => \LeadersLinked\Factory\Controller\CompetencyTypeControllerFactory::class,
6848
            \LeadersLinked\Controller\CompetencyTypeController::class => \LeadersLinked\Factory\Controller\CompetencyTypeControllerFactory::class,
6861
            \LeadersLinked\Controller\CompetencyController::class => \LeadersLinked\Factory\Controller\CompetencyControllerFactory::class,
6849
            \LeadersLinked\Controller\CompetencyController::class => \LeadersLinked\Factory\Controller\CompetencyControllerFactory::class,
6862
            \LeadersLinked\Controller\DegreeController::class => \LeadersLinked\Factory\Controller\DegreeControllerFactory::class,
6850
            \LeadersLinked\Controller\DegreeController::class => \LeadersLinked\Factory\Controller\DegreeControllerFactory::class,
6863
            \LeadersLinked\Controller\DevelopmentContentCategoryController::class => \LeadersLinked\Factory\Controller\DevelopmentContentCategoryControllerFactory::class,
6851
            \LeadersLinked\Controller\DevelopmentContentCategoryController::class => \LeadersLinked\Factory\Controller\DevelopmentContentCategoryControllerFactory::class,
Línea 6891... Línea 6879...
6891
            \LeadersLinked\Controller\PerformanceEvaluationTestController::class => \LeadersLinked\Factory\Controller\PerformanceEvaluationTestControllerFactory::class,
6879
            \LeadersLinked\Controller\PerformanceEvaluationTestController::class => \LeadersLinked\Factory\Controller\PerformanceEvaluationTestControllerFactory::class,
6892
            \LeadersLinked\Controller\MyTrainerCategoriesController::class => \LeadersLinked\Factory\Controller\MyTrainerCategoriesControllerFactory::class,
6880
            \LeadersLinked\Controller\MyTrainerCategoriesController::class => \LeadersLinked\Factory\Controller\MyTrainerCategoriesControllerFactory::class,
6893
            \LeadersLinked\Controller\MyTrainerQuestionViewController::class => \LeadersLinked\Factory\Controller\MyTrainerQuestionViewControllerFactory::class,
6881
            \LeadersLinked\Controller\MyTrainerQuestionViewController::class => \LeadersLinked\Factory\Controller\MyTrainerQuestionViewControllerFactory::class,
6894
            \LeadersLinked\Controller\MyTrainerQuestionController::class => \LeadersLinked\Factory\Controller\MyTrainerQuestionControllerFactory::class,
6882
            \LeadersLinked\Controller\MyTrainerQuestionController::class => \LeadersLinked\Factory\Controller\MyTrainerQuestionControllerFactory::class,
6895
            \LeadersLinked\Controller\MyTrainerAnswerController::class => \LeadersLinked\Factory\Controller\MyTrainerAnswerControllerFactory::class,
6883
            \LeadersLinked\Controller\MyTrainerAnswerController::class => \LeadersLinked\Factory\Controller\MyTrainerAnswerControllerFactory::class,
6896
          
6884
 
6897
            \LeadersLinked\Controller\MicrolearningController::class => \LeadersLinked\Factory\Controller\MicrolearningControllerFactory::class,
6885
            \LeadersLinked\Controller\MicrolearningController::class => \LeadersLinked\Factory\Controller\MicrolearningControllerFactory::class,
6898
            \LeadersLinked\Controller\MicrolearningQuizController::class => \LeadersLinked\Factory\Controller\MicrolearningQuizControllerFactory::class,
6886
            \LeadersLinked\Controller\MicrolearningQuizController::class => \LeadersLinked\Factory\Controller\MicrolearningQuizControllerFactory::class,
6899
            \LeadersLinked\Controller\MicrolearningQuestionController::class => \LeadersLinked\Factory\Controller\MicrolearningQuestionControllerFactory::class,
6887
            \LeadersLinked\Controller\MicrolearningQuestionController::class => \LeadersLinked\Factory\Controller\MicrolearningQuestionControllerFactory::class,
6900
            \LeadersLinked\Controller\MicrolearningAnswerController::class => \LeadersLinked\Factory\Controller\MicrolearningAnswerControllerFactory::class,
6888
            \LeadersLinked\Controller\MicrolearningAnswerController::class => \LeadersLinked\Factory\Controller\MicrolearningAnswerControllerFactory::class,
6901
            \LeadersLinked\Controller\MicrolearningTopicController::class => \LeadersLinked\Factory\Controller\MicrolearningTopicControllerFactory::class,
6889
            \LeadersLinked\Controller\MicrolearningTopicController::class => \LeadersLinked\Factory\Controller\MicrolearningTopicControllerFactory::class,
Línea 6937... Línea 6925...
6937
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsMembersControllerFactory::class,
6925
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsMembersControllerFactory::class,
6938
            \LeadersLinked\Controller\ChatController::class => \LeadersLinked\Factory\Controller\ChatControllerFactory::class,
6926
            \LeadersLinked\Controller\ChatController::class => \LeadersLinked\Factory\Controller\ChatControllerFactory::class,
6939
            \LeadersLinked\Controller\CommunicationController::class => \LeadersLinked\Factory\Controller\CommunicationControllerFactory::class,
6927
            \LeadersLinked\Controller\CommunicationController::class => \LeadersLinked\Factory\Controller\CommunicationControllerFactory::class,
6940
            \LeadersLinked\Controller\CommunicationInboxController::class => \LeadersLinked\Factory\Controller\CommunicationInboxControllerFactory::class,
6928
            \LeadersLinked\Controller\CommunicationInboxController::class => \LeadersLinked\Factory\Controller\CommunicationInboxControllerFactory::class,
6941
            \LeadersLinked\Controller\InMailController::class => \LeadersLinked\Factory\Controller\InMailControllerFactory::class,
6929
            \LeadersLinked\Controller\InMailController::class => \LeadersLinked\Factory\Controller\InMailControllerFactory::class,
6942
            
6930
 
6943
            
6931
 
6944
            \LeadersLinked\Controller\ReportController::class => \LeadersLinked\Factory\Controller\ReportControllerFactory::class,
6932
            \LeadersLinked\Controller\ReportController::class => \LeadersLinked\Factory\Controller\ReportControllerFactory::class,
6945
            \LeadersLinked\Controller\UnknownController::class => \LeadersLinked\Factory\Controller\UnknownControllerFactory::class,
6933
            \LeadersLinked\Controller\UnknownController::class => \LeadersLinked\Factory\Controller\UnknownControllerFactory::class,
6946
            \LeadersLinked\Controller\TestController::class => \LeadersLinked\Factory\Controller\TestControllerFactory::class,
6934
            \LeadersLinked\Controller\TestController::class => \LeadersLinked\Factory\Controller\TestControllerFactory::class,
6947
            
6935
 
6948
            \LeadersLinked\Controller\AptitudeController::class => \LeadersLinked\Factory\Controller\AptitudeControllerFactory::class,
6936
            \LeadersLinked\Controller\AptitudeController::class => \LeadersLinked\Factory\Controller\AptitudeControllerFactory::class,
6949
            \LeadersLinked\Controller\HobbyAndInterestController::class => \LeadersLinked\Factory\Controller\HobbyAndInterestControllerFactory::class,
6937
            \LeadersLinked\Controller\HobbyAndInterestController::class => \LeadersLinked\Factory\Controller\HobbyAndInterestControllerFactory::class,
6950
            
6938
 
6951
            \LeadersLinked\Controller\DiscoveryContactController::class => \LeadersLinked\Factory\Controller\DiscoveryContactControllerFactory::class,
6939
            \LeadersLinked\Controller\DiscoveryContactController::class => \LeadersLinked\Factory\Controller\DiscoveryContactControllerFactory::class,
6952
            \LeadersLinked\Controller\DiscoveryContactLogController::class  => \LeadersLinked\Factory\Controller\DiscoveryContactLogControllerFactory::class,
6940
            \LeadersLinked\Controller\DiscoveryContactLogController::class  => \LeadersLinked\Factory\Controller\DiscoveryContactLogControllerFactory::class,
6953
            \LeadersLinked\Controller\DiscoveryContactInteractionTypeController::class  => \LeadersLinked\Factory\Controller\DiscoveryContactInteractionTypeControllerFactory::class,
6941
            \LeadersLinked\Controller\DiscoveryContactInteractionTypeController::class  => \LeadersLinked\Factory\Controller\DiscoveryContactInteractionTypeControllerFactory::class,
6954
            \LeadersLinked\Controller\DiscoveryContactInteractionController::class  => \LeadersLinked\Factory\Controller\DiscoveryContactInteractionControllerFactory::class,
6942
            \LeadersLinked\Controller\DiscoveryContactInteractionController::class  => \LeadersLinked\Factory\Controller\DiscoveryContactInteractionControllerFactory::class,
6955
        
6943
 
6956
            \LeadersLinked\Controller\ActivityCenterController::Class  => \LeadersLinked\Factory\Controller\ActivityCenterControllerFactory::class,
6944
            \LeadersLinked\Controller\ActivityCenterController::Class  => \LeadersLinked\Factory\Controller\ActivityCenterControllerFactory::class,
6957
            \LeadersLinked\Controller\ActivityCenterPerformanceEvaluationController::class  => \LeadersLinked\Factory\Controller\ActivityCenterPerformanceEvaluationControllerFactory::class,
6945
            \LeadersLinked\Controller\ActivityCenterPerformanceEvaluationController::class  => \LeadersLinked\Factory\Controller\ActivityCenterPerformanceEvaluationControllerFactory::class,
6958
            \LeadersLinked\Controller\ActivityCenterRecruitmentSelectionController::class  => \LeadersLinked\Factory\Controller\ActivityCenterRecruitmentSelectionControllerFactory::class,
6946
            \LeadersLinked\Controller\ActivityCenterRecruitmentSelectionController::class  => \LeadersLinked\Factory\Controller\ActivityCenterRecruitmentSelectionControllerFactory::class,
6959
            
6947
 
6960
            \LeadersLinked\Controller\EngagementController::class => \LeadersLinked\Factory\Controller\EngagementControllerFactory::class,
6948
            \LeadersLinked\Controller\EngagementController::class => \LeadersLinked\Factory\Controller\EngagementControllerFactory::class,
6961
            \LeadersLinked\Controller\EngagementRewardController::class => \LeadersLinked\Factory\Controller\EngagementRewardControllerFactory::class,
6949
            \LeadersLinked\Controller\EngagementRewardController::class => \LeadersLinked\Factory\Controller\EngagementRewardControllerFactory::class,
6962
            \LeadersLinked\Controller\EngagementReportsController::class => \LeadersLinked\Factory\Controller\EngagementReportsControllerFactory::class,
6950
            \LeadersLinked\Controller\EngagementReportsController::class => \LeadersLinked\Factory\Controller\EngagementReportsControllerFactory::class,
6963
            
6951
 
6964
            \LeadersLinked\Controller\DailyPulseController::Class  => \LeadersLinked\Factory\Controller\DailyPulseControllerFactory::class,
6952
            \LeadersLinked\Controller\DailyPulseController::Class  => \LeadersLinked\Factory\Controller\DailyPulseControllerFactory::class,
6965
            \LeadersLinked\Controller\DailyPulseEmojiController::Class  => \LeadersLinked\Factory\Controller\DailyPulseEmojiControllerFactory::class,
6953
            \LeadersLinked\Controller\DailyPulseEmojiController::Class  => \LeadersLinked\Factory\Controller\DailyPulseEmojiControllerFactory::class,
6966
            \LeadersLinked\Controller\DailyPulseReportsController::Class  => \LeadersLinked\Factory\Controller\DailyPulseReportsControllerFactory::class,
6954
            \LeadersLinked\Controller\DailyPulseReportsController::Class  => \LeadersLinked\Factory\Controller\DailyPulseReportsControllerFactory::class,
6967
            
6955
 
6968
            
6956
 
6969
            \LeadersLinked\Controller\MyCoachController::Class  => \LeadersLinked\Factory\Controller\MyCoachControllerFactory::class,
6957
            \LeadersLinked\Controller\MyCoachController::Class  => \LeadersLinked\Factory\Controller\MyCoachControllerFactory::class,
6970
            \LeadersLinked\Controller\MyCoachCategoryController::class  => \LeadersLinked\Factory\Controller\MyCoachCategoryControllerFactory::class,
6958
            \LeadersLinked\Controller\MyCoachCategoryController::class  => \LeadersLinked\Factory\Controller\MyCoachCategoryControllerFactory::class,
6971
            
6959
 
6972
            \LeadersLinked\Controller\UserRequestAccessController::class  => \LeadersLinked\Factory\Controller\UserRequestAccessControllerFactory::class,
6960
            \LeadersLinked\Controller\UserRequestAccessController::class  => \LeadersLinked\Factory\Controller\UserRequestAccessControllerFactory::class,
6973
  
6961
 
6974
            
6962
 
6975
        ],
6963
        ],
6976
        'aliases' => [
6964
        'aliases' => [
6977
            '\LeadersLinked\Controller\AuthController' => \LeadersLinked\Controller\AuthController::class,
6965
            '\LeadersLinked\Controller\AuthController' => \LeadersLinked\Controller\AuthController::class,
6978
            '\LeadersLinked\Controller\FollowerController' => \LeadersLinked\Controller\FollowerController::class,
6966
            '\LeadersLinked\Controller\FollowerController' => \LeadersLinked\Controller\FollowerController::class,
6979
            '\LeadersLinked\Controller\FeedController' => \LeadersLinked\Controller\FeedController::class,
6967
            '\LeadersLinked\Controller\FeedController' => \LeadersLinked\Controller\FeedController::class,
Línea 7072... Línea 7060...
7072
            '\LeadersLinked\Controller\UnknownController' => \LeadersLinked\Controller\UnknownController::class,
7060
            '\LeadersLinked\Controller\UnknownController' => \LeadersLinked\Controller\UnknownController::class,
7073
            '\LeadersLinked\Controller\TestController' => \LeadersLinked\Controller\TestController::class,
7061
            '\LeadersLinked\Controller\TestController' => \LeadersLinked\Controller\TestController::class,
7074
            '\LeadersLinked\Controller\AptitudeController' => \LeadersLinked\Controller\AptitudeController::class,
7062
            '\LeadersLinked\Controller\AptitudeController' => \LeadersLinked\Controller\AptitudeController::class,
7075
            '\LeadersLinked\Controller\HobbyAndInterestController' => \LeadersLinked\Controller\HobbyAndInterestController::class,
7063
            '\LeadersLinked\Controller\HobbyAndInterestController' => \LeadersLinked\Controller\HobbyAndInterestController::class,
7076
            '\LeadersLinked\Controller\CountriesController' => \LeadersLinked\Controller\CountriesController::class,
7064
            '\LeadersLinked\Controller\CountriesController' => \LeadersLinked\Controller\CountriesController::class,
7077
            
7065
 
7078
            
7066
 
7079
            '\LeadersLinked\Controller\DiscoveryContactController' => \LeadersLinked\Controller\DiscoveryContactController::class,
7067
            '\LeadersLinked\Controller\DiscoveryContactController' => \LeadersLinked\Controller\DiscoveryContactController::class,
7080
            '\LeadersLinked\Controller\DiscoveryContactLogController' => \LeadersLinked\Controller\DiscoveryContactLogController::class,
7068
            '\LeadersLinked\Controller\DiscoveryContactLogController' => \LeadersLinked\Controller\DiscoveryContactLogController::class,
7081
            '\LeadersLinked\Controller\DiscoveryContactInteractionTypeController' => \LeadersLinked\Controller\DiscoveryContactInteractionTypeController::class,
7069
            '\LeadersLinked\Controller\DiscoveryContactInteractionTypeController' => \LeadersLinked\Controller\DiscoveryContactInteractionTypeController::class,
7082
            '\LeadersLinked\Controller\DiscoveryContactInteractionController' => \LeadersLinked\Controller\DiscoveryContactInteractionController::class,
7070
            '\LeadersLinked\Controller\DiscoveryContactInteractionController' => \LeadersLinked\Controller\DiscoveryContactInteractionController::class,
7083
            
7071
 
7084
            '\LeadersLinked\Controller\ActivityCenterController' => \LeadersLinked\Controller\ActivityCenterController::class,
7072
            '\LeadersLinked\Controller\ActivityCenterController' => \LeadersLinked\Controller\ActivityCenterController::class,
7085
            '\LeadersLinked\Controller\ActivityCenterPerformanceEvaluationController' => \LeadersLinked\Controller\ActivityCenterPerformanceEvaluationController::class,
7073
            '\LeadersLinked\Controller\ActivityCenterPerformanceEvaluationController' => \LeadersLinked\Controller\ActivityCenterPerformanceEvaluationController::class,
7086
            '\LeadersLinked\Controller\ActivityCenterRecruitmentSelectionController' => \LeadersLinked\Controller\ActivityCenterRecruitmentSelectionController::class,
7074
            '\LeadersLinked\Controller\ActivityCenterRecruitmentSelectionController' => \LeadersLinked\Controller\ActivityCenterRecruitmentSelectionController::class,
7087
            
7075
 
7088
            '\LeadersLinked\Controller\EngagementController' => \LeadersLinked\Controller\EngagementController::class,
7076
            '\LeadersLinked\Controller\EngagementController' => \LeadersLinked\Controller\EngagementController::class,
7089
            '\LeadersLinked\Controller\EngagementRewardController' => \LeadersLinked\Controller\EngagementRewardController::class,
7077
            '\LeadersLinked\Controller\EngagementRewardController' => \LeadersLinked\Controller\EngagementRewardController::class,
7090
            '\LeadersLinked\Controller\EngagementReportsController' => \LeadersLinked\Controller\EngagementReportsController::class,
7078
            '\LeadersLinked\Controller\EngagementReportsController' => \LeadersLinked\Controller\EngagementReportsController::class,
7091
            
7079
 
7092
            '\LeadersLinked\Controller\DailyPulseController' => \LeadersLinked\Controller\DailyPulseController::class,
7080
            '\LeadersLinked\Controller\DailyPulseController' => \LeadersLinked\Controller\DailyPulseController::class,
7093
            '\LeadersLinked\Controller\DailyPulseEmojiController' => \LeadersLinked\Controller\DailyPulseEmojiController::class,
7081
            '\LeadersLinked\Controller\DailyPulseEmojiController' => \LeadersLinked\Controller\DailyPulseEmojiController::class,
7094
            '\LeadersLinked\Controller\DailyPulseReportsController' => \LeadersLinked\Controller\DailyPulseReportsController::class,
7082
            '\LeadersLinked\Controller\DailyPulseReportsController' => \LeadersLinked\Controller\DailyPulseReportsController::class,
7095
            
7083
 
7096
            '\LeadersLinked\Controller\MyCoachController' => \LeadersLinked\Controller\MyCoachController::class,
7084
            '\LeadersLinked\Controller\MyCoachController' => \LeadersLinked\Controller\MyCoachController::class,
7097
            '\LeadersLinked\Controller\MyCoachCategoryController' => \LeadersLinked\Controller\MyCoachCategoryController::class,
7085
            '\LeadersLinked\Controller\MyCoachCategoryController' => \LeadersLinked\Controller\MyCoachCategoryController::class,
7098
            
7086
 
7099
            
7087
 
7100
            '\LeadersLinked\Controller\UserRequestAccessController' => \LeadersLinked\Controller\UserRequestAccessController::Class,
7088
            '\LeadersLinked\Controller\UserRequestAccessController' => \LeadersLinked\Controller\UserRequestAccessController::Class,
7101
        
7089
 
7102
        ]
7090
        ]
7103
    ],
7091
    ],
7104
    'laminas-cli' => [
7092
    'laminas-cli' => [
7105
        'commands' => [
7093
        'commands' => []
7106
        ]
-
 
7107
    ],
7094
    ],
7108
    'service_manager' => [
7095
    'service_manager' => [
7109
        'abstract_factories' => [
7096
        'abstract_factories' => [
7110
            \Laminas\Db\Adapter\AdapterAbstractServiceFactory::class
7097
            \Laminas\Db\Adapter\AdapterAbstractServiceFactory::class
7111
        ],
7098
        ],
Línea 7115... Línea 7102...
7115
                return new \LeadersLinked\View\RenderingStrategy($translator);
7102
                return new \LeadersLinked\View\RenderingStrategy($translator);
7116
            },
7103
            },
7117
            'menuNavigation' => \LeadersLinked\Navigation\MenuNavigation::class,
7104
            'menuNavigation' => \LeadersLinked\Navigation\MenuNavigation::class,
7118
            'footerNavigation' => \LeadersLinked\Navigation\FooterNavigation::class,
7105
            'footerNavigation' => \LeadersLinked\Navigation\FooterNavigation::class,
7119
        ],
7106
        ],
7120
        'aliases' => [// 'leaders-linked-storage' => \LeadersLinked\Service\StorageService::class
7107
        'aliases' => [ // 'leaders-linked-storage' => \LeadersLinked\Service\StorageService::class
7121
        ]
7108
        ]
7122
    ],
7109
    ],
7123
    'view_helpers' => [
7110
    'view_helpers' => [
7124
        'factories' => [
7111
        'factories' => [
7125
            \LeadersLinked\Helper\ChatHelper::class => \LeadersLinked\Factory\Helper\ChatHelperFactory::class,
7112
            \LeadersLinked\Helper\ChatHelper::class => \LeadersLinked\Factory\Helper\ChatHelperFactory::class,
Línea 7128... Línea 7115...
7128
            \LeadersLinked\Helper\NetworkFavicoHelper::class => \LeadersLinked\Factory\Helper\NetworkFavicoHelperFactory::class,
7115
            \LeadersLinked\Helper\NetworkFavicoHelper::class => \LeadersLinked\Factory\Helper\NetworkFavicoHelperFactory::class,
7129
            \LeadersLinked\Helper\NetworkIntroHelper::class => \LeadersLinked\Factory\Helper\NetworkIntroHelperFactory::class,
7116
            \LeadersLinked\Helper\NetworkIntroHelper::class => \LeadersLinked\Factory\Helper\NetworkIntroHelperFactory::class,
7130
            \LeadersLinked\Helper\NetworkLogoHelper::class => \LeadersLinked\Factory\Helper\NetworkLogoHelperFactory::class,
7117
            \LeadersLinked\Helper\NetworkLogoHelper::class => \LeadersLinked\Factory\Helper\NetworkLogoHelperFactory::class,
7131
            \LeadersLinked\Helper\NetworkNavbarHelper::class => \LeadersLinked\Factory\Helper\NetworkNavbarHelperFactory::class,
7118
            \LeadersLinked\Helper\NetworkNavbarHelper::class => \LeadersLinked\Factory\Helper\NetworkNavbarHelperFactory::class,
7132
            \LeadersLinked\Helper\NetworkStylesAndColorsHelper::class => \LeadersLinked\Factory\Helper\NetworkStylesAndColorsHelperFactory::class,
7119
            \LeadersLinked\Helper\NetworkStylesAndColorsHelper::class => \LeadersLinked\Factory\Helper\NetworkStylesAndColorsHelperFactory::class,
7133
            
7120
 
7134
        ],
7121
        ],
7135
        'invokables' => [
7122
        'invokables' => [
7136
            'chatHelper' => \LeadersLinked\Helper\ChatHelper::class,
7123
            'chatHelper' => \LeadersLinked\Helper\ChatHelper::class,
7137
            'menuHelper' => \LeadersLinked\Helper\MenuHelper::class,
7124
            'menuHelper' => \LeadersLinked\Helper\MenuHelper::class,
7138
        ],
7125
        ],
7139
        'aliases' => [
7126
        'aliases' => [
7140
            
7127
 
7141
            'currentUserHelper' => \LeadersLinked\Helper\CurrentUserHelper::class,
7128
            'currentUserHelper' => \LeadersLinked\Helper\CurrentUserHelper::class,
7142
            'currentNetworkHelper' =>  \LeadersLinked\Helper\CurrentNetworkHelper::class,
7129
            'currentNetworkHelper' =>  \LeadersLinked\Helper\CurrentNetworkHelper::class,
7143
            'networkFavicoHelper'  => \LeadersLinked\Helper\NetworkFavicoHelper::class,
7130
            'networkFavicoHelper'  => \LeadersLinked\Helper\NetworkFavicoHelper::class,
7144
            'networkIntroHelper' => \LeadersLinked\Helper\NetworkIntroHelper::class,
7131
            'networkIntroHelper' => \LeadersLinked\Helper\NetworkIntroHelper::class,
7145
            'networkLogoHelper'  => \LeadersLinked\Helper\NetworkLogoHelper::class,
7132
            'networkLogoHelper'  => \LeadersLinked\Helper\NetworkLogoHelper::class,
7146
            'networkNavbarHelper'  => \LeadersLinked\Helper\NetworkNavbarHelper::class,
7133
            'networkNavbarHelper'  => \LeadersLinked\Helper\NetworkNavbarHelper::class,
7147
            'networkStylesAndColorsHelper'  => \LeadersLinked\Helper\NetworkStylesAndColorsHelper::class,
7134
            'networkStylesAndColorsHelper'  => \LeadersLinked\Helper\NetworkStylesAndColorsHelper::class,
7148
            
7135
 
7149
            
7136
 
7150
        ]
7137
        ]
7151
    ],
7138
    ],
7152
    'controller_plugins' => [
7139
    'controller_plugins' => [
7153
        'invokables' => [],
7140
        'invokables' => [],
7154
        'factories' => [
7141
        'factories' => [
7155
            \LeadersLinked\Plugin\CurrentUserPlugin::class => \LeadersLinked\Factory\Plugin\CurrentUserPluginFactory::class,
7142
            \LeadersLinked\Plugin\CurrentUserPlugin::class => \LeadersLinked\Factory\Plugin\CurrentUserPluginFactory::class,
7156
            \LeadersLinked\Plugin\CurrentNetworkPlugin::class => \LeadersLinked\Factory\Plugin\CurrentNetworkPluginFactory::class,
7143
            \LeadersLinked\Plugin\CurrentNetworkPlugin::class => \LeadersLinked\Factory\Plugin\CurrentNetworkPluginFactory::class,
7157
        ],
7144
        ],
7158
        'aliases' => [
7145
        'aliases' => [
7159
            'currentUserPlugin' => \LeadersLinked\Plugin\CurrentUserPlugin::class, 
7146
            'currentUserPlugin' => \LeadersLinked\Plugin\CurrentUserPlugin::class,
7160
            'currentNetworkPlugin' => \LeadersLinked\Plugin\CurrentNetworkPlugin::class,
7147
            'currentNetworkPlugin' => \LeadersLinked\Plugin\CurrentNetworkPlugin::class,
7161
        ]
7148
        ]
7162
    ],
7149
    ],
7163
    'view_manager' => [
7150
    'view_manager' => [
7164
        'display_not_found_reason' => true,
7151
        'display_not_found_reason' => true,
Línea 7178... Línea 7165...
7178
            'ViewJsonStrategy',
7165
            'ViewJsonStrategy',
7179
            'RenderingStrategy'
7166
            'RenderingStrategy'
7180
        ]
7167
        ]
7181
    ]
7168
    ]
7182
];
7169
];
7183
 
-