57 lines
1.9 KiB
HTML
57 lines
1.9 KiB
HTML
|
|
<?php
|
||
|
|
$isCreate = $this->formGetContext() == 'create';
|
||
|
|
$pageUrl = isset($pageUrl) ? $pageUrl : null;
|
||
|
|
?>
|
||
|
|
<div class="form-buttons loading-indicator-container">
|
||
|
|
|
||
|
|
<!-- Save -->
|
||
|
|
<a
|
||
|
|
href="javascript:;"
|
||
|
|
class="btn btn-primary oc-icon-check save"
|
||
|
|
data-request="onSave"
|
||
|
|
data-load-indicator="<?= e(trans('backend::lang.form.saving')) ?>"
|
||
|
|
data-request-before-update="$(this).trigger('unchange.oc.changeMonitor')"
|
||
|
|
<?php if (!$isCreate): ?>data-request-data="redirect:0"<?php endif ?>
|
||
|
|
data-hotkey="ctrl+s, cmd+s">
|
||
|
|
<?= e(trans('backend::lang.form.save')) ?>
|
||
|
|
</a>
|
||
|
|
|
||
|
|
<?php if (!$isCreate): ?>
|
||
|
|
<!-- Save and Close -->
|
||
|
|
<a
|
||
|
|
href="javascript:;"
|
||
|
|
class="btn btn-primary oc-icon-check save"
|
||
|
|
data-request-before-update="$(this).trigger('unchange.oc.changeMonitor')"
|
||
|
|
data-request="onSave"
|
||
|
|
data-load-indicator="<?= e(trans('backend::lang.form.saving')) ?>">
|
||
|
|
<?= e(trans('backend::lang.form.save_and_close')) ?>
|
||
|
|
</a>
|
||
|
|
<?php endif ?>
|
||
|
|
|
||
|
|
<!-- Cancel -->
|
||
|
|
<a
|
||
|
|
href="<?= Backend::url('rainlab/blog/posts') ?>"
|
||
|
|
class="btn btn-primary oc-icon-arrow-left cancel">
|
||
|
|
<?= e(trans('backend::lang.form.cancel')) ?>
|
||
|
|
</a>
|
||
|
|
|
||
|
|
<!-- Preview -->
|
||
|
|
<a
|
||
|
|
href="<?= URL::to($pageUrl) ?>"
|
||
|
|
target="_blank"
|
||
|
|
class="btn btn-primary oc-icon-crosshairs <?php if (!false): ?>hide<?php endif ?>"
|
||
|
|
data-control="preview-button">
|
||
|
|
<?= e(trans('rainlab.blog::lang.blog.preview')) ?>
|
||
|
|
</a>
|
||
|
|
|
||
|
|
<?php if (!$isCreate): ?>
|
||
|
|
<!-- Delete -->
|
||
|
|
<button
|
||
|
|
type="button"
|
||
|
|
class="btn btn-default empty oc-icon-trash-o"
|
||
|
|
data-request="onDelete"
|
||
|
|
data-request-confirm="<?= e(trans('rainlab.blog::lang.post.delete_confirm')) ?>"
|
||
|
|
data-control="delete-button"></button>
|
||
|
|
<?php endif ?>
|
||
|
|
</div>
|