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
|
<?php
/*
* This file is part of Zoph.
*
* Zoph 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 2 of the License, or
* (at your option) any later version.
*
* Zoph 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 Zoph; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
require_once("include.inc.php");
if (!$user->is_admin()) {
header("Location: " . add_sid("zoph.php"));
}
$category_id = getvar("category_id");
$category = new category($category_id);
$obj = &$category;
$redirect = "categories.php";
if($_action=="update" && getvar("sortorder")=="") {
// overiding the default action, to be able to clear the sortorder
$obj->set_fields($request_vars);
$obj->set("sortorder", "");
$obj->update();
$action = "display";
} else {
require_once("actions.inc.php");
}
if ($action == "display") {
header("Location: " . add_sid("categories.php?parent_category_id=" . $category->get("category_id")));
}
if ($action != "insert") {
$category->lookup();
$title = $category->get("category");
}
else {
$title = translate("New Category");
}
require_once("header.inc.php");
?>
<h1>
<?php
if ($action == "confirm") {
?>
<span class="actionlink">
<a href="category.php?_action=confirm&category_id=<?php echo $category->get("category_id") ?>"><?php echo translate("delete") ?></a> |
<a href="category.php?_action=edit&category_id=<?php echo $category->get("category_id") ?>"><?php echo translate("cancel") ?></a>
</span>
<?php echo translate("delete category") ?>
</h1>
<div class="main">
<?php echo sprintf(translate("Confirm deletion of '%s' and its subcategories:") , $category->get("category")) ?>
<?php
}
else {
?>
<span class="actionlink">
<a href="categories.php?parent_category_id=<?php echo $category->get("category_id") ?>"><?php echo translate("return") ?></a> |
<a href="category.php?_action=delete&category_id=<?php echo $category->get("category_id") ?>"><?php echo translate("delete") ?></a>
</span>
<?php echo translate("category") ?>
</h1>
<div class="main">
<form action="category.php">
<table id="category">
<tr><td>
<input type="hidden" name="_action" value="<?php echo $action ?>">
<input type="hidden" name="category_id" value="<?php echo $category->get("category_id") ?>">
</td></tr>
<?php echo create_field_html($category->get_edit_array()) ?>
<tr>
<td colspan="2" class="center">
<input type="submit" value="<?php echo translate($action, 0) ?>">
</td>
</tr>
</table>
</form>
<?php
}
?>
</div>
<?php
require_once("footer.inc.php");
?>
|