bludit/admin/views/configure-plugin.php

16 lines
442 B
PHP
Raw Normal View History

2015-07-13 23:16:28 -03: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-07 21:51:48 -03:00
<input type="hidden" id="jstoken" name="token" value="<?php $Security->printToken() ?>">
<input type="hidden" id="jskey" name="key" value="">
2015-07-13 23:16:28 -03:00
2015-09-07 21:51:48 -03:00
<?php
echo $_Plugin->form();
?>
2015-07-13 23:16:28 -03:00
2015-09-07 21:51:48 -03:00
<div>
<button class="btn btn-blue" name="publish"><?php echo $Language->p('Save') ?></button>
</div>
2015-07-13 23:16:28 -03:00
</form>