<?php
/**
* The template file that draws the layout to export bookmarks
*
* @package be.nauta.booby.plugins.bookmarks.view
* @author Barry Nauta
* @copyright Barry Nauta
*
* This file is part of the Booby project.
* The booby project is located at the following location:
* http://www.nauta.be/booby/
*
* Copyright (c) 2003 - 2004 Barry Nauta
*
* The Booby project is released under the General Public License
* More detailes in the file 'gpl.html' or on the following
* website: <code>http://www.gnu.org</code> and look for licenses
*
* Enjoy :-)
*/
?>
<form action="BookmarkController.php" method="post"
name="exportBookmarks">
<select name="exportType">
<option value="Opera">Opera</option>
<option value="Netscape">Netscape/Mozilla</option>
</select>
<br />
<input type="hidden" name="action" value="exportBookmarks" />
<input type="hidden" name="parentId" value="<?php echo $parentId ?>" />
<input type="submit" name="exportSubmit" value="<?php echo $dictionary['submit'] ?>">
</form>
|