Project

General

Profile

1
<!--
2
 @version         $Id: modules.htt 75 2017-03-10 10:47:06Z manu $
3
-->
4
<!-- BEGIN main_block -->
5
<table  style="margin-bottom:10px; width: 100%;">
6
    <tbody>
7
        <tr>
8
            <td style="float: right; line-height: 3.225em;">
9
    <!-- BEGIN addon_template_block -->
10
                <span><a class="button" href="{URL_TEMPLATES}">{MENU_TEMPLATES}</a> </span>
11
                -
12
    <!-- END addon_template_block -->
13
    <!-- BEGIN addon_language_block -->
14
                <span ><a class="button" href="{URL_LANGUAGES}">{MENU_LANGUAGES}</a></span>
15
                -
16
    <!-- END addon_language_block -->
17
    <!-- BEGIN addon_module_block -->
18
                <span ><a class="button" href="{URL_ADVANCED}">{TEXT_ADVANCED}</a></span>
19
    <!-- END addon_module_block -->
20
            </td>
21
         </tr>
22
    </tbody>
23
</table>
24

    
25
<!-- BEGIN module_install_block -->
26
<form name="install" enctype="multipart/form-data" action="install.php" method="post" class="{DISPLAY_INSTALL}">
27
{FTAN}
28
    <h2>{HEADING_INSTALL_MODULE}</h2>
29
    <table style="width: 100%;">
30
        <tbody>
31
            <tr>
32
              <td >
33
                <input type="file" name="userfile" size="97" />
34
                <script type="text/javascript">
35
                document.install.userfile.focus();
36
                </script><br />
37
                <input type="checkbox" name="overwrite" value="false"  />
38
                <span>{OVERWRITE_NEWER_FILES}</span>
39
              </td>
40
              <td style="width: 10%;">
41
                <input type="submit" name="submit" value="{TEXT_INSTALL}" style="min-width: 8.525em;" />
42
              </td>
43
            </tr>
44
        </tbody>
45
    </table>
46
    <br />
47
</form>
48
<!-- END module_install_block -->
49

    
50
<!-- BEGIN module_uninstall_block -->
51
<form name="uninstall" action="uninstall.php" method="post" class="{DISPLAY_UNINSTALL}">
52
{FTAN}
53
    <h2>{HEADING_UNINSTALL_MODULE}</h2>
54
    <table style="width: 100%;">
55
        <tbody>
56
            <tr>
57
              <td>
58
                <select name="file" style="width: 75%;">
59
                <option value="" selected="selected">{TEXT_PLEASE_SELECT}...</option>
60
                <!-- BEGIN module_uninstall_select_block -->
61
                    <option value="{UNINSTALL_VALUE}">{UNINSTALL_NAME}</option>
62
                  <!-- END module_uninstall_select_block -->
63
                </select>
64
              </td>
65
              <td style="width: 10%;">
66
                <input type="submit" name="submit" value="{TEXT_UNINSTALL}" style="min-width: 8.525em;" />
67
              </td>
68
            </tr>
69
        </tbody>
70
    </table>
71
    <br />
72
</form>
73
<!-- END module_uninstall_block -->
74

    
75
<!-- BEGIN module_detail_block -->
76
<form name="details" action="details.php" method="post" class="{DISPLAY_LIST}">
77
{FTAN}
78
    <h2>{HEADING_MODULE_DETAILS}</h2>
79
    <table style="width: 100%;">
80
        <tbody>
81
            <tr>
82
              <td>
83
                <select name="file" style="width: 75%;">
84
                <option value="" selected="selected">{TEXT_PLEASE_SELECT}...</option>
85
                <!-- BEGIN module_detail_select_block -->
86
                    <option value="{VALUE}">{NAME}</option>
87
                  <!-- END module_detail_select_block -->
88
                </select>
89
              </td>
90
              <td style="width: 10%;">
91
                <input type="submit" name="submit" value="{TEXT_VIEW_DETAILS}" style="min-width: 8.525em;" />
92
              </td>
93
            </tr>
