sf-static/sql/modules/views/options/misc.php

16 lines
476 B
PHP
Raw Permalink Normal View History

2023-02-28 18:21:07 +00:00
<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>