source: pro-violet-viettel/sourcecode/application/config/routes.php @ 424

Last change on this file since 424 was 424, checked in by namnd, 11 years ago
File size: 4.9 KB
Line 
1<?php  if ( ! defined('BASEPATH')) exit('No direct script access allowed');
2/*
3| -------------------------------------------------------------------------
4| URI ROUTING
5| -------------------------------------------------------------------------
6| This file lets you re-map URI requests to specific controller functions.
7|
8| Typically there is a one-to-one relationship between a URL string
9| and its corresponding controller class/method. The segments in a
10| URL normally follow this pattern:
11|
12|       example.com/class/method/id/
13|
14| In some instances, however, you may want to remap this relationship
15| so that a different class/function is called than the one
16| corresponding to the URL.
17|
18| Please see the user guide for complete details:
19|
20|       http://codeigniter.com/user_guide/general/routing.html
21|
22| -------------------------------------------------------------------------
23| RESERVED ROUTES
24| -------------------------------------------------------------------------
25|
26| There area two reserved routes:
27|
28|       $route['default_controller'] = 'welcome';
29|
30| This route indicates which controller class should be loaded if the
31| URI contains no data. In the above example, the "welcome" class
32| would be loaded.
33|
34|       $route['404_override'] = 'errors/page_missing';
35|
36| This route will tell the Router what URI segments to use if those provided
37| in the URL cannot be matched to a valid route.
38|
39*/
40
41$route['default_controller'] = "frontend/home";
42$route['404_override'] = '';
43
44$route['violetservice/soanbai/mo'] = 'services/viettel/mo';
45$route['admin'] = 'admin/home';
46$route['admin/cong_tac_vien'] = 'admin/collaborator';
47$route['admin/cong_tac_vien/trang'] = 'admin/collaborator/getCollaborators/1';
48$route['admin/cong_tac_vien/them'] = 'admin/collaborator/addCollaborator';
49$route['admin/cong_tac_vien/trang/:any'] = 'admin/collaborator/getCollaborators/$1';
50$route['admin/cong_tac_vien/test'] = 'admin/collaborator/test';
51$route['admin/cong_tac_vien/xem/:any'] = 'admin/collaborator/viewUser';
52$route['admin/cong_tac_vien/sua/:any'] = 'admin/collaborator/editUser';
53$route['admin/cong_tac_vien/xoa/:any'] = 'admin/collaborator/deleteUser';
54$route['admin/cong_tac_vien/xoa_cong_tac_vien'] = 'admin/collaborator/dodeleteUser';
55$route['admin/cong_tac_vien/cap_nhat'] = 'admin/collaborator/updateUser';
56
57
58$route['admin/mau_tin_nhan'] = 'admin/smstemplate';
59$route['admin/mau_tin_nhan/trang'] = 'admin/smstemplate/getSmstemplates/1';
60$route['admin/mau_tin_nhan/them'] = 'admin/smstemplate/addSmstemplate';
61$route['admin/mau_tin_nhan/trang/:any'] = 'admin/smstemplate/getSmstemplates/$1';
62$route['admin/mau_tin_nhan/test'] = 'admin/smstemplate/test';
63$route['admin/mau_tin_nhan/xem/:any'] = 'admin/smstemplate/viewSms';
64$route['admin/mau_tin_nhan/sua/:any'] = 'admin/smstemplate/editSms';
65$route['admin/mau_tin_nhan/xoa/:any'] = 'admin/smstemplate/deleteSms';
66$route['admin/mau_tin_nhan/xoa_tin_nhan'] = 'admin/smstemplate/dodeleteSms';
67$route['admin/mau_tin_nhan/cap_nhat'] = 'admin/smstemplate/updateSms';
68
69$route['admin/doanh_thu_tong_hop'] = 'admin/report';
70$route['admin/doanh_thu_tong_hop/trang'] = 'admin/report/getSmstemplates/1';
71$route['admin/doanh_thu_tong_hop/them'] = 'admin/report/addSmstemplate';
72$route['admin/doanh_thu_tong_hop/trang/:any'] = 'admin/report/getSmstemplates/$1';
73$route['admin/doanh_thu_tong_hop/test'] = 'admin/report/test';
74$route['admin/doanh_thu_tong_hop/xem/:any'] = 'admin/report/viewSms';
75$route['admin/doanh_thu_tong_hop/sua/:any'] = 'admin/report/editSms';
76$route['admin/doanh_thu_tong_hop/xoa/:any'] = 'admin/report/deleteSms';
77$route['admin/doanh_thu_tong_hop/xoa_tin_nhan'] = 'admin/report/dodeleteSms';
78$route['admin/doanh_thu_tong_hop/cap_nhat'] = 'admin/report/updateSms';
79
80
81$route['admin/quan_tri_vien'] = 'admin/admin_acc';
82$route['admin/quan_tri_vien/trang'] = 'admin/admin_acc/get_admins/1';
83$route['admin/quan_tri_vien/trang/:any'] = 'admin/admin_acc/get_admins/$1';
84$route['admin/quan_tri_vien/them'] = 'admin/admin_acc/add_admin';
85$route['admin/quan_tri_vien/sua/:any'] = 'admin/admin_acc/edit_admin/$1';
86$route['admin/quan_tri_vien/xoa/:any'] = 'admin/admin_acc/delete_admin/$1';
87$route['admin/quan_tri_vien/cap_nhat'] = 'admin/admin_acc/update_admin';
88$route['admin/quan_tri_vien/xem/:any'] = 'admin/admin_acc/get_admin_by_id/$1';
89$route['admin/quan_tri_vien/thong_tin_ca_nhan'] = 'admin/admin_acc/admin_profile';
90$route['admin/quan_tri_vien/cap_nhat_thong_tin_ca_nhan'] = 'admin/admin_acc/update_info';
91$route['admin/quan_tri_vien/doi_mat_khau'] = 'admin/admin_acc/change_password';
92
93$route['admin/nguoi_dung'] = 'admin/user';
94$route['admin/nguoi_dung/trang'] = 'admin/user/get_users/1';
95$route['admin/nguoi_dung/trang/:any'] = 'admin/user/get_users/$1';
96$route['admin/nguoi_dung/them'] = 'admin/user/add_user';
97$route['admin/nguoi_dung/sua/:any'] = 'admin/user/edit_user/$1';
98$route['admin/nguoi_dung/xoa/:any'] = 'admin/user/delete_user/$1';
99$route['admin/nguoi_dung/id/:any'] = 'admin/user/get_user_by_id/$1';
100
101/* End of file routes.php */
102/* Location: ./application/config/routes.php */
Note: See TracBrowser for help on using the repository browser.