80 lines
2.7 KiB
PHP
80 lines
2.7 KiB
PHP
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
|
|
/*
|
|
| -------------------------------------------------------------------------
|
|
| URI ROUTING
|
|
| -------------------------------------------------------------------------
|
|
| This file lets you re-map URI requests to specific controller functions.
|
|
|
|
|
| Typically there is a one-to-one relationship between a URL string
|
|
| and its corresponding controller class/method. The segments in a
|
|
| URL normally follow this pattern:
|
|
|
|
|
| example.com/class/method/id/
|
|
|
|
|
| In some instances, however, you may want to remap this relationship
|
|
| so that a different class/function is called than the one
|
|
| corresponding to the URL.
|
|
|
|
|
| Please see the user guide for complete details:
|
|
|
|
|
| http://codeigniter.com/user_guide/general/routing.html
|
|
|
|
|
| -------------------------------------------------------------------------
|
|
| RESERVED ROUTES
|
|
| -------------------------------------------------------------------------
|
|
|
|
|
| There area two reserved routes:
|
|
|
|
|
| $route['default_controller'] = 'welcome';
|
|
|
|
|
| This route indicates which controller class should be loaded if the
|
|
| URI contains no data. In the above example, the "welcome" class
|
|
| would be loaded.
|
|
|
|
|
| $route['404_override'] = 'errors/page_missing';
|
|
|
|
|
| This route will tell the Router what URI segments to use if those provided
|
|
| in the URL cannot be matched to a valid route.
|
|
|
|
|
*/
|
|
|
|
$route['default_controller'] = "login";
|
|
$route['404_override'] = 'error';
|
|
|
|
|
|
/*********** USER DEFINED ROUTES *******************/
|
|
|
|
$route['loginMe'] = 'login/loginMe';
|
|
$route['dashboard'] = 'user';
|
|
$route['logout'] = 'user/logout';
|
|
$route['userListing'] = 'user/userListing';
|
|
$route['userListing/(:num)'] = "user/userListing/$1";
|
|
$route['addNew'] = "user/addNew";
|
|
$route['addPO'] = "purchaseorder/addPO";
|
|
$route['PurchaseOrderList'] = "purchaseorder/purchaseorderListing";
|
|
$route['supplierList'] = "supplier/Supplierlist";
|
|
//$route['Mainpage'] = "pages/AssetDetails";
|
|
//$route['Mainpage'] = "pages/CostDetails";
|
|
|
|
|
|
$route['addNewUser'] = "user/addNewUser";
|
|
$route['editOld'] = "user/editOld";
|
|
$route['editOld/(:num)'] = "user/editOld/$1";
|
|
$route['editUser'] = "user/editUser";
|
|
$route['deleteUser'] = "user/deleteUser";
|
|
$route['loadChangePass'] = "user/loadChangePass";
|
|
$route['changePassword'] = "user/changePassword";
|
|
$route['pageNotFound'] = "user/pageNotFound";
|
|
$route['checkEmailExists'] = "user/checkEmailExists";
|
|
|
|
$route['forgotPassword'] = "login/forgotPassword";
|
|
|
|
$route['PO'] = 'PO';
|
|
$route['PO/addPO'] = 'PO/addPO';
|
|
|
|
$route['PO/edit/(:any)'] = 'PO/edit/$1';
|
|
|
|
$route['PO/view/(:any)'] = 'PO/view/$1';
|
|
$route['PO/(:any)'] = 'PO/view/$1';
|
|
/* End of file routes.php */
|
|
/* Location: ./application/config/routes.php */ |