70 lines
2.4 KiB
PHP
70 lines
2.4 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
|
|
* --------------------------------------------------------------------
|
|
*/
|
|
|
|
// We get a performance increase by specifying the default
|
|
// route since we don't have to scan directories.
|
|
$routes->get('/', 'Home::index');
|
|
|
|
|
|
$routes->get('/projects', 'Home::projectstart');
|
|
|
|
$routes->get('/startproject', 'Projects::start');
|
|
$routes->post('/startproject', 'Projects::start');
|
|
|
|
$routes->get('/projects/dash', 'ProjectPages::projectView');
|
|
$routes->get('/projects/details/(:segment)', 'ProjectPages::projectDetails/$1');
|
|
$routes->get('/projects/blogs', 'ProjectPages::blogView');
|
|
$routes->get('/projects/operations', 'ProjectPages::opsView');
|
|
|
|
$routes->get('/projects/logout', 'ProjectPages::logOut');
|
|
|
|
$routes->get('/projects/works/wrenchboard', 'ProjectWorks::wrenchboard');
|
|
$routes->get('/projects/works/digifi', 'ProjectWorks::digifi');
|
|
$routes->get('/projects/works/mermsemr', 'ProjectWorks::mermsemr');
|
|
$routes->get('/projects/works/automedsysai','ProjectWorks::automedsysai');
|
|
|
|
/*
|
|
* --------------------------------------------------------------------
|
|
* 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';
|
|
}
|