57 lines
1.5 KiB
HTML
57 lines
1.5 KiB
HTML
<?= Form::ajax('onSaveFields', [
|
|
'id' => 'themeFieldsForm',
|
|
'data-popup-load-indicator' => true
|
|
]) ?>
|
|
|
|
<input type="hidden" name="theme" value="<?= $themeDir ?>" />
|
|
|
|
<div class="modal-header">
|
|
<button type="button" class="close" data-dismiss="popup">×</button>
|
|
<h4 class="modal-title">Theme: <?= $themeDir ?></h4>
|
|
</div>
|
|
|
|
<?php if (!$this->fatalError): ?>
|
|
|
|
<div class="modal-body">
|
|
<?= $widget->render() ?>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button
|
|
type="submit"
|
|
class="btn btn-primary">
|
|
Save properties
|
|
</button>
|
|
|
|
<button
|
|
type="button"
|
|
class="btn btn-default"
|
|
data-dismiss="popup">
|
|
<?= e(trans('backend::lang.form.cancel')) ?>
|
|
</button>
|
|
</div>
|
|
|
|
<?php else: ?>
|
|
|
|
<div class="modal-body">
|
|
<p class="flash-message static error"><?= e(trans($this->fatalError)) ?></p>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button
|
|
type="button"
|
|
class="btn btn-default"
|
|
data-dismiss="popup">
|
|
<?= e(trans('backend::lang.form.close')) ?>
|
|
</button>
|
|
</div>
|
|
|
|
<?php endif ?>
|
|
|
|
<script>
|
|
setTimeout(
|
|
function(){ $('#themeFieldsForm input.form-control:first').focus() },
|
|
310
|
|
)
|
|
</script>
|
|
|
|
<?= Form::close() ?>
|