Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 17003 Rev 17007
Línea 3041... Línea 3041...
3041
                    ],
3041
                    ],
3042
                ]
3042
                ]
3043
            ],
3043
            ],
Línea 3044... Línea 3044...
3044
 
3044
 
-
 
3045
            /*             * * END KNOWLEDGE AREA ** */
-
 
3046
            
-
 
3047
            
-
 
3048
            
-
 
3049
            /*             * * START HABITS ** */
-
 
3050
            'habits' => [
-
 
3051
                'type' => Literal::class,
-
 
3052
                'options' => [
-
 
3053
                    'route' => '/habits',
-
 
3054
                    'defaults' => [
-
 
3055
                        'controller' => '\LeadersLinked\Controller\UnknownController',
-
 
3056
                        'action' => 'index'
-
 
3057
                    ]
-
 
3058
                ],
-
 
3059
                'may_terminate' => true,
-
 
3060
                'child_routes' => [
-
 
3061
                    'skills' => [
-
 
3062
                        'type' => Literal::class,
-
 
3063
                        'options' => [
-
 
3064
                            'route' => '/skills',
-
 
3065
                            'defaults' => [
-
 
3066
                                'controller' => '\LeadersLinked\Controller\HabitSkillController',
-
 
3067
                                'action' => 'index'
-
 
3068
                            ]
-
 
3069
                        ],
-
 
3070
                        'may_terminate' => true,
-
 
3071
                        'child_routes' => [
-
 
3072
                            'add' => [
-
 
3073
                                'type' => Literal::class,
-
 
3074
                                'options' => [
-
 
3075
                                    'route' => '/add',
-
 
3076
                                    'defaults' => [
-
 
3077
                                        'controller' =>  '\LeadersLinked\Controller\HabitSkillController',
-
 
3078
                                        'action' => 'add'
-
 
3079
                                    ]
-
 
3080
                                ]
-
 
3081
                            ],
-
 
3082
                            'edit' => [
-
 
3083
                                'type' => Segment::class,
-
 
3084
                                'options' => [
-
 
3085
                                    'route' => '/edit/:id',
-
 
3086
                                    'constraints' => [
-
 
3087
                                        'id' => '[A-Za-z0-9\-]+\=*'
-
 
3088
                                    ],
-
 
3089
                                    'defaults' => [
-
 
3090
                                        'controller' =>  '\LeadersLinked\Controller\HabitSkillController',
-
 
3091
                                        'action' => 'edit'
-
 
3092
                                    ]
-
 
3093
                                ]
-
 
3094
                            ],
-
 
3095
                            'delete' => [
-
 
3096
                                'type' => Segment::class,
-
 
3097
                                'options' => [
-
 
3098
                                    'route' => '/delete/:id',
-
 
3099
                                    'constraints' => [
-
 
3100
                                        'id' => '[A-Za-z0-9\-]+\=*'
-
 
3101
                                    ],
-
 
3102
                                    'defaults' => [
-
 
3103
                                        'controller' =>  '\LeadersLinked\Controller\HabitSkillController',
-
 
3104
                                        'action' => 'delete'
-
 
3105
                                    ]
-
 
3106
                                ]
-
 
3107
                            ],
-
 
3108
                            'users' => [
-
 
3109
                                'type' =>  Literal::class,
-
 
3110
                                'options' => [
-
 
3111
                                    'route' => '/users',
-
 
3112
                                    'defaults' => [
-
 
3113
                                        'controller' =>  '\LeadersLinked\Controller\HabitUserController',
-
 
3114
                                        'action' => 'index'
-
 
3115
                                    ]
-
 
3116
                                ],
-
 
3117
                                'may_terminate' => true,
-
 
3118
                                'child_routes' => [
-
 
3119
                                    'add' => [
-
 
3120
                                        'type' => Segment::class,
-
 
3121
                                        'options' => [
-
 
3122
                                            'route' => '/add/:id',
-
 
3123
                                            'constraints' => [
-
 
3124
                                                'id' => '[A-Za-z0-9\-]+\=*'
-
 
3125
                                            ],
-
 
3126
                                            'defaults' => [
-
 
3127
                                                'controller' =>  '\LeadersLinked\Controller\HabitUserController',
-
 
3128
                                                'action' => 'add'
-
 
3129
                                            ]
-
 
3130
                                        ]
-
 
3131
                                    ],
-
 
3132
                                    'edit' => [
-
 
3133
                                        'type' => Segment::class,
-
 
3134
                                        'options' => [
-
 
3135
                                            'route' => '/edit/:id/:user_id',
-
 
3136
                                            'constraints' => [
-
 
3137
                                                'id' => '[A-Za-z0-9\-]+\=*',
-
 
3138
                                                'user_id' => '[A-Za-z0-9\-]+\=*'
-
 
3139
                                            ],
-
 
3140
                                            'defaults' => [
-
 
3141
                                                'controller' =>  '\LeadersLinked\Controller\HabitUserController',
-
 
3142
                                                'action' => 'edit'
-
 
3143
                                            ]
-
 
3144
                                        ]
-
 
3145
                                    ],
-
 
3146
                                    'delete' => [
-
 
3147
                                        'type' => Segment::class,
-
 
3148
                                        'options' => [
-
 
3149
                                            'route' => '/delete/:id/:user_id',
-
 
3150
                                            'constraints' => [
-
 
3151
                                                'id' => '[A-Za-z0-9\-]+\=*',
-
 
3152
                                                'user_id' => '[A-Za-z0-9\-]+\=*'
-
 
3153
                                            ],
-
 
3154
                                            'defaults' => [
-
 
3155
                                                'controller' =>  '\LeadersLinked\Controller\HabitUserController',
-
 
3156
                                                'action' => 'delete'
-
 
3157
                                            ]
-
 
3158
                                        ]
-
 
3159
                                    ],
-
 
3160
                                    'upload' => [
-
 
3161
                                        'type' => Segment::class,
-
 
3162
                                        'options' => [
-
 
3163
                                            'route' => '/upload/:id',
-
 
3164
                                            'constraints' => [
-
 
3165
                                                'id' => '[A-Za-z0-9\-]+\=*',
-
 
3166
                                            ],
-
 
3167
                                            'defaults' => [
-
 
3168
                                                'controller' =>  '\LeadersLinked\Controller\HabitUserController',
-
 
3169
                                                'action' => 'upload'
-
 
3170
                                            ]
-
 
3171
                                        ]
-
 
3172
                                    ],
-
 
3173
 
-
 
3174
                                ]
-
 
3175
                            ],
-
 
3176
                            
-
 
3177
                        ]
-
 
3178
                    ],
-
 
3179
                ]
-
 
3180
            ],
