-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcategory.php
138 lines (113 loc) · 3.84 KB
/
category.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<?php
/**
*
* Handles adding and viewing categories.
*
* @package ShopSmart
*/
#-------------------#
# CONSTANTS #
#-------------------#
/**
* Define user for database.
*
* @var string
*/
define ( DB_USER, 'member');
#-------------------#
# LOAD CONFIG #
#-------------------#
require_once "./conf/config.php";
#-------------------#
# User Variables #
#-------------------#
$user_login = Session::get_session('user_login_obj');
$action = $_GET['action'];
$cat_id = $_GET['id'];
#-------------------#
# Main Body #
#-------------------#
// Make sure user is logged in
if (! $user_login instanceof User_Login ) {
header( "Location: ./join.php");
}
if (! $user_login->login_exists() ) {
header( "Location: ./join.php");
}
$header_data = array( 'name' => $user_login->name );
switch ( $action ) {
case 'edit':
//Make sure cat is real cat
if (! is_numeric( $cat_id )) {
Error::error_msg( 'Invalid category id.' );
}
$cat = Category::get_cat_by_id( $cat_id );
if ( Category::is_cat( $cat )) {
$form_data = array( 'cat_id' => $cat_id, 'cat_name' => $cat->cat_name,
'update' => true);
// Load category forms template
View::render_template( 'header.php', $header_data );
View::render_template( 'forms/category.php', $form_data );
View::render_template( 'footer.php' );
exit;
}
break;
case 'add':
//Load category forms template
View::render_template( 'header.php', $header_data );
View::render_template( 'forms/category.php');
View::render_template( 'footer.php' );
exit;
case 'new':
if (! empty($_POST )) {
//Try adding category
$cat_val = Category::insert_cat();
// Check for errors
if ( Error::is_error( $cat_val )) {
$error = $cat_val->get_error_msg();
View::render_template( 'header.php', $header_data );
View::render_template( 'forms/category', $_POST, $error );
View::render_template( 'footer.php' );
exit;
}
//Redirect to views template
header( "Location: ./category.php?action=view&id=$cat_val");
exit;
}
break;
case 'view':
// Make sure cat_id is real cateogory
$cat_obj = Category::get_cat_by_id( $cat_id );
if ( is_cat( $cat_obj )) {
// Get items in category
$item_data = Item::get_items_by_cat( $cat_id );
$items = list_all_items( $item_data );
//Build array of categories
$cat_objs = Category::get_all_cats();
foreach ( $cat_objs as $cat ) {
$cat_data[$cat->cat_id] = $cat->cat_name;
}
$data = array( 'items' => $items, 'cat_data' => $cat_data,
'cat_name' => $cat_obj->cat_name,
'cat_id' => $cat_obj->cat_id );
View::render_template( 'header.php', $header_data );
View::render_template( 'views/items.php', $data );
View::render_template( 'footer.php' );
exit;
}
break;
}
//Build array of categories
$cat_objs = Category::get_all_cats();
foreach ( $cat_objs as $cat ) {
$cat_data[$cat->cat_id] = $cat->cat_name;
}
// Get all items
$item_data = Item::get_all_items();
$items = list_all_items( $item_data );
// Default view loads all items
$data = array( 'items' => $items, 'cat_data' => $cat_data );
View::render_template( 'header.php', $header_data );
View::render_template( 'views/items.php', $data );
View::render_template( 'footer.php' );
?>