94
        </tbody>
95
    </table>
96
    <br />
97
</form>
98
<!-- END module_detail_block -->
99

    
100
<!-- BEGIN module_advanced_block -->
101
<div class="{DISPLAY_MANUAL_INSTALL}">
102
    <h2>{HEADING_INVOKE_MODULE_FILES}</h2>
103
    <p>{TEXT_MANUAL_INSTALLATION}</p>
104
<!-- BEGIN manuell_install_block -->
105
    <form name="manual_install" action="manual_install.php" method="post" class="{INSTALL_VISIBLE}">
106
{FTAN}
107
    <table style="width: 80%;">
108
        <tbody>
109
            <tr>
110
              <td style="width: 15%; white-space: nowrap;">{TEXT_FILE}: "install.php"</td>
111
              <td>
112
                  <input type="hidden" name="action" value="install" />
113
                  <select name="file" style="width: 40%;">
114
                  <option value="" selected="selected">{TEXT_PLEASE_SELECT}...</option>
115
                  <!-- BEGIN manuell_install_select_block -->
116
                  <option value="{INSTALL_VALUE}">{INSTALL_NAME}</option>
117
                  <!-- END manuell_install_select_block -->
118
                  </select>
119
                  <input type="submit" name="submit" value="{TEXT_EXECUTE}" style="min-width: 8.525em;" />
120
              </td>
121
            </tr>
122
        </tbody>
123
    </table>
124
    </form>
125
<!-- END manuell_install_block -->
126

    
127
<!-- BEGIN manuell_upgrade_block -->
128
    <form name="manual_upgrade" action="manual_install.php" method="post" class="{UPGRADE_VISIBLE}">
129
{FTAN}
130
    <table style="width: 80%;">
131
        <tbody>
132
            <tr>
133
              <td style="width: 15%; white-space: nowrap;">{TEXT_FILE}: "upgrade.php"</td>
134
              <td >
135
                  <input type="hidden" name="action" value="upgrade" />
136
                  <select name="file" style="width: 40%;">
137
                  <option value="" selected="selected">{TEXT_PLEASE_SELECT}...</option>
138
                  <!-- BEGIN manuell_upgrade_select_block -->
139
                  <option value="{UPGRADE_VALUE}">{UPGRADE_NAME}</option>
140
                  <!-- END manuell_upgrade_select_block -->
141
                  </select>
142
                  <input type="submit" name="submit" value="{TEXT_EXECUTE}" style="min-width: 8.525em;" />
143
              </td>
144
            </tr>
145
        </tbody>
146
    </table>
147
    </form>
148
<!-- END manuell_upgrade_block -->
149

    
150
<!-- BEGIN manuell_uninstall_block -->
151
    <form name="manual_uninstall" action="manual_install.php" method="post" class="{UNINSTALL_VISIBLE}">
152
{FTAN}
153
    <table style="width: 80%;">
154
        <tbody>
155
            <tr>
156
              <td style="width: 15%; white-space: nowrap;">{TEXT_FILE}: "uninstall.php"</td>
157
              <td>
158
                  <input type="hidden" name="action" value="uninstall" />
159
                  <select name="file" style="width: 40%;">
160
                  <option value="" selected="selected">{TEXT_PLEASE_SELECT}...</option>
161
                  <!-- BEGIN manuell_uninstall_select_block -->
162
                  <option value="{UNINSTALL_VALUE}">{UNINSTALL_NAME}</option>
163
                  <!-- END manuell_uninstall_select_block -->
164
                  </select>
165
                  <input type="submit" name="submit" value="{TEXT_EXECUTE}" style="min-width: 8.525em;" />
166
                  </td>
167
            </tr>
168
        </tbody>
169
    </table>
170
    </form>
171
<!-- END manuell_uninstall_block -->
172

    
173
  <p style="color:red;">{TEXT_MANUAL_INSTALLATION_WARNING}</p>
174
</div>
175
<!-- END module_advanced_block -->
176

    
177
<!-- END main_block -->
(17-17/32)