47 lines
1.5 KiB
HTML
47 lines
1.5 KiB
HTML
<?= Form::open(['id' => 'pluginForm']) ?>
|
|
<div class="modal-header">
|
|
<button type="button" class="close" data-dismiss="popup">×</button>
|
|
<h4 class="modal-title"><?= e(trans('system::lang.install.plugin_label')) ?></h4>
|
|
</div>
|
|
<div class="modal-body">
|
|
|
|
<?php if ($this->fatalError): ?>
|
|
<p class="flash-message static error"><?= e($fatalError) ?></p>
|
|
<?php endif ?>
|
|
|
|
<div class="form-group">
|
|
<label for="pluginCode"><?= e(trans('system::lang.plugin.name.label')) ?></label>
|
|
<input
|
|
name="code"
|
|
type="text"
|
|
class="form-control"
|
|
id="pluginCode"
|
|
value="<?= e(post('code')) ?>" />
|
|
<p class="help-block"><?= e(trans('system::lang.plugin.name.help')) ?></p>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="modal-footer">
|
|
<button
|
|
type="submit"
|
|
class="btn btn-primary"
|
|
data-dismiss="popup"
|
|
data-control="popup"
|
|
data-handler="onInstallPlugin">
|
|
<?= e(trans('system::lang.install.plugin_label')) ?>
|
|
</button>
|
|
<button
|
|
type="button"
|
|
class="btn btn-default"
|
|
data-dismiss="popup">
|
|
<?= e(trans('backend::lang.form.cancel')) ?>
|
|
</button>
|
|
</div>
|
|
<script>
|
|
setTimeout(
|
|
function(){ $('#pluginCode').select() },
|
|
310
|
|
)
|
|
</script>
|
|
<?= Form::close() ?> |