bernd commited on 2009-03-19 08:17:50
Zeige 1 geänderte Dateien mit 13 Einfügungen und 0 Löschungen.
git-svn-id: https://svn.schokokeks.org/repos/tools/webinterface/trunk@1311 87cf0b9e-d624-0410-a070-f6ee81989793
... | ... |
@@ -168,15 +168,28 @@ $form .= " |
168 | 168 |
</select> |
169 | 169 |
<p>Wenn Sie diese Option wählen, wird die Anwendung automatisch eingerichtet. Sie erhalten dann ihre Zugangsdaten per E-Mail.</p> |
170 | 170 |
</div> |
171 |
+"; |
|
171 | 172 |
|
173 |
+$form .= " |
|
172 | 174 |
<h4>Verwendung</h4> |
173 | 175 |
<div style=\"margin-left: 2em;\"> |
174 | 176 |
<input class=\"usageoption\" onclick=\"showAppropriateLines()\" type=\"radio\" name=\"vhost_type\" id=\"vhost_type_regular\" value=\"regular\" ".(($vhost_type=='regular') ? 'checked="checked" ' : '')."/><label for=\"vhost_type_regular\"> Normal (selbst Dateien hinterlegen)</label><br /> |
177 |
+"; |
|
178 |
+if ($vhost_type=='webapp') |
|
179 |
+{ |
|
180 |
+ // Wird nur noch angezeigt wenn der Vhost schon auf webapp konfiguriert ist, ansonsten nicht. |
|
181 |
+ // Die User sollen den Webapp-Installer benutzen. |
|
182 |
+ $form .= " |
|
175 | 183 |
<input class=\"usageoption\" onclick=\"showAppropriateLines()\" type=\"radio\" name=\"vhost_type\" id=\"vhost_type_webapp\" value=\"webapp\" ".(($vhost_type=='webapp') ? 'checked="checked" ' : '')."/><label for=\"vhost_type_webapp\"> Eine vorgefertigte Applikation nutzen</label><br /> |
184 |
+"; |
|
185 |
+} |
|
186 |
+$form .= " |
|
176 | 187 |
<input class=\"usageoption\" onclick=\"showAppropriateLines()\" type=\"radio\" name=\"vhost_type\" id=\"vhost_type_dav\" value=\"dav\" ".(($vhost_type=='dav') ? 'checked="checked" ' : '')."/><label for=\"vhost_type_dav\"> WebDAV</label><br /> |
177 | 188 |
<input class=\"usageoption\" onclick=\"showAppropriateLines()\" type=\"radio\" name=\"vhost_type\" id=\"vhost_type_svn\" value=\"svn\" ".(($vhost_type=='svn') ? 'checked="checked" ' : '')."/><label for=\"vhost_type_svn\"> Subversion-Server</label> |
178 | 189 |
</div> |
179 | 190 |
<br /> |
191 |
+<br /> |
|
192 |
+<br /> |
|
180 | 193 |
</div> |
181 | 194 |
|
182 | 195 |
<h4 style=\"margin-top: 3em;\">Allgemeine Optionen</h4> |
183 | 196 |