<?php
/*
* Bookmark Edit Form
*
* Copyright (c) 2003-4 St. Christopher House
*
* Developed by The Working Group Inc.
*
* This program 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.
*
* This program 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 this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
* @version $Id: BookmarkEditForm.html,v 1.9 2004/09/16 19:10:00 darcy Exp $
*
*/
// Set title
$GLOBALS['CLN_PAGE_TITLE'] = 'Edit General Bookmark Information';
$cleanURL = cleanURL($GLOBALS['path']);;
$params = 'editKoId=' . $this->_super->koId . '&editProcess=Content&subprocess=EditDetails';
$fullURL = appendToURL($cleanURL, $params);
?>
<p>Use this form to enter the general information about your bookmark list. You will use another form to enter the actual links.</p>
<form name="bookmarkDetails" action="<?php echo $fullURL; ?>" method="post">
<div class="clnFormLine">
<span class="clnFormLabel"><label for="bookmarkDescription">Description of the list:</label></span>
<span class="clnFormElement"><textarea name="bookmarkDescription" rows="3" cols="30"><?php echo $this->description; ?></textarea>
</span>
</div>
<?php
$sessionObject = 'KO';
include("interfaces/simpleMetadata.html");
?>
<div class="clnFormLine">
<span class="clnFormLabel"> </span>
<span class="clnFormElement"><input class="clnFormInput" id="submitBookmarkDetails" type="submit" name="submitBookmarkDetails" value="<?php echo ADMIN_BTN_SUBMIT_CHANGES; ?>" /></span>
</div>
</form>