bludit/admin/views/edit-post.php

79 lines
2.5 KiB
PHP
Raw Normal View History

2015-05-05 03:00:01 +02:00
<h2 class="title"><i class="fa fa-pencil"></i> Edit post</h2>
<form method="post" action="" class="forms">
2015-06-27 06:28:13 +02:00
<input type="hidden" id="jsKey" name="key" value="<?php echo $_Post->key() ?>">
2015-05-05 03:00:01 +02:00
<label>
Title
2015-06-27 06:28:13 +02:00
<input id="jsTitle" name="title" type="text" class="width-70" value="<?php echo $_Post->title() ?>">
2015-05-05 03:00:01 +02:00
</label>
<label>
Content <span class="forms-desc">HTML and Markdown code supported.</span>
2015-06-28 01:28:22 +02:00
<textarea name="content" rows="10" class="width-70"><?php echo $_Post->contentRaw(false) ?></textarea>
2015-05-05 03:00:01 +02:00
</label>
<?php
if($Site->advancedOptions()) {
2015-06-27 06:28:13 +02:00
echo '<div id="jsAdvancedOptions">';
2015-05-05 03:00:01 +02:00
}
else
{
2015-06-27 03:47:12 +02:00
echo '<p class="advOptions">Enable more features at <a href="'.HTML_PATH_ADMIN_ROOT.'settings#advanced">Settings->Advanced->Writting Settings</a></p>';
2015-06-27 06:28:13 +02:00
echo '<div id="jsAdvancedOptions" style="display:none">';
2015-05-05 03:00:01 +02:00
}
?>
<h4>Advanced options</h4>
<label>
Friendly url
<div class="input-groups width-50">
2015-06-27 06:28:13 +02:00
<span class="input-prepend"><?php echo $Site->urlPost() ?><span id="jsParentExample"></span></span>
<input id="jsSlug" type="text" name="slug" value="<?php echo $_Post->slug() ?>">
2015-05-05 03:00:01 +02:00
</div>
<span class="forms-desc">Short text no more than 150 characters. Special characters not allowed.</span>
</label>
<label>
Description
2015-06-27 06:28:13 +02:00
<input id="jsDescription" type="text" name="description" class="width-50" value="<?php echo $_Post->description() ?>">
2015-05-05 03:00:01 +02:00
<span class="forms-desc">This field is for Twitter/Facebook/Google+ descriptions. No more than 150 characters.</span>
</label>
<label>
Tags
2015-06-27 06:28:13 +02:00
<input id="jsTags" name="tags" type="text" class="width-50" value="<?php echo $_Post->tags() ?>">
2015-05-05 03:00:01 +02:00
<span class="forms-desc">Write the tags separeted by comma. eg: tag1, tag2, tag3</span>
</label>
</div>
<button class="btn btn-blue" name="publish"><i class="fa fa-sun-o fa-right"></i>Save</button>
<button class="btn" name="draft"><i class="fa fa-circle-o fa-right"></i>Draft</button>
<button class="btn" name="delete"><i class="fa fa-remove fa-right"></i>Delete</button>
</form>
<script>
$(document).ready(function()
{
2015-06-27 06:28:13 +02:00
var key = $("#jsKey").val();
2015-05-05 03:00:01 +02:00
2015-06-27 06:28:13 +02:00
$("#jsTitle").keyup(function() {
2015-05-05 03:00:01 +02:00
var slug = $(this).val();
2015-06-27 06:28:13 +02:00
checkSlugPost(slug, key, $("#jsSlug"));
2015-05-05 03:00:01 +02:00
});
2015-06-27 06:28:13 +02:00
$("#jsSlug").keyup(function() {
var slug = $("#jsSlug").val();
2015-05-05 03:00:01 +02:00
2015-06-27 06:28:13 +02:00
checkSlugPost(slug, key, $("#jsSlug"));
2015-05-05 03:00:01 +02:00
});
});
2015-05-31 03:06:55 +02:00
</script>