443
by dcoles
Added Forum application along with unmodifed version of phpBB3 "Olympus" 3.0.0 |
1 |
<!-- INCLUDE overall_header.html -->
|
2 |
||
3 |
<a name="maincontent"></a> |
|
4 |
||
5 |
<!-- IF MODE eq 'restore' -->
|
|
6 |
<h1>{L_ACP_RESTORE}</h1> |
|
7 |
||
8 |
<p>{L_ACP_RESTORE_EXPLAIN}</p> |
|
9 |
||
10 |
<form id="acp_backup" method="post" action="{U_ACTION}"> |
|
11 |
||
12 |
<fieldset> |
|
13 |
<legend>{L_RESTORE_OPTIONS}</legend> |
|
14 |
<dl> |
|
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> |
|
17 |
</dl> |
|
18 |
||
19 |
<!-- IF .files -->
|
|
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}" /> |
|
24 |
</p> |
|
25 |
<!-- ENDIF -->
|
|
26 |
{S_FORM_TOKEN} |
|
27 |
</fieldset> |
|
28 |
</form> |
|
29 |
||
30 |
<!-- ELSE -->
|
|
31 |
<h1>{L_ACP_BACKUP}</h1> |
|
32 |
||
33 |
<p>{L_ACP_BACKUP_EXPLAIN}</p> |
|
34 |
||
35 |
<script type="text/javascript"> |
|
36 |
// <![CDATA[
|
|
37 |
||
38 |
function selector(bool) |
|
39 |
{
|
|
40 |
var table = document.getElementById('table'); |
|
41 |
||
42 |
for (var i = 0; i < table.options.length; i++) |
|
43 |
{
|
|
44 |
table.options[i].selected = bool; |
|
45 |
}
|
|
46 |
}
|
|
47 |
||
48 |
// ]]>
|
|
49 |
</script> |
|
50 |
||
51 |
<form id="acp_backup" method="post" action="{U_ACTION}"> |
|
52 |
||
53 |
<fieldset> |
|
54 |
<legend>{L_BACKUP_OPTIONS}</legend> |
|
55 |
<dl> |
|
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> |
|
60 |
</dl> |
|
61 |
<dl> |
|
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> |
|
66 |
</dl> |
|
67 |
<dl> |
|
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> |
|
72 |
</dl> |
|
73 |
<dl> |
|
74 |
<dt><label for="table">{L_TABLE_SELECT}:</label></dt> |
|
75 |
<dd><select id="table" name="table[]" size="10" multiple="multiple"> |
|
76 |
<!-- BEGIN tables -->
|
|
77 |
<option value="{tables.TABLE}">{tables.TABLE}</option> |
|
78 |
<!-- END tables -->
|
|
79 |
</select></dd> |
|
80 |
<dd><a href="#" onclick="selector(true)">{L_SELECT_ALL}</a> :: <a href="#" onclick="selector(false)">{L_DESELECT_ALL}</a></dd> |
|
81 |
</dl> |
|
82 |
||
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}" /> |
|
86 |
</p> |
|
87 |
{S_FORM_TOKEN} |
|
88 |
</fieldset> |
|
89 |
</form> |
|
90 |
||
91 |
<!-- ENDIF -->
|
|
92 |
||
93 |
<!-- INCLUDE overall_footer.html -->
|