PHP Classes

File: importBookmarks.tpl.php

Recommend this page to a friend!
  Classes of barry@nauta.be   Bookmarks   importBookmarks.tpl.php   Download  
File: importBookmarks.tpl.php
Role: Application script
Content type: text/plain
Description: Importing bookmarks
Class: Bookmarks
Manage lists of bookmark with Web interface
Author: By
Last change:
Date: 20 years ago
Size: 1,230 bytes
 

Contents

Class file image Download
<?php
/**
 * The template file that draws the layout to import 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 enctype="multipart/form-data" action="BookmarkController.php"
    method="post" name="importBookmarks">
    <select name="importType">
        <option value="Opera">Opera</option>
        <option value="Netscape">Netscape/Mozilla</option>
    </select>
    <br />

    <?php echo $dictionary['file'] ?>:
    <input type="file" name="importFile"><br>
    <input type="hidden" name="parentId" value="<?php echo $parentId ?>" />
    <input type="hidden" name="action" value="importBookmarks" />
    <input type="hidden" name="MAX_FILE_SIZE" value="1000000">
    <input type="submit" name="importSubmit" value="<?php echo $dictionary['submit'] ?>">
</form>