sf-static/sql/modules/views/options/misc.php
2023-02-28 19:21:07 +01:00

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>