1
0
mirror of https://github.com/owncloud/bookmarks.git synced 2024-12-02 06:24:11 +01:00
OwncloudBookmarksOfficial/templates/list.php

63 lines
2.0 KiB
PHP
Raw Normal View History

<?php
/**
2012-02-22 16:04:17 +01:00
* Copyright (c) 2011 Marvin Thomas Rabe <mrabe@marvinrabe.de>
* 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 13:57:18 +02:00
<input type="hidden" id="bookmarkFilterTag" value="<?php if(isset($_GET['tag'])) echo OCP\Util::sanitizeHTML($_GET['tag']); ?>" />
<div id="controls">
2012-06-27 16:32:04 +02:00
<input type="submit" value="<?php echo $l->t('New bookmark'); ?>" id="bookmark_add_submit" />
2011-08-15 22:05:07 +02:00
</div>
2012-06-27 16:32:04 +02:00
<div id="leftcontent">
<p id="tag_filter">
<input type="text" placeholder="Filter By tag" value="<?php if(isset($_GET['tag'])) echo OCP\Util::sanitizeHTML($_GET['tag']); ?>"/>
2012-06-27 16:32:04 +02:00
</p>
<ul class="tag_list">
<?php foreach($_['tags'] as $tag):?>
<li><span class="tag"><?php echo $tag['tag'];?></span>
<p class="tags_actions">
<span class="bookmark_edit">
<img class="svg" src="<?php echo OCP\image_path('core','actions/rename.svg') ?>" title="Edit">
</span>
<span class="bookmark_delete">
<img class="svg" src="<?php echo OCP\image_path('core','actions/delete.svg') ?>" title="Delete">
</span>
</p>
<em><?php echo $tag['nbr'];?></em>
</li>
2012-06-27 16:32:04 +02:00
<?php endforeach;?>
</ul>
<hr />
<ul class="share_list">
<?php foreach($_['shared'] as $users):?>
<li><span class="tag"><?php echo $users['name'];?></span>
<p class="tags_actions">
<span class="bookmark_edit">
<img class="svg" src="<?php echo OCP\image_path('core','actions/rename.svg') ?>" title="Edit">
</span>
<span class="bookmark_delete">
<img class="svg" src="<?php echo OCP\image_path('core','actions/delete.svg') ?>" title="Delete">
</span>
</p>
<em><?php echo $users['nbr'];?></em>
</li>
<?php endforeach;?>
<ul>
</div>
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');
require_once(OC_App::getAppPath('bookmarks') .'/templates/bookmarklet.php');
createBookmarklet();
?>
</div>