2011-10-08 15:10:49 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2012-02-22 19:04:17 +04:00
|
|
|
* Copyright (c) 2011 Marvin Thomas Rabe <mrabe@marvinrabe.de>
|
2011-10-08 15:10:49 +04:00
|
|
|
* Copyright (c) 2011 Arthur Schiwon <blizzz@arthur-schiwon.de>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
?>
|
2012-06-21 15:57:18 +04:00
|
|
|
<input type="hidden" id="bookmarkFilterTag" value="<?php if(isset($_GET['tag'])) echo OCP\Util::sanitizeHTML($_GET['tag']); ?>" />
|
2011-10-08 15:54:45 +04:00
|
|
|
<div id="controls">
|
2011-09-13 15:08:11 +04:00
|
|
|
<input type="hidden" id="bookmark_add_id" value="0" />
|
2012-02-23 02:22:17 +04:00
|
|
|
<input type="text" id="bookmark_add_url" placeholder="<?php echo $l->t('Address'); ?>" class="bookmarks_input" />
|
|
|
|
<input type="text" id="bookmark_add_title" placeholder="<?php echo $l->t('Title'); ?>" class="bookmarks_input" />
|
|
|
|
<input type="text" id="bookmark_add_tags" placeholder="<?php echo $l->t('Tags'); ?>" class="bookmarks_input" />
|
2012-05-08 23:04:06 +04:00
|
|
|
<input type="submit" value="<?php echo $l->t('Save bookmark'); ?>" id="bookmark_add_submit" />
|
2011-08-16 00:05:07 +04:00
|
|
|
</div>
|
|
|
|
<div class="bookmarks_list">
|
2012-02-20 05:18:27 +04:00
|
|
|
</div>
|
2012-02-23 02:58:38 +04:00
|
|
|
<div id="firstrun" style="display: none;">
|
2012-02-23 01:38:05 +04:00
|
|
|
<?php
|
2012-02-23 02:08:50 +04:00
|
|
|
echo $l->t('You have no bookmarks');
|
2012-06-04 01:13:30 +04:00
|
|
|
require_once(OC_App::getAppPath('bookmarks') .'/templates/bookmarklet.php');
|
2012-02-23 02:08:50 +04:00
|
|
|
createBookmarklet();
|
2012-02-23 01:38:05 +04:00
|
|
|
?>
|
2012-02-20 05:18:27 +04:00
|
|
|
</div>
|