1
0
mirror of https://github.com/owncloud/bookmarks.git synced 2024-11-30 05:24:09 +01:00
OwncloudBookmarksOfficial/templates/addBm.php
2012-08-30 21:04:53 +00:00

56 lines
2.3 KiB
PHP

<form class="addBm" method="post" action="<?php echo OCP\Util::linkTo('bookmarks', 'ajax/editBookmark.php');?>">
<?php if(!isset($embedded) || !$embedded):?>
<script>
var fullTags = <?php echo $_['tags'];?>;
$(document).ready(function() {
$('body').bookmark_dialog({
'on_success': function(){ self.close(); }
});
});
</script>
<h1><?php echo $l->t('Add a bookmark');?></h1>
<div class="close_btn"><a href="javascript:self.close()" class="ui-icon ui-icon-closethick"><?php echo $l->t('Close');?></a></div>
<?php endif;?>
<fieldset class="bm_desc">
<ul>
<li>
<label for="title"><strong><?php echo $l->t('Title');?></strong></label>
<input type="text" name="title" class="title" value="<?php echo $_['bookmark']['title']; ?>" placeholder="<?php echo $l->t('The title of the page');?>" />
</li>
<li>
<label for="url"><strong><?php echo $l->t('Address');?></strong></label>
<div class="url-ro">
<code><?php echo $_['bookmark']['url']; ?></code>
<img class="svg action" src="<?php echo image_path('core','actions/rename.svg')?>"
alt="<?php echo $l->t('Edit');?>" title="<?php echo $l->t('Edit');?>" />
</div>
<input type="text" name="url" class="url_input" value="<?php echo $_['bookmark']['url']; ?>" placeholder="<?php echo $l->t('The address of the page');?>" />
</li>
<li>
<label for="tags"><strong><?php echo $l->t('Tags');?></strong></label>
<ul class="tags" >
<?php foreach($_['bookmark']['tags'] as $tag):?>
<li><?php echo $tag;?></li>
<?php endforeach;?>
</ul>
</li>
<li>
<label for="desc"><strong><?php echo $l->t('Description');?></strong></label>
<textarea name="desc" class="desc" value="<?php echo $_['bookmark']['desc']; ?>" placeholder="<?php echo $l->t('Description of the page');?>"></textarea>
</li>
<li>
<input type="submit" class="submit" value="<?php echo $l->t("Submit");?>" />
<input type="checkbox" <?php if($_['bookmark']['is_public']){echo 'checked="checked"';} ?> id="is_public" name="is_public">
<label for="is_public" class="is_public_label"><?php echo $l->t("Make this link public");?></label>
<input type="hidden" class="record_id" value="" name="record_id" />
<input type="hidden" name="requesttoken" value="<?php echo $_['requesttoken'] ?>">
</li>
</ul>
</fieldset>
</form>