Project

General

Profile

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

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

    
134
  <p style="color:red;">{TEXT_MANUAL_INSTALLATION_WARNING}</p>
135
</div>
136
<!-- END main_block -->
(17-17/32)