2011-10-08 13:10:49 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2012-02-22 16:04:17 +01:00
|
|
|
* Copyright (c) 2011 Marvin Thomas Rabe <mrabe@marvinrabe.de>
|
2011-10-08 13:10:49 +02: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-27 23:44:20 +02:00
|
|
|
<input type="hidden" id="bookmarkFilterTag" value="<?php echo $_['req_tag']; ?>" />
|
2011-10-08 13:54:45 +02:00
|
|
|
<div id="controls">
|
2012-08-13 21:58:46 +02:00
|
|
|
<input type="text" id="add_url" value="" placeholder="<?php echo $l->t('Address'); ?>"/>
|
|
|
|
<input type="submit" value="<?php echo $l->t('Add bookmark'); ?>" id="bookmark_add_submit" />
|
2012-07-02 00:12:59 +02:00
|
|
|
|
|
|
|
<div id="view_type">
|
|
|
|
<input type="button" class="list" value="<?php echo $l->t('List')?>" />
|
|
|
|
<input type="button" class="image" style="display:none" value="<?php echo $l->t('Image')?>" />
|
|
|
|
</div>
|
2011-08-15 22:05:07 +02:00
|
|
|
</div>
|
2012-06-27 16:32:04 +02:00
|
|
|
<div id="leftcontent">
|
2012-08-10 00:03:56 +02:00
|
|
|
<div class="centercontent">
|
|
|
|
<!--<img class="left_img svg" src="<?php echo OCP\image_path('bookmarks','triangle-w.svg'); ?>">
|
|
|
|
<img class="right_img svg" src="<?php echo OCP\image_path('bookmarks','triangle-e.svg'); ?>">-->
|
|
|
|
<span class="left_img"> <?php echo $l->t('Hide')?> <<</span>
|
|
|
|
<span class="right_img"> <?php echo $l->t('Show')?> >></span>
|
|
|
|
</div>
|
|
|
|
|
2012-06-27 16:32:04 +02:00
|
|
|
<p id="tag_filter">
|
2012-06-28 11:40:42 +02:00
|
|
|
<input type="text" placeholder="Filter By tag" value="<?php echo $_['req_tag']; ?>"/>
|
2012-06-27 16:32:04 +02:00
|
|
|
</p>
|
|
|
|
|
2012-06-27 23:44:20 +02:00
|
|
|
<label><?php echo $l->t('Related Tags'); ?></label>
|
2012-06-27 16:32:04 +02:00
|
|
|
<ul class="tag_list">
|
|
|
|
</ul>
|
2012-06-27 17:05:35 +02:00
|
|
|
|
2012-07-03 13:47:09 +02:00
|
|
|
</div>
|
2012-06-27 17:05:35 +02:00
|
|
|
|
2012-06-27 16:32:04 +02:00
|
|
|
<div id="rightcontent" class="rightcontent">
|
|
|
|
<div class="bookmarks_list"></div>
|
|
|
|
<div id="firstrun" style="display: none;">
|
|
|
|
<?php
|
|
|
|
echo $l->t('You have no bookmarks');
|
2012-06-29 11:33:13 +02:00
|
|
|
$embedded = true;
|
2012-06-27 16:32:04 +02:00
|
|
|
require_once(OC_App::getAppPath('bookmarks') .'/templates/bookmarklet.php');
|
|
|
|
createBookmarklet();
|
|
|
|
?>
|
2012-06-28 11:40:42 +02:00
|
|
|
</div>
|
|
|
|
<script>
|
|
|
|
var fullTags = <?php echo $_['tags'];?>;
|
2012-08-06 18:43:28 +02:00
|
|
|
var init_view = '<?php echo OCP\Config::getUserValue(OCP\USER::getUser(), 'bookmarks', 'currentview', 'text');?>';
|
2012-07-03 14:14:30 +02:00
|
|
|
var init_sidebar = '<?php echo OCP\Config::getUserValue(OCP\USER::getUser(), 'bookmarks', 'sidebar', 'true');?>';
|
2012-07-31 22:48:11 +02:00
|
|
|
var shot_provider = '<?php echo OCP\Config::getUserValue(OCP\USER::getUser(), 'bookmarks', 'shot_provider', 'http://screenshots.bookmarkly.com/thumb?url={url}');?>';
|
|
|
|
//http://api.thumbalizr.com/?width={width}&url={url}
|
2012-06-29 11:33:13 +02:00
|
|
|
</script>
|
|
|
|
<div id="edit_dialog" style="display:none;">
|
|
|
|
<?php include 'addBm.php';?>
|
|
|
|
</div>
|