diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2011-08-24 22:16:44 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2011-08-24 22:16:44 +0200 |
commit | 7cd592e055c8519d08cbfcb370572810b3edc96b (patch) | |
tree | 9bb4c4d79404ed176a925468e85f84a8d71d02d8 /apps/bookmarks/templates | |
parent | 365c4fdae24ea9f04f3c92f26182d148a8363776 (diff) | |
download | nextcloud-server-7cd592e055c8519d08cbfcb370572810b3edc96b.tar.gz nextcloud-server-7cd592e055c8519d08cbfcb370572810b3edc96b.zip |
Added a Bookmarklet for the Bookmarks app
Diffstat (limited to 'apps/bookmarks/templates')
-rw-r--r-- | apps/bookmarks/templates/addBm.php | 8 | ||||
-rw-r--r-- | apps/bookmarks/templates/list.php | 1 |
2 files changed, 9 insertions, 0 deletions
diff --git a/apps/bookmarks/templates/addBm.php b/apps/bookmarks/templates/addBm.php new file mode 100644 index 00000000000..cbc4910e1ae --- /dev/null +++ b/apps/bookmarks/templates/addBm.php @@ -0,0 +1,8 @@ +<div class="bookmarks_addBm"> + <p><label class="bookmarks_label">Address</label><input type="text" id="bookmark_add_url" class="bookmarks_input" value="<? echo $_['URL']; ?>"/></p> + <p><label class="bookmarks_label">Title</label><input type="text" id="bookmark_add_title" class="bookmarks_input" value="<? echo $_['TITLE']; ?>" /></p> + <p><label class="bookmarks_label">Description</label><input type="text" id="bookmark_add_description" class="bookmarks_input" value="<? echo $_['DESCRIPTION']; ?>" /></p> + <p><label class="bookmarks_label">Tags</label><input type="text" id="bookmark_add_tags" class="bookmarks_input" /></p> + <p><label class="bookmarks_label"> </label><label class="bookmarks_hint">Hint: Use space to separate tags.</label></p> + <p><label class="bookmarks_label"></label><input type="submit" id="bookmark_add_submit" /></p> +</div>
\ No newline at end of file diff --git a/apps/bookmarks/templates/list.php b/apps/bookmarks/templates/list.php index a9e65b68873..d7d37257a8a 100644 --- a/apps/bookmarks/templates/list.php +++ b/apps/bookmarks/templates/list.php @@ -2,6 +2,7 @@ <h2 class="bookmarks_headline"><?php echo isset($_GET["tag"]) ? 'Bookmarks with tag: ' . urldecode($_GET["tag"]) : 'All bookmarks'; ?></h2> <div class="bookmarks_menu"> <input type="button" class="bookmarks_addBtn" value="Add Bookmark" /> + <a type="button" class="bookmarks_addBml" href="javascript:var url = encodeURI(location.href);window.open('<?php echo (isset($_SERVER['HTTPS']) ? 'https://' : 'http://') . $_SERVER['HTTP_HOST'] . OC_Helper::linkTo('bookmarks', 'addBm.php'); ?>?url='+url, 'owncloud-bookmarks');" title="Drag this to your browser bookmarks and click it, when you want to bookmark a webpage.">Bookmarklet</a> </div> <div class="bookmarks_add"> <p><label class="bookmarks_label">Address</label><input type="text" id="bookmark_add_url" class="bookmarks_input" /></p> |