Project

General

Profile

1
<!-- BEGIN main_block -->
2
<table cellpadding="5" cellspacing="0" border="0" align="center" width="100%" style="margin-bottom:10px;">
3
	<tr style="background:#f0f0f0;">
4
		<td align="right">
5
			{URL_TEMPLATES}
6
			-
7
			{URL_LANGUAGES}
8
			-
9
			{URL_ADVANCED}
10
		</td>
11
     </tr>
12
</table>
13

    
14
<form name="install" enctype="multipart/form-data" action="install.php" method="post" class="{DISPLAY_INSTALL}">
15
  <h2>{HEADING_INSTALL_MODULE}</h2>
16
  <table cellpadding="2" cellspacing="0" border="0" width="100%">
17
    <tr>
18
      <td valign="middle">
19
        <input type="file" name="userfile" size="97%" />
20
        <script type="text/javascript">
21
		document.install.userfile.focus();
22
		</script><br />
23
        <input type="checkbox" name="overwrite" value="false"  />
24
		<span>{OVERWRITE_NEWER_FILES}</span>
25
      </td>
26
      <td width="110" align="left">
27
        <input type="submit" name="submit" value="{TEXT_INSTALL}" style="width: 100px;" />
28
      </td>
29
    </tr>
30
  </table>
31
  <br />
32
</form>
33
<form name="uninstall" action="uninstall.php" method="post" class="{DISPLAY_UNINSTALL}">
34
  <h2>{HEADING_UNINSTALL_MODULE}</h2>
35
  <table cellpadding="2" cellspacing="0" border="0" width="100%">
36
    <tr>
37
      <td>
38
        <select name="file" style="width: 97%;">
39
		<option value="" selected="selected">{TEXT_PLEASE_SELECT}...</option>
40
		<!-- BEGIN module_list_block -->
41
			<option value="{VALUE}">{NAME}</option>
42
          <!-- END module_list_block -->
43
        </select>
44
      </td>
45
      <td width="110">
46
        <input type="submit" name="submit" value="{TEXT_UNINSTALL}" style="width: 100px;" />
47
      </td>
48
    </tr>
49
  </table>
50
  <br />
51
</form>
52
<form name="details" action="details.php" method="post" class="{DISPLAY_LIST}">
53
  <h2>{HEADING_MODULE_DETAILS}</h2>
54
  <table cellpadding="2" cellspacing="0" border="0" width="100%">
55
    <tr>
56
      <td>
57
        <select name="file" style="width: 97%;">
58
		<option value="" selected="selected">{TEXT_PLEASE_SELECT}...</option>
59
		<!-- BEGIN module_list_block -->
60
			<option value="{VALUE}">{NAME}</option>
61
          <!-- END module_list_block -->
62
        </select>
63
      </td>
64
      <td width="110">
65
        <input type="submit" name="submit" value="{TEXT_VIEW_DETAILS}" style="width: 100px;" />
66
      </td>
67
    </tr>
68
  </table>
69
  <br />
70
</form>
71
<div class="{DISPLAY_MANUAL_INSTALL}">
72
  <h2>{HEADING_INVOKE_MODULE_FILES}</h2>
73
  <p>{TEXT_MANUAL_INSTALLATION}</p>
74
  <form name="details" action="manual_install.php" method="post" class="{INSTALL_VISIBLE}">
75
  <table cellpadding="0" cellspacing="2" border="0" width="80%">
76
	  <tr>
77
		<td width="150" valign="middle" nowrap="nowrap">{TEXT_FILE}: "install.php"</td>
78
		<td valign="middle">
79
			<input type="hidden" name="action" value="install" />
80
			<select name="file" style="width: 250px;">
81
	        <option value="" selected="selected">{TEXT_PLEASE_SELECT}...</option>
82
			<!-- BEGIN install_list_block -->
83
			<option value="{VALUE}">{NAME}</option>
84
			<!-- END install_list_block -->
85
			</select>
86
			<input type="submit" name="submit" value="{TEXT_EXECUTE}" style="width:100px;" />
87
		</td>
88
	  </tr>
89
  </table>
90
  </form>
91
  
92
  <form name="details" action="manual_install.php" method="post" class="{UPGRADE_VISIBLE}">
93
  <table cellpadding="0" cellspacing="2" border="0" width="80%">
94
	  <tr>
95
		<td width="150" valign="middle" nowrap="nowrap">{TEXT_FILE}: "upgrade.php"</td>
96
		<td valign="middle" >
97
			<input type="hidden" name="action" value="upgrade" />
98
			<select name="file" style="width: 250px;">
99
	        <option value="" selected="selected">{TEXT_PLEASE_SELECT}...</option>
100
			<!-- BEGIN install_list_block -->
101
			<option value="{VALUE}">{NAME}</option>
102
			<!-- END install_list_block -->
103
			</select>
104
			<input type="submit" name="submit" value="{TEXT_EXECUTE}" style="width:100px;" />
105
		</td>
106
	  </tr>
107
  </table>
108
  </form>
109

    
110
  <form name="details" action="manual_install.php" method="post" class="{UNINSTALL_VISIBLE}">
111
  <table cellpadding="0" cellspacing="2" border="0" width="80%">
112
	  <tr>
113
		<td width="150" valign="middle" nowrap="nowrap">{TEXT_FILE}: "uninstall.php"</td>
114
		<td valign="middle">
115
			<input type="hidden" name="action" value="uninstall" />
116
			<select name="file" style="width: 250px;">
117
	        <option value="" selected="selected">{TEXT_PLEASE_SELECT}...</option>
118
			<!-- BEGIN install_list_block -->
119
			<option value="{VALUE}">{NAME}</option>
120
			<!-- END install_list_block -->
121
			</select>
122
			<input type="submit" name="submit" value="{TEXT_EXECUTE}" style="width:100px;" />
123
			</td>
124
	  </tr>
125
  </table>
126
  </form>
127

    
128
  <p style="color:red;">{TEXT_MANUAL_INSTALLATION_WARNING}</p>
129
</div>
130
<!-- END main_block -->
(17-17/32)