<?php
/*
* buzzword
* Copyright (c) 2003 Jon Tai
*
* $Id: editcategory.php 267 2004-03-31 03:14:55Z bradt $
*
* This file is part of buzzword.
*
* buzzword 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.
*
* buzzword 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 buzzword; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
require_once './config.inc';
force_admin_login();
$category = new links_category(import_links_category_key());
if (!$category->exists())
display_error('category does not exist');
if (get_request_var('category-submit')) {
$category->modified = time();
$category->is_private = get_request_var('is_private');
$category->is_hidden = get_request_var('is_hidden');
$category->title = ($title = get_request_var('title')) ? $title : 'category';
$category->description = get_request_var('description');
$category->allow_comments = get_request_var('allow_comments');
$category->update();
header('Location: index.php#category-'.$category->category_key);
exit;
}
include '../includes/header.inc';
?>
<table cellpadding="0" cellspacing="0" border="0" width="100%">
<tr>
<td id="content">
<h1>edit category</h1>
<div class="content-container">
<form name="category" method="post" action="editcategory.php">
<input type="hidden" name="category-submit" value="1">
<input type="hidden" name="c" value="<?php echo $category->category_key; ?>">
<p>category title:<br>
<input type="text" name="title" class="input" value="<?php echo htmlspecialchars($category->title); ?>"></p>
<p>category description:<br>
<?php echo toolbar_hook('category', 'description'); ?>
<textarea name="description" rows="10" cols="10" class="input"><?php echo htmlspecialchars($category->description); ?></textarea></p>
<p>category is private:
<input type="checkbox" name="is_private"<?php if ($category->is_private) echo ' checked'; ?>></p>
<p>category is hidden:
<input type="checkbox" name="is_hidden"<?php if ($category->is_hidden) echo ' checked'; ?>></p>
<p>allow comments:
<input type="checkbox" name="allow_comments"<?php if ($category->allow_comments) echo ' checked'; ?>></p>
<p><input type="submit" value="save" class="submit"></p>
</form>
</div>
</td>
</tr>
</table>
<?php
include '../includes/footer.inc';
?>