2011-10-08 13:11:13 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2012-02-22 16:04:17 +01:00
|
|
|
* Copyright (c) 2011 Marvin Thomas Rabe <mrabe@marvinrabe.de>
|
2011-10-08 13:11:13 +02:00
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
?>
|
2012-07-03 15:55:51 +02:00
|
|
|
|
2012-10-31 22:31:43 +01:00
|
|
|
<fieldset class="personalblock">
|
|
|
|
<legend><strong><?php echo $l->t('Bookmarklet <br />');?></strong></legend>
|
|
|
|
<?php
|
|
|
|
require_once 'bookmarklet.php';
|
|
|
|
createBookmarklet();
|
|
|
|
?>
|
|
|
|
</fieldset>
|
|
|
|
|
|
|
|
<form id="import_bookmark" action="<?php echo OCP\Util::linkTo( "bookmarks", "ajax/import.php" );?>" method="post" enctype="multipart/form-data">
|
2012-07-03 15:55:51 +02:00
|
|
|
<fieldset class="personalblock">
|
|
|
|
<?php if(isset($_['error'])): ?>
|
|
|
|
<h3><?php echo $_['error']['error']; ?></h3>
|
|
|
|
<p><?php echo $_['error']['hint']; ?></p>
|
|
|
|
<?php endif; ?>
|
|
|
|
|
2012-10-31 22:31:43 +01:00
|
|
|
<legend><strong><?php echo $l->t('Import bookmarks');?></strong></legend>
|
|
|
|
<p><input type="file" id="bm_import" name="bm_import" style="width:280px;">
|
|
|
|
<label for="bm_import"> <?php echo $l->t('html bookmarks file');?></label>
|
|
|
|
</p>
|
|
|
|
<input type="button" name="bm_import_btn" id="bm_import_submit" value="<?php echo $l->t('Import'); ?>" />
|
|
|
|
<div id="upload"></div>
|
2012-09-18 22:36:12 +02:00
|
|
|
|
|
|
|
<legend><strong><?php echo $l->t('Export bookmarks');?></strong></legend>
|
2012-10-10 21:05:34 +02:00
|
|
|
<p><a href="<?php echo OCP\Util::linkTo('bookmarks', 'export.php') ;?>"
|
|
|
|
class="button"><?php echo $l->t('Export'); ?></a></p>
|
2012-09-18 22:36:12 +02:00
|
|
|
|
2012-07-03 15:55:51 +02:00
|
|
|
</fieldset>
|
2012-09-18 21:39:53 +02:00
|
|
|
</form>
|