bludit/admin/views/configure-plugin.php

16 lines
442 B
PHP
Raw Normal View History

2015-07-14 04:16:28 +02:00
<h2 class="title"><i class="fa fa-rocket"></i> <?php echo $_Plugin->name() ?></h2>
<form id="jsformplugin" method="post" action="" class="forms">
2015-09-08 02:51:48 +02:00
<input type="hidden" id="jstoken" name="token" value="<?php $Security->printToken() ?>">
<input type="hidden" id="jskey" name="key" value="">
2015-07-14 04:16:28 +02:00
2015-09-08 02:51:48 +02:00
<?php
echo $_Plugin->form();
?>
2015-07-14 04:16:28 +02:00
2015-09-08 02:51:48 +02:00
<div>
<button class="btn btn-blue" name="publish"><?php echo $Language->p('Save') ?></button>
</div>
2015-07-14 04:16:28 +02:00
</form>