Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 15390 Rev 15392
Línea 3329... Línea 3329...
3329
                                    ]
3329
                                    ]
3330
                                ]
3330
                                ]
3331
                            ]
3331
                            ]
3332
                        ]
3332
                        ]
3333
                    ],
3333
                    ],
-
 
3334
                    'aptitudes' => [
-
 
3335
                        'type' => Literal::class,
-
 
3336
                        'options' => [
-
 
3337
                            'route' => '/aptitudes',
-
 
3338
                            'defaults' => [
-
 
3339
                                'controller' => '\LeadersLinked\Controller\AptitudeController',
-
 
3340
                                'action' => 'index'
-
 
3341
                            ]
-
 
3342
                        ],
-
 
3343
                        'may_terminate' => true,
-
 
3344
                        'child_routes' => [
-
 
3345
                            'add' => [
-
 
3346
                                'type' => Literal::class,
-
 
3347
                                'options' => [
-
 
3348
                                    'route' => '/add',
-
 
3349
                                    'defaults' => [
-
 
3350
                                        'controller' => '\LeadersLinked\Controller\AptitudeController',
-
 
3351
                                        'action' => 'add'
-
 
3352
                                    ]
-
 
3353
                                ]
-
 
3354
                            ],
-
 
3355
                            'edit' => [
-
 
3356
                                'type' => Segment::class,
-
 
3357
                                'options' => [
-
 
3358
                                    'route' => '/edit/:id',
-
 
3359
                                    'constraints' => [
-
 
3360
                                        'id' => '[A-Za-z0-9\-]+\=*'
-
 
3361
                                    ],
-
 
3362
                                    'defaults' => [
-
 
3363
                                        'controller' => '\LeadersLinked\Controller\AptitudeController',
-
 
3364
                                        'action' => 'edit'
-
 
3365
                                    ]
-
 
3366
                                ]
-
 
3367
                            ],
-
 
3368
                            'delete' => [
-
 
3369
                                'type' => Segment::class,
-
 
3370
                                'options' => [
-
 
3371
                                    'route' => '/delete/:id',
-
 
3372
                                    'constraints' => [
-
 
3373
                                        'id' => '[A-Za-z0-9\-]+\=*'
-
 
3374
                                    ],
-
 
3375
                                    'defaults' => [
-
 
3376
                                        'controller' => '\LeadersLinked\Controller\AptitudeController',
-
 
3377
                                        'action' => 'delete'
-
 
3378
                                    ]
-
 
3379
                                ]
-
 
3380
                            ]
-
 
3381
                        ]
-
 
3382
                    ],
-
 
3383
                    'hobbies-and-interests' => [
-
 
3384
                        'type' => Literal::class,
-
 
3385
                        'options' => [
-
 
3386
                            'route' => '/hobbies-and-interests',
-
 
3387
                            'defaults' => [
-
 
3388
                                'controller' => '\LeadersLinked\Controller\HobbyAndInterestController',
-
 
3389
                                'action' => 'index'
-
 
3390
                            ]
-
 
3391
                        ],
-
 
3392
                        'may_terminate' => true,
-
 
3393
                        'child_routes' => [
-
 
3394
                            'add' => [
-
 
3395
                                'type' => Literal::class,
-
 
3396
                                'options' => [
-
 
3397
                                    'route' => '/add',
-
 
3398
                                    'defaults' => [
-
 
3399
                                        'controller' => '\LeadersLinked\Controller\HobbyAndInterestController',
-
 
3400
                                        'action' => 'add'
-
 
3401
                                    ]
-
 
3402
                                ]
-
 
3403
                            ],
-
 
3404
                            'edit' => [
-
 
3405
                                'type' => Segment::class,
-
 
3406
                                'options' => [
-
 
3407
                                    'route' => '/edit/:id',
-
 
3408
                                    'constraints' => [
-
 
3409
                                        'id' => '[A-Za-z0-9\-]+\=*'
-
 
3410
                                    ],
-
 
3411
                                    'defaults' => [
-
 
3412
                                        'controller' => '\LeadersLinked\Controller\HobbyAndInterestController',
-
 
3413
                                        'action' => 'edit'
-
 
3414
                                    ]
-
 
3415
                                ]
-
 
3416
                            ],
-
 
3417
                            'delete' => [
-
 
3418
                                'type' => Segment::class,
-
 
3419
                                'options' => [
-
 
3420
                                    'route' => '/delete/:id',
-
 
3421
                                    'constraints' => [
-
 
3422
                                        'id' => '[A-Za-z0-9\-]+\=*'
-
 
3423
                                    ],
-
 
3424
                                    'defaults' => [
-
 
3425
                                        'controller' => '\LeadersLinked\Controller\HobbyAndInterestController',
-
 
3426
                                        'action' => 'delete'
-
 
3427
                                    ]
-
 
3428
                                ]
-
 
3429
                            ]
-
 
3430
                        ]
-
 
3431
                    ],
