mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
71 lines
2.5 KiB
PHP
71 lines
2.5 KiB
PHP
<?php
|
|
|
|
namespace Config;
|
|
|
|
// Create a new instance of our RouteCollection class.
|
|
$routes = Services::routes();
|
|
|
|
// Load the system's routing file first, so that the app and ENVIRONMENT
|
|
// can override as needed.
|
|
if (file_exists(SYSTEMPATH . 'Config/Routes.php')) {
|
|
require SYSTEMPATH . 'Config/Routes.php';
|
|
}
|
|
|
|
/*
|
|
* --------------------------------------------------------------------
|
|
* Router Setup
|
|
* --------------------------------------------------------------------
|
|
*/
|
|
$routes->setDefaultNamespace('App\Controllers');
|
|
$routes->setDefaultController('Home');
|
|
$routes->setDefaultMethod('index');
|
|
$routes->setTranslateURIDashes(false);
|
|
$routes->set404Override();
|
|
$routes->setAutoRoute(true);
|
|
|
|
/*
|
|
* --------------------------------------------------------------------
|
|
* Route Definitions
|
|
* --------------------------------------------------------------------
|
|
*/
|
|
// JJO $routes->get('cliente', 'Impresion\Cliente::index');
|
|
// We get a performance increase by specifying the default
|
|
// route since we don't have to scan directories.
|
|
|
|
//WEB ROUTER ------------------------------------------------------
|
|
//------------------------------------------------------------------
|
|
$routes->get('/', 'Home::index');
|
|
$routes->get('lang/{locale}', 'Language::index');
|
|
|
|
//API ROUTER ------------------------------------------------------
|
|
//------------------------------------------------------------------
|
|
$routes->get('api/','Api::index');
|
|
$routes->get('api/status','Api::status');
|
|
$routes->post('api/signIn','Api::signIn');
|
|
|
|
//API ROUTER USER ------------------------------------------------------
|
|
//------------------------------------------------------------------
|
|
$routes->get('api/user/','Api::user/all');
|
|
$routes->get('api/user/(:segment)','Api::user/id/$1');
|
|
$routes->post('api/user/','Api::user/add');
|
|
$routes->put('api/user/(:segment)','Api::user/edit/$1');
|
|
$routes->delete('api/user/(:segment)','Api::user/delete/$1');
|
|
|
|
|
|
/*
|
|
* --------------------------------------------------------------------
|
|
* Additional Routing
|
|
* --------------------------------------------------------------------
|
|
*
|
|
* There will often be times that you need additional routing and you
|
|
* need it to be able to override any defaults in this file. Environment
|
|
* based routes is one such time. require() additional route files here
|
|
* to make that happen.
|
|
*
|
|
* You will have access to the $routes object within that file without
|
|
* needing to reload it.
|
|
*/
|
|
if (file_exists(APPPATH . 'Config/' . ENVIRONMENT . '/Routes.php')) {
|
|
require APPPATH . 'Config/' . ENVIRONMENT . '/Routes.php';
|
|
}
|