-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathroute.php
50 lines (39 loc) · 1.49 KB
/
route.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?php
$app_route = array(
"dashboard" => "apps/dashboard/index.php",
"profile" => "apps/profile/index.php",
"users" => "apps/users/index.php",
"users/view" => "apps/users/view.php",
"users/add" => "apps/users/add.php",
"users/edit" => "apps/users/edit.php",
"system" => "apps/system/index.php",
"category" => "apps/category/index.php",
"type" => "apps/type/index.php",
"status" => "apps/status/index.php",
"brand" => "apps/brand/index.php",
"inventory" => "apps/inventory/index.php",
"inventory/add" => "apps/inventory/add.php",
"inventory/edit" => "apps/inventory/edit.php",
"repair" => "apps/repair/index.php",
"repair/add" => "apps/repair/add.php",
"repair/edit" => "apps/repair/edit.php",
);
$app_route_js = array(
"dashboard" => "apps/dashboard/js/index.js",
"profile" => "apps/profile/js/index.js",
"users" => "apps/users/js/index.js",
"users/add" => "apps/users/js/add.js",
"users/edit" => "apps/users/js/edit.js",
"system" => "apps/system/js/index.js",
"category" => "apps/category/js/index.js",
"type" => "apps/type/js/index.js",
"status" => "apps/status/js/index.js",
"brand" => "apps/brand/js/index.js",
"inventory" => "apps/inventory/js/index.js",
"inventory/add" => "apps/inventory/js/add.js",
"inventory/edit" => "apps/inventory/js/edit.js",
"repair" => "apps/repair/js/index.js",
"repair/add" => "apps/repair/js/add.js",
"repair/edit" => "apps/repair/js/edit.js",
);
?>