1
<!-- INCLUDE overall_header.html -->
3
<a name="maincontent"></a>
5
<!-- IF MODE eq 'restore' -->
6
<h1>{L_ACP_RESTORE}</h1>
8
<p>{L_ACP_RESTORE_EXPLAIN}</p>
10
<form id="acp_backup" method="post" action="{U_ACTION}">
13
<legend>{L_RESTORE_OPTIONS}</legend>
15
<dt><label for="file">{L_SELECT_FILE}:</label></dt>
16
<dd><select id="file" name="file" size="10"><!-- BEGIN files --><option value="{files.FILE}"<!-- IF files.S_LAST_ROW --> selected="selected"<!-- ENDIF -->>{files.NAME}</option><!-- END files --></select></dd>
20
<p class="submit-buttons">
21
<input class="button1" type="submit" id="submit" name="submit" value="{L_START_RESTORE}" />
22
<input class="button2" type="submit" id="delete" name="delete" value="{L_DELETE_BACKUP}" />
23
<input class="button2" type="submit" id="download" name="download" value="{L_DOWNLOAD_BACKUP}" />
31
<h1>{L_ACP_BACKUP}</h1>
33
<p>{L_ACP_BACKUP_EXPLAIN}</p>
35
<script type="text/javascript">
38
function selector(bool)
40
var table = document.getElementById('table');
42
for (var i = 0; i < table.options.length; i++)
44
table.options[i].selected = bool;
51
<form id="acp_backup" method="post" action="{U_ACTION}">
54
<legend>{L_BACKUP_OPTIONS}</legend>
56
<dt><label for="type">{L_BACKUP_TYPE}:</label></dt>
57
<dd><label><input type="radio" class="radio" name="type" value="full" id="type" checked="checked" /> {L_FULL_BACKUP}</label>
58
<label><input type="radio" name="type" class="radio" value="structure" /> {L_STRUCTURE_ONLY}</label>
59
<label><input type="radio" class="radio" name="type" value="data" /> {L_DATA_ONLY}</label></dd>
62
<dt><label for="method">{L_FILE_TYPE}:</label></dt>
63
<dd><!-- BEGIN methods -->
64
<label><input name="method"<!-- IF methods.S_FIRST_ROW --> id="method" checked="checked"<!-- ENDIF --> type="radio" class="radio" value="{methods.TYPE}" /> {methods.TYPE}</label>
65
<!-- END methods --></dd>
68
<dt><label for="where">{L_ACTION}:</label></dt>
69
<dd><label><input type="radio" class="radio" name="where" value="store_and_download" id="where" checked="checked" /> {L_STORE_AND_DOWNLOAD}</label>
70
<label><input type="radio" class="radio" name="where" value="store" /> {L_STORE_LOCAL}</label>
71
<label><input type="radio" class="radio" name="where" value="download" /> {L_DOWNLOAD}</label></dd>
74
<dt><label for="table">{L_TABLE_SELECT}:</label></dt>
75
<dd><select id="table" name="table[]" size="10" multiple="multiple">
77
<option value="{tables.TABLE}">{tables.TABLE}</option>
80
<dd><a href="#" onclick="selector(true)">{L_SELECT_ALL}</a> :: <a href="#" onclick="selector(false)">{L_DESELECT_ALL}</a></dd>
83
<p class="submit-buttons">
84
<input class="button1" type="submit" id="submit" name="submit" value="{L_SUBMIT}" />
85
<input class="button2" type="reset" id="reset" name="reset" value="{L_RESET}" />
93
<!-- INCLUDE overall_footer.html -->