module_config.tpl.php 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. defined('IN_ADMIN') or exit('No permission resources.');
  3. $show_header = 1;
  4. include $this->admin_tpl('header');
  5. ?>
  6. <div class="pad-10">
  7. <form action="?m=admin&c=module&a=install" method="post" id="myform">
  8. <div>
  9. <table width="100%" class="table_form">
  10. <tr>
  11. <th width="80"><?php echo L('modulename')?>:</th>
  12. <td class="y-bg"><?php echo $modulename?></td>
  13. </tr>
  14. <tr>
  15. <th width="80"><?php echo L('introduce')?>:</th>
  16. <td class="y-bg"><?php echo $introduce?></td>
  17. </tr>
  18. <tr>
  19. <th width="80"><?php echo L('moduleauthor')?>:</th>
  20. <td class="y-bg"><?php echo $author?></td>
  21. </tr>
  22. <tr>
  23. <th width="80">E-mail:</th>
  24. <td class="y-bg"><?php echo $authoremail?></td>
  25. </tr>
  26. <tr>
  27. <th width="80"><?php echo L('homepage')?>:</th>
  28. <td class="y-bg"><?php echo $authorsite?></td>
  29. </tr>
  30. </table>
  31. </div>
  32. <div class="bk15"></div><input type="hidden" name="module" value="<?php echo $_GET['module']?>">
  33. <input type="submit" class="dialog" id="dosubmit" name="dosubmit" value="<?php echo L('submit')?>" />
  34. </div>
  35. </div>
  36. </form>
  37. </body>
  38. </html>