2014-05-14 13:24:20 +00:00
|
|
|
<div class="form-buttons loading-indicator-container">
|
|
|
|
|
<a
|
2018-10-10 14:40:03 +00:00
|
|
|
href="javascript:;"
|
2014-08-05 08:09:59 +00:00
|
|
|
class="btn btn-primary oc-icon-check save"
|
2014-05-14 13:24:20 +00:00
|
|
|
data-request="onSave"
|
|
|
|
|
data-load-indicator="<?= e(trans('backend::lang.form.saving')) ?>"
|
2014-09-29 00:01:28 +00:00
|
|
|
data-hotkey="ctrl+s, cmd+s">
|
2014-05-15 23:04:40 +00:00
|
|
|
<?= e(trans('backend::lang.form.save')) ?>
|
2014-05-14 13:24:20 +00:00
|
|
|
</a>
|
|
|
|
|
|
|
|
|
|
<?php
|
|
|
|
|
$pageUrl = isset($pageUrl) ? $pageUrl : null;
|
|
|
|
|
?>
|
|
|
|
|
<a
|
2017-06-02 13:34:50 +00:00
|
|
|
href="<?= Url::to($pageUrl) ?>"
|
2014-05-14 13:24:20 +00:00
|
|
|
target="_blank"
|
2014-08-05 08:09:59 +00:00
|
|
|
class="btn btn-primary oc-icon-crosshairs <?php if (!$templatePath): ?>hide<?php endif ?>"
|
2014-05-14 13:24:20 +00:00
|
|
|
data-control="preview-button">
|
2014-05-15 23:04:40 +00:00
|
|
|
<?= e(trans('cms::lang.editor.preview')) ?>
|
2014-05-14 13:24:20 +00:00
|
|
|
</a>
|
|
|
|
|
|
2018-11-22 19:34:19 +00:00
|
|
|
<?= $this->makePartial('common_toolbar_actions', ['toolbarSource' => 'page']); ?>
|
2018-10-22 21:30:44 +00:00
|
|
|
</div>
|