15 lines
476 B
PHP
15 lines
476 B
PHP
<fieldset style="margin: 10px">
|
|
<legend><?php echo __('Database Objects'); ?></legend>
|
|
<table border="0" cellspacing="10" cellpadding="5" width="100%">
|
|
<tr><td valign="top">
|
|
<input type='button' id="reset" value="<?php echo __('Reset all confirmation dialogs'); ?>" />
|
|
</td></tr>
|
|
</table>
|
|
</fieldset>
|
|
<script type="text/javascript" language="javascript">
|
|
$(function () {
|
|
$("#reset").click(function () {
|
|
$(this).button("disable");
|
|
});
|
|
});
|
|
</script>
|