-
 
3181
            
Línea 3045... Línea 3182...
3045
            /*             * * END KNOWLEDGE AREA ** */
3182
            /*             * * END HABITS ** */
3046
 
3183
 
3047
 
3184
 
Línea 6414... Línea 6551...
6414
            
6551
            
6415
            
6552
            
Línea -... Línea 6553...
-
 
6553
            \LeadersLinked\Controller\MediaCategoryController::class => \LeadersLinked\Factory\Controller\MediaCategoryControllerFactory::class,
-
 
6554
            \LeadersLinked\Controller\MediaFileController::class => \LeadersLinked\Factory\Controller\MediaFileControllerFactory::class,
-
 
6555
 
6416
            \LeadersLinked\Controller\MediaCategoryController::class => \LeadersLinked\Factory\Controller\MediaCategoryControllerFactory::class,
6556
            
6417
            \LeadersLinked\Controller\MediaFileController::class => \LeadersLinked\Factory\Controller\MediaFileControllerFactory::class,
6557
            \LeadersLinked\Controller\HabitSkillController::Class => \LeadersLinked\Factory\Controller\HabitSkillControllerFactory::class,
6418
 
6558
            \LeadersLinked\Controller\HabitUserController::Class => \LeadersLinked\Factory\Controller\HabitUserControllerFactory::class,
6419
        ],
6559
        ],
6420
        'aliases' => [
6560
        'aliases' => [
Línea 6552... Línea 6692...
6552
            '\LeadersLinked\Controller\ToolsController' => \LeadersLinked\Controller\ToolsController::Class,
6692
            '\LeadersLinked\Controller\ToolsController' => \LeadersLinked\Controller\ToolsController::Class,
Línea 6553... Línea 6693...
6553
            
6693
            
6554
            
6694
            
-
 
6695
            '\LeadersLinked\Controller\MediaCategoryController' => \LeadersLinked\Controller\MediaCategoryController::Class,
-
 
6696
            '\LeadersLinked\Controller\MediaFileController' => \LeadersLinked\Controller\MediaFileController::Class,
-
 
6697
            
-
 
6698
            
6555
            '\LeadersLinked\Controller\MediaCategoryController' => \LeadersLinked\Controller\MediaCategoryController::Class,
6699
            '\LeadersLinked\Controller\HabitSkillController' => \LeadersLinked\Controller\HabitSkillController::Class,
6556
            '\LeadersLinked\Controller\MediaFileController' => \LeadersLinked\Controller\MediaFileController::Class,
6700
            '\LeadersLinked\Controller\HabitUserController' => \LeadersLinked\Controller\HabitUserController::Class,
6557
        ]
6701
        ]
6558
    ],
6702
    ],
6559
    'laminas-cli' => [
6703
    'laminas-cli' => [