php-fpm support

This commit is contained in:
Serghey Rodin 2015-04-16 02:43:31 +03:00
commit 567ce7e832
64 changed files with 976 additions and 197 deletions

View file

@ -52,7 +52,7 @@
</tr>
<tr>
<td class="vst-text input-label">
<?php print __('Web Template');?>
<?php print __('Web Template') . " <span style='color:#777;'> / " .strtoupper($_SESSION['WEB_SYSTEM']) . "</span>";?>
</td>
</tr>
<tr>
@ -73,10 +73,35 @@
</select>
</td>
</tr>
<?php if (!empty($_SESSION['WEB_BACKEND'])) { echo ""; ?>
<tr>
<td class="vst-text input-label">
<?php print __('Backend Template') . " <span style='color:#777;'> / " .strtoupper($_SESSION['WEB_BACKEND']) . "</span>";?>
</td>
</tr>
<tr>
<td>
<select class="vst-list" name="v_backend_template">
<?php
foreach ($backend_templates as $key => $value) {
echo "\t\t\t\t<option value=\"".$value."\"";
if ((!empty($v_backend_template)) && ( $value == $v_backend_template)){
echo ' selected' ;
}
if ((!empty($v_backend_template)) && ( $value == $_POST['v_backend_template'])){
echo ' selected' ;
}
echo ">".$value."</option>\n";
}
?>
</select>
</td>
</tr>
<?php echo ""; }?>
<?php if (!empty($_SESSION['PROXY_SYSTEM'])) { echo ""; ?>
<tr>
<td class="vst-text input-label">
<?php print __('Proxy Template');?>
<?php print __('Proxy Template') . " <span style='color:#777;'> / " .strtoupper($_SESSION['PROXY_SYSTEM']) . "</span>";?>
</td>
</tr>
<tr>
@ -100,7 +125,7 @@
<?php echo ""; }?>
<tr>
<td class="vst-text input-label">
<?php print __('DNS Template');?>
<?php print __('DNS Template') . " <span style='color:#777;'> / " .strtoupper($_SESSION['DNS_SYSTEM']) . "</span>";?>
</td>
</tr>
<tr>