2015-10-19 00:45:58 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
HTML::title(array('title'=>$L->g('New post'), 'icon'=>'pencil'));
|
|
|
|
|
|
|
|
HTML::formOpen(array('class'=>'uk-form-stacked'));
|
|
|
|
|
|
|
|
// Security token
|
|
|
|
HTML::formInputHidden(array(
|
|
|
|
'name'=>'token',
|
|
|
|
'value'=>$Security->getToken()
|
|
|
|
));
|
|
|
|
|
|
|
|
// ---- LEFT SIDE ----
|
|
|
|
echo '<div class="uk-grid">';
|
|
|
|
echo '<div class="uk-width-large-7-10">';
|
|
|
|
|
|
|
|
// Title input
|
|
|
|
HTML::formInputText(array(
|
|
|
|
'name'=>'title',
|
|
|
|
'value'=>'',
|
|
|
|
'class'=>'uk-width-1-1 uk-form-large',
|
|
|
|
'placeholder'=>$L->g('Title')
|
|
|
|
));
|
|
|
|
|
|
|
|
// Content input
|
|
|
|
HTML::formTextarea(array(
|
|
|
|
'name'=>'content',
|
|
|
|
'value'=>'',
|
|
|
|
'class'=>'uk-width-1-1 uk-form-large',
|
|
|
|
'placeholder'=>$L->g('Content')
|
|
|
|
));
|
|
|
|
|
|
|
|
// Form buttons
|
|
|
|
echo '<div class="uk-form-row uk-margin-bottom">
|
|
|
|
<button class="uk-button uk-button-primary" type="submit">'.$L->g('Save').'</button>
|
|
|
|
<a class="uk-button" href="'.HTML_PATH_ADMIN_ROOT.'manage-posts">'.$L->g('Cancel').'</a>
|
|
|
|
</div>';
|
|
|
|
|
|
|
|
echo '</div>';
|
|
|
|
|
|
|
|
// ---- RIGHT SIDE ----
|
|
|
|
echo '<div class="uk-width-large-3-10">';
|
|
|
|
|
|
|
|
// Tabs, general and advanced mode
|
|
|
|
echo '<ul class="uk-tab" data-uk-tab="{connect:\'#tab-options\'}">';
|
|
|
|
echo '<li><a href="">'.$L->g('General').'</a></li>';
|
|
|
|
echo '<li><a href="">'.$L->g('Advanced').'</a></li>';
|
|
|
|
echo '</ul>';
|
|
|
|
|
|
|
|
echo '<ul id="tab-options" class="uk-switcher uk-margin">';
|
|
|
|
|
|
|
|
// ---- GENERAL TAB ----
|
|
|
|
echo '<li>';
|
|
|
|
|
|
|
|
// Description input
|
|
|
|
HTML::formTextarea(array(
|
|
|
|
'name'=>'description',
|
|
|
|
'label'=>$L->g('description'),
|
|
|
|
'value'=>'',
|
|
|
|
'rows'=>'7',
|
|
|
|
'class'=>'uk-width-1-1 uk-form-medium',
|
|
|
|
'tip'=>$L->g('this-field-can-help-describe-the-content')
|
|
|
|
));
|
|
|
|
|
|
|
|
// Tags input
|
|
|
|
HTML::formInputText(array(
|
|
|
|
'name'=>'tags',
|
|
|
|
'value'=>'',
|
|
|
|
'class'=>'uk-width-1-1 uk-form-large',
|
|
|
|
'tip'=>$L->g('Write the tags separated by commas'),
|
|
|
|
'label'=>$L->g('Tags')
|
|
|
|
));
|
|
|
|
|
|
|
|
echo '</li>';
|
|
|
|
|
|
|
|
// ---- ADVANCED TAB ----
|
|
|
|
echo '<li>';
|
|
|
|
|
|
|
|
// Date input
|
|
|
|
HTML::formInputText(array(
|
|
|
|
'name'=>'date',
|
|
|
|
'value'=>Date::current(DB_DATE_FORMAT),
|
|
|
|
'class'=>'uk-width-1-1 uk-form-large',
|
|
|
|
'tip'=>$L->g('To schedule the post just select the date and time'),
|
|
|
|
'label'=>$L->g('Date')
|
|
|
|
));
|
|
|
|
|
|
|
|
// Status input
|
|
|
|
HTML::formSelect(array(
|
|
|
|
'name'=>'status',
|
|
|
|
'label'=>$L->g('Status'),
|
|
|
|
'class'=>'uk-width-1-1 uk-form-medium',
|
|
|
|
'options'=>array('published'=>$L->g('Published'), 'draft'=>$L->g('Draft')),
|
|
|
|
'selected'=>'published',
|
|
|
|
'tip'=>''
|
|
|
|
));
|
|
|
|
|
|
|
|
// Slug input
|
|
|
|
HTML::formInputText(array(
|
|
|
|
'name'=>'slug',
|
|
|
|
'value'=>'',
|
|
|
|
'class'=>'uk-width-1-1 uk-form-large',
|
|
|
|
'tip'=>$L->g('you-can-modify-the-url-which-identifies'),
|
|
|
|
'label'=>$L->g('Friendly URL')
|
|
|
|
));
|
|
|
|
|
|
|
|
echo '</li>';
|
|
|
|
echo '</ul>';
|
|
|
|
|
|
|
|
echo '</div>';
|
|
|
|
echo '</div>';
|
|
|
|
|
|
|
|
HTML::formClose();
|
|
|
|
|
|
|
|
?>
|
2015-05-05 03:00:01 +02:00
|
|
|
|
|
|
|
<script>
|
|
|
|
|
2015-10-19 00:45:58 +02:00
|
|
|
$(document).ready(function() {
|
|
|
|
|
2015-08-26 05:42:32 +02:00
|
|
|
$("#jsdate").datetimepicker({format:"<?php echo DB_DATE_FORMAT ?>"});
|
2015-05-05 03:00:01 +02:00
|
|
|
|
2015-08-26 05:42:32 +02:00
|
|
|
$("#jstitle").keyup(function() {
|
|
|
|
var slug = $(this).val();
|
|
|
|
checkSlugPost(slug, "", $("#jsslug"));
|
|
|
|
});
|
2015-05-05 03:00:01 +02:00
|
|
|
|
2015-08-26 05:42:32 +02:00
|
|
|
$("#jsslug").keyup(function() {
|
|
|
|
var slug = $("#jsslug").val();
|
|
|
|
checkSlugPost(slug, "", $("#jsslug"));
|
|
|
|
});
|
|
|
|
|
2015-05-05 03:00:01 +02:00
|
|
|
});
|
|
|
|
|
2015-07-03 22:44:26 +02:00
|
|
|
</script>
|