-
Notifications
You must be signed in to change notification settings - Fork 0
/
updatecategory.php
56 lines (49 loc) · 1.64 KB
/
updatecategory.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
<?php
require_once 'core/init.php';
$user = new User();
if (!$user->isLoggedIn()) {
Redirect::to('index.php');
}
$category = new Category(Input::get('cid'));
include_once 'includes/layout/header.php';
if (Input::exists()) {
if (Token::check(Input::get('token'))) {
$validate = new Validate();
$validation = $validate->check($_POST, array(
'name' => array(
'min' => 2,
'max' => 45)
));
if ($validate->passed()) {
// register user
try {
$category->update(array(
'name' => Input::get('name'),
'updated' => date('Y-m-d H:i:s')
), Input::get('cid'));
Session::flash('category', 'Category successfully updated');
Redirect::to('categories.php');
} catch (Exception $e) {
die($e->getMessage());
}
} else {
// output errors
foreach ($validate->errors() as $error) {
echo $error . '<br />';
}
}
}
}
?>
<form method="POST" action="" class="large-8 column large-centered">
<fieldset>
<legend>Update category</legend>
<div class="field">
<label for="name">Name:</label>
<input type="text" name="name" id="name" value="<?php echo escape($category->data()->name); ?>" />
</div>
<input type="hidden" name="token" value="<?php echo Token::generate(); ?>"/>
<input type="submit" value="Update!" class="button" />
</fieldset>
</form>
<?php include_once 'includes/layout/footer.php'; ?>