3334
                ]
3432
                ]
3335
            ],
3433
            ],
3336
        /*         * * FIN SETTINGS ** */
3434
        /*         * * FIN SETTINGS ** */
Línea 3337... Línea 3435...
3337
            
3435
            
Línea 5943... Línea 6041...
5943
            
6041
            
5944
            
6042
            
5945
            \LeadersLinked\Controller\ReportController::class => \LeadersLinked\Factory\Controller\ReportControllerFactory::class,
6043
            \LeadersLinked\Controller\ReportController::class => \LeadersLinked\Factory\Controller\ReportControllerFactory::class,
-
 
6044
            \LeadersLinked\Controller\UnknownController::class => \LeadersLinked\Factory\Controller\UnknownControllerFactory::class,
-
 
6045
            \LeadersLinked\Controller\TestController::class => \LeadersLinked\Factory\Controller\TestControllerFactory::class,
-
 
6046
            
5946
            \LeadersLinked\Controller\UnknownController::class => \LeadersLinked\Factory\Controller\UnknownControllerFactory::class,
6047
            \LeadersLinked\Controller\AptitudeController::class => \LeadersLinked\Factory\Controller\AptitudeControllerFactory::class,
5947
            \LeadersLinked\Controller\TestController::class => \LeadersLinked\Factory\Controller\TestControllerFactory::class,
6048
            \LeadersLinked\Controller\HobbyAndInterestController::class => \LeadersLinked\Factory\Controller\HobbyAndInterestControllerFactory::class,
5948
        ],
6049
        ],
5949
        'aliases' => [
6050
        'aliases' => [
5950
            '\LeadersLinked\Controller\AuthController' => \LeadersLinked\Controller\AuthController::class,
6051
            '\LeadersLinked\Controller\AuthController' => \LeadersLinked\Controller\AuthController::class,
Línea 6041... Línea 6142...
6041
            '\LeadersLinked\Controller\CommunicationInboxController' => \LeadersLinked\Controller\CommunicationInboxController::class,
6142
            '\LeadersLinked\Controller\CommunicationInboxController' => \LeadersLinked\Controller\CommunicationInboxController::class,
6042
            '\LeadersLinked\Controller\InMailController' => \LeadersLinked\Controller\InMailController::class,
6143
            '\LeadersLinked\Controller\InMailController' => \LeadersLinked\Controller\InMailController::class,
6043
            '\LeadersLinked\Controller\ReportController' => \LeadersLinked\Controller\ReportController::class,
6144
            '\LeadersLinked\Controller\ReportController' => \LeadersLinked\Controller\ReportController::class,
6044
            '\LeadersLinked\Controller\UnknownController' => \LeadersLinked\Controller\UnknownController::class,
6145
            '\LeadersLinked\Controller\UnknownController' => \LeadersLinked\Controller\UnknownController::class,
6045
            '\LeadersLinked\Controller\TestController' => \LeadersLinked\Controller\TestController::class,
6146
            '\LeadersLinked\Controller\TestController' => \LeadersLinked\Controller\TestController::class,
-
 
6147
            '\LeadersLinked\Controller\AptitudeController' => \LeadersLinked\Controller\AptitudeController::class,
-
 
6148
            '\LeadersLinked\Controller\HobbyAndInterestController' => \LeadersLinked\Controller\HobbyAndInterestController::class,
6046
        ]
6149
        ]
6047
    ],
6150
    ],
6048
    'laminas-cli' => [
6151
    'laminas-cli' => [
6049
        'commands' => [
6152
        'commands' => [
6050
        ]
6153
        ]