forked from craigrodway/printmaster
-
Notifications
You must be signed in to change notification settings - Fork 1
/
manufacturers.php
172 lines (109 loc) · 3.63 KB
/
manufacturers.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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
<?php
/*
Copyright (C) 2010 Craig A Rodway.
This file is part of Print Master.
Print Master is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Print Master is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Print Master. If not, see <http://www.gnu.org/licenses/>.
*/
// Include initialisation file
include_once('inc/core.php');
// Get action from query string
$action = fRequest::getValid('action', array('list', 'add', 'edit', 'delete'));
/**
* Default action - show list of manufacturers
*/
if ($action == 'list') {
// Get recordset object from table, ordered by name
$manufacturers = fRecordSet::build('Manufacturer', NULL, array('name' => 'asc'));
// Include page to show table
include 'views/manufacturers/index.php';
}
/**
* Add a new manufacturer
*/
if ($action == 'add') {
// Create new
$m = new Manufacturer();
// Try to get form values and save object if requested via POST method
if (fRequest::isPost()) {
try{
// Populat and save manufacturer object from form values
$m->populate();
$m->store();
// Set status message
fMessaging::create('affected', fURL::get(), $m->getName());
fMessaging::create('success', fURL::get(), 'The manufacturer ' . $m->getName() . ' was successfully added.');
// Redirect
$next = fRequest::getValid('next', array('index', 'add'));
if ($next === 'index')
{
fURL::redirect(fURL::get());
}
elseif ($next === 'add')
{
fURL::redirect(fURL::get() . '?action=add');
}
} catch(fExpectedException $e) {
fMessaging::create('error', fURL::get(), $e->getMessage());
}
}
include 'views/manufacturers/addedit.php';
}
/**
* Edit a manufacturer
*/
if ($action == 'edit') {
// Get ID
$id = fRequest::get('id', 'integer');
try {
// Get manufacturer via ID
$m = new Manufacturer($id);
if (fRequest::isPost()) {
// Update manufacturer object from POST data and save
$m->populate();
$m->store();
// Messaging
fMessaging::create('affected', fURL::get(), $m->getId());
fMessaging::create('success', fURL::get(), 'The manufacturer ' . $m->getName() . ' was successfully updated.');
fURL::redirect(fURL::get());
}
} catch (fNotFoundException $e) {
fMessaging::create('error', fURL::get(), 'The manufacturer requested, ID ' . $id . ', could not be found.');
fURL::redirect(fURL::get());
} catch (fExpectedException $e) {
fMessaging::create('error', fURL::get(), $e->getMessage());
}
include 'views/manufacturers/addedit.php';
}
/**
* Delete a manufacturer
*/
if($action == 'delete'){
// Get ID
$id = fRequest::get('id', 'integer');
try {
$m = new Manufacturer($id);
if (fRequest::isPost()) {
$m->delete();
fMessaging::create('success', fURL::get(), 'The manufacturer ' . $m->getName() . ' was successfully deleted.');
fURL::redirect(fURL::get());
}
} catch(fNotFoundException $e) {
fMessaging::create('error', fURL::get(), 'The manufacturer requested, ID ' . $id . ', could not be found.');
fURL::redirect($manage_url);
} catch(fExpectedException $e) {
fMessaging::create('error', fURL::get(), $e->getMessage());
} catch(fSQLException $e) {
fMessaging::create('error', fURL::get(), 'Database error: ' . $e->getMessage());
}
include 'views/manufacturers/delete.php';
}
?>