mirror of
https://github.com/phpbb/phpbb.git
synced 2025-05-08 16:45:19 +02:00
- Improved Backup ACP UI, more work to come...
git-svn-id: file:///svn/phpbb/trunk@5703 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
58f723374b
commit
09d5c596eb
@ -24,6 +24,22 @@
|
|||||||
|
|
||||||
<p>{L_ACP_BACKUP_EXPLAIN}</p>
|
<p>{L_ACP_BACKUP_EXPLAIN}</p>
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
<!--
|
||||||
|
|
||||||
|
function selector(bool)
|
||||||
|
{
|
||||||
|
var table = document.getElementById('table');
|
||||||
|
|
||||||
|
for (var i = 0; i < table.options.length; i++)
|
||||||
|
{
|
||||||
|
table.options[i].selected = bool;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
|
|
||||||
<form id="acp_backup" method="post" action="{U_ACTION}">
|
<form id="acp_backup" method="post" action="{U_ACTION}">
|
||||||
<fieldset>
|
<fieldset>
|
||||||
<legend>{L_BACKUP_OPTIONS}</legend>
|
<legend>{L_BACKUP_OPTIONS}</legend>
|
||||||
@ -43,9 +59,11 @@
|
|||||||
</dl>
|
</dl>
|
||||||
<dl>
|
<dl>
|
||||||
<dt><label for="user">{L_TABLE_SELECT}:</label></dt>
|
<dt><label for="user">{L_TABLE_SELECT}:</label></dt>
|
||||||
|
<dd><select id="table" name="table[]" size="10" multiple="true">
|
||||||
<!-- BEGIN tables -->
|
<!-- BEGIN tables -->
|
||||||
<dd><input name="table[]" id="table[]" type="checkbox" value="{tables.TABLE}" /> {tables.TABLE}</dd>
|
<option value="{tables.TABLE}">{tables.TABLE}</option>
|
||||||
<!-- END tables -->
|
<!-- END tables -->
|
||||||
|
</select><br /><br /><div align="right"><a href="#" onclick="selector(true)">{L_SELECT_ALL}</a><br /><a href="#" onclick="selector(false)">{L_DESELECT_ALL}</a></div></dd>
|
||||||
</dl>
|
</dl>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
<fieldset class="submit-buttons">
|
<fieldset class="submit-buttons">
|
||||||
|
Loading…
x
Reference in New Issue
Block a user