Major work to domain and hosting
Minor updates for ADSL services Updates to Sort::MAsort() Move core OSB items under application/ Moved ACCOUNT functions under application Minor updates to task
This commit is contained in:
@@ -1,43 +0,0 @@
|
||||
{$list->unserial($host_server.provision_plugin_data, "plugin_data")}
|
||||
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top">
|
||||
<td width="50%">* DirectAdmin Port</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_server_provision_plugin_data[port]" value="{$plugin_data.port}" class="form_field" size="30">
|
||||
eg: 2222</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%"> *DirectAdmin Host </td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_server_provision_plugin_data[host]" value="{$plugin_data.host}" class="form_field" size="30">
|
||||
eg: server.com</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%"> *DirectAdmin Login</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_server_provision_plugin_data[user]" value="{$plugin_data.user}" class="form_field">
|
||||
eg: admin </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%"> *DirectAdmin Password</td>
|
||||
<td width="50%">
|
||||
<input type="password" name="host_server_provision_plugin_data[pass]" value="{$plugin_data.pass}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Allow DirectAdmin to notify user?</td>
|
||||
<td width="50%">
|
||||
{$list->bool("host_server_provision_plugin_data[notify]", $plugin_data.notify, "form_menu")}
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">* = required fields</td>
|
||||
<td width="50%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%"> </td>
|
||||
<td width="50%"> </td>
|
||||
</tr>
|
||||
</table>
|
||||
|
@@ -1,33 +0,0 @@
|
||||
{$list->unserial($host_server.provision_plugin_data, "plugin_data")}
|
||||
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top">
|
||||
<td width="50%"> *easyAdmin Host </td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_server_provision_plugin_data[host]" value="{$plugin_data.host}" class="form_field" size="30">
|
||||
eg: http://x.x.x.x:88/.easy/main/mysql.cgi</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%"> *easyAdmin Login</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_server_provision_plugin_data[user]" value="{$plugin_data.user}" class="form_field">
|
||||
eg: admin </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%"> *easyAdmin Password</td>
|
||||
<td width="50%">
|
||||
<input type="password" name="host_server_provision_plugin_data[pass]" value="{$plugin_data.pass}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%"> *easyAdmin Reseller</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_server_provision_plugin_data[reseller]" value="{$plugin_data.reseller}" class="form_field">
|
||||
eg: admin</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">* = required fields</td>
|
||||
<td width="50%"> </td>
|
||||
</tr>
|
||||
</table>
|
||||
|
@@ -1,45 +0,0 @@
|
||||
{$list->unserial($host_server.provision_plugin_data, "plugin_data")}
|
||||
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_server}
|
||||
field_keycode
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_server_keycode" value="{$host_server.keycode}" class="form_field" size="40" maxlength="64">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<table width="100%" border="0" cellspacing="2" cellpadding="3" class="row1">
|
||||
<tr>
|
||||
<td>To complete the automation for this server with the selected provisioning
|
||||
plugin, you must paste the text in the box below and save it as a .sh file
|
||||
on the target server in your ensim directory where the "adddomain",
|
||||
"editdomain", and "deldomain" executable files are located.
|
||||
You must then give the .sh file you have created proper permission to execute
|
||||
the above mentioned files, and create a crontab job that runs it every 2-3
|
||||
minutes.<br>
|
||||
<br>
|
||||
You must also have curl installed, and make sure the correct path to the
|
||||
curl directory is reflected in the 1st line of your .sh file...</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<div align="center">
|
||||
<textarea name="textfield" cols="60" rows="8" class="form_field">CURL=/usr/bin/curl
|
||||
KEY={$host_server.keycode}
|
||||
PLG={$host_server.provision_plugin}
|
||||
URL={$URL}plugins/provision/
|
||||
|
||||
{literal}${CURL} -d "key=${KEY}" ${URL}${PLG}.php > provision_output.sh{/literal}
|
||||
sh provision_output.sh
|
||||
rm provision_output.sh
|
||||
|
||||
</textarea>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
@@ -1,45 +0,0 @@
|
||||
{$list->unserial($host_server.provision_plugin_data, "plugin_data")}
|
||||
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_server}
|
||||
field_keycode
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_server_keycode" value="{$host_server.keycode}" class="form_field" size="40" maxlength="64">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<table width="100%" border="0" cellspacing="2" cellpadding="3" class="row1">
|
||||
<tr>
|
||||
<td>To complete the automation for this server with the selected provisioning
|
||||
plugin, you must paste the text in the box below and save it as a .sh file
|
||||
on the target server in your ensim directory where the "AddVirtDomain",
|
||||
"EditVirtDomain", "DisableVirtDomain", "EnableVirtDomain",
|
||||
and "DeleteVirtDomain" executable files are located. You must
|
||||
then give the .sh file you have created proper permission to execute the
|
||||
above mentioned files, and create a crontab job that runs it every 2-3 minutes.<br>
|
||||
<br>
|
||||
You must also have curl installed, and make sure the correct path to the
|
||||
curl directory is reflected in the 1st line of your .sh file...</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<div align="center">
|
||||
<textarea name="textfield" cols="60" rows="8" class="form_field">CURL=/usr/bin/curl
|
||||
KEY={$host_server.keycode}
|
||||
PLG={$host_server.provision_plugin}
|
||||
URL={$URL}plugins/provision/
|
||||
|
||||
{literal}${CURL} -d "key=${KEY}" ${URL}${PLG}.php > provision_output.sh{/literal}
|
||||
sh provision_output.sh
|
||||
rm provision_output.sh
|
||||
|
||||
</textarea>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
@@ -1,45 +0,0 @@
|
||||
{$list->unserial($host_server.provision_plugin_data, "plugin_data")}
|
||||
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_server}
|
||||
field_keycode
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_server_keycode" value="{$host_server.keycode}" class="form_field" size="40" maxlength="64">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<table width="100%" border="0" cellspacing="2" cellpadding="3" class="row1">
|
||||
<tr>
|
||||
<td>To complete the automation for this server with the selected provisioning
|
||||
plugin, you must paste the text in the box below and save it as a .sh file
|
||||
on the target server in your ensim directory where the "AddVirtDomain",
|
||||
"EditVirtDomain", "DisableVirtDomain", "EnableVirtDomain",
|
||||
and "DeleteVirtDomain" executable files are located. You must
|
||||
then give the .sh file you have created proper permission to execute the
|
||||
above mentioned files, and create a crontab job that runs it every 2-3 minutes.<br>
|
||||
<br>
|
||||
You must also have curl installed, and make sure the correct path to the
|
||||
curl directory is reflected in the 1st line of your .sh file...</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<div align="center">
|
||||
<textarea name="textfield" cols="60" rows="8" class="form_field">CURL=/usr/bin/curl
|
||||
KEY={$host_server.keycode}
|
||||
PLG={$host_server.provision_plugin}
|
||||
URL={$URL}plugins/provision/
|
||||
|
||||
{literal}${CURL} -d "key=${KEY}" ${URL}${PLG}.php > provision_output.sh{/literal}
|
||||
sh provision_output.sh
|
||||
rm provision_output.sh
|
||||
|
||||
</textarea>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
@@ -1,60 +0,0 @@
|
||||
{$list->unserial($host_server.provision_plugin_data, "plugin_data")}
|
||||
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_server}
|
||||
field_keycode
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_server_keycode" value="{$host_server.keycode}" class="form_field" size="40" maxlength="64">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%"> Update Local Dns Server after adding new domains?</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("host_server_provision_plugin_data[dns]", $plugin_data.dns, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<table width="100%" border="0" cellspacing="2" cellpadding="3" class="row1">
|
||||
<tr>
|
||||
<td>To complete the automation for this server with the selected provisioning
|
||||
plugin, you must paste the text in the box below and save it as AgileBill.bat
|
||||
file on the target server in your ensim directory where the "adddomain",
|
||||
"editdomain", and "deldomain" executable files are located.
|
||||
You must then give the AgileBill.bat file you have created proper permission
|
||||
to execute the above mentioned files, and create a task that runs the AgileBill.bat
|
||||
file each time your server starts.<br>
|
||||
<br>
|
||||
You must also have curl installed, and make sure the correct path to the
|
||||
curl directory is reflected in the 1st line of your .bat file...</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<div align="center">
|
||||
<textarea name="textfield" cols="60" rows="8" class="form_field">@SET CURL=c:\curl\curl
|
||||
@SET KEY={$host_server.keycode}
|
||||
@SET DEL=120
|
||||
@SET PLG={$host_server.provision_plugin}
|
||||
@SET URL={$URL}plugins/provision/
|
||||
|
||||
:LOOP
|
||||
%CURL% -d "key=%KEY%" %URL%%PLG%.php > AgileBill_Out.bat
|
||||
GOTO WAIT
|
||||
AgileBill_Out.bat & CALL AgileBill
|
||||
GOTO LOOP
|
||||
:END
|
||||
|
||||
:WAIT
|
||||
@ping 127.0.0.1 -n 2 -w 1000 > nul
|
||||
@ping 127.0.0.1 -n %DEL% -w 1000 > nul
|
||||
GOTO LOOP
|
||||
:END
|
||||
</textarea>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
@@ -1,60 +0,0 @@
|
||||
{$list->unserial($host_server.provision_plugin_data, "plugin_data")}
|
||||
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_server}
|
||||
field_keycode
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_server_keycode" value="{$host_server.keycode}" class="form_field" size="40" maxlength="64">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%"> Update Local Dns Server after adding new domains?</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("host_server_provision_plugin_data[dns]", $plugin_data.dns, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<table width="100%" border="0" cellspacing="2" cellpadding="3" class="row1">
|
||||
<tr>
|
||||
<td>To complete the automation for this server with the selected provisioning
|
||||
plugin, you must paste the text in the box below and save it as AgileBill.bat
|
||||
file on the target server in your ensim directory where the "adddomain",
|
||||
"editdomain", and "deldomain" executable files are located.
|
||||
You must then give the AgileBill.bat file you have created proper permission
|
||||
to execute the above mentioned files, and create a task that runs the AgileBill.bat
|
||||
file each time your server starts.<br>
|
||||
<br>
|
||||
You must also have curl installed, and make sure the correct path to the
|
||||
curl directory is reflected in the 1st line of your .bat file...</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<div align="center">
|
||||
<textarea name="textfield" cols="60" rows="8" class="form_field">@SET CURL=c:\curl\curl
|
||||
@SET KEY={$host_server.keycode}
|
||||
@SET DEL=120
|
||||
@SET PLG={$host_server.provision_plugin}
|
||||
@SET URL={$URL}plugins/provision/
|
||||
|
||||
:LOOP
|
||||
%CURL% -d "key=%KEY%" %URL%%PLG%.php > AgileBill_Out.bat
|
||||
GOTO WAIT
|
||||
AgileBill_Out.bat & CALL AgileBill
|
||||
GOTO LOOP
|
||||
:END
|
||||
|
||||
:WAIT
|
||||
@ping 127.0.0.1 -n 2 -w 1000 > nul
|
||||
@ping 127.0.0.1 -n %DEL% -w 1000 > nul
|
||||
GOTO LOOP
|
||||
:END
|
||||
</textarea>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
@@ -1,11 +0,0 @@
|
||||
{$list->unserial($host_server.provision_plugin_data, "plugin_data")}
|
||||
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top">
|
||||
<td width="50%">Your Heart Internet Reseller Authcode</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_server_provision_plugin_data[authcode]" value="{$plugin_data.authcode}" class="form_field" size="30">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
@@ -1,34 +0,0 @@
|
||||
{$list->unserial($host_server.provision_plugin_data, "plugin_data")}
|
||||
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top">
|
||||
<td width="50%"> *Helm Host</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_server_provision_plugin_data[host]" value="{$plugin_data.host}" class="form_field" size="30">
|
||||
ie: cp.site.com</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%"> *Helm Login</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_server_provision_plugin_data[user]" value="{$plugin_data.user}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%"> *Helm Password</td>
|
||||
<td width="50%">
|
||||
<input type="password" name="host_server_provision_plugin_data[pass]" value="{$plugin_data.pass}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%"> *Helm Reseller Username (must have hosting plans configured
|
||||
for this reseller)</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_server_provision_plugin_data[reseller]" value="{$plugin_data.reseller}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">* = required fields</td>
|
||||
<td width="50%"> </td>
|
||||
</tr>
|
||||
</table>
|
||||
|
@@ -1,17 +0,0 @@
|
||||
{$list->unserial($host_server.provision_plugin_data, "plugin_data")}
|
||||
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top">
|
||||
<td width="50%"> Hostopia Username </td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_server_provision_plugin_data[user]" value="{$plugin_data.user}" size="40">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%"> Hostopia Password </td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_server_provision_plugin_data[pass]" value="{$plugin_data.pass}" >
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
@@ -1,15 +0,0 @@
|
||||
{$list->unserial($host_server.provision_plugin_data, "plugin_data")}
|
||||
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_server}
|
||||
email
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_server_provision_plugin_data[email]" value="{$plugin_data.email}" class="form_field" size="40">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
@@ -1,33 +0,0 @@
|
||||
{$list->unserial($host_server.provision_plugin_data, "plugin_data")}
|
||||
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top">
|
||||
<td width="50%">* Plesk Port</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_server_provision_plugin_data[port]" value="{$plugin_data.port}" class="form_field" size="30">
|
||||
eg: 8443</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%"> * Plesk Host </td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_server_provision_plugin_data[host]" value="{$plugin_data.host}" class="form_field" size="30">
|
||||
eg: server.com</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%"> * Plesk Login</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_server_provision_plugin_data[user]" value="{$plugin_data.user}" class="form_field">
|
||||
eg: admin </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%"> * Plesk Password</td>
|
||||
<td width="50%">
|
||||
<input type="password" name="host_server_provision_plugin_data[pass]" value="{$plugin_data.pass}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">* = required fields</td>
|
||||
<td width="50%"> </td>
|
||||
</tr>
|
||||
</table>
|
||||
|
@@ -1,44 +0,0 @@
|
||||
{$list->unserial($host_server.provision_plugin_data, "plugin_data")}
|
||||
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_server}
|
||||
field_keycode
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_server_keycode" value="{$host_server.keycode}" class="form_field" size="40" maxlength="64">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<table width="100%" border="0" cellspacing="2" cellpadding="3" class="row1">
|
||||
<tr>
|
||||
<td>To complete the automation for this server with the selected provisioning
|
||||
plugin, you must paste the text in the box below and save it as a .sh file
|
||||
on the target server where the plesk creation utilities are created. You
|
||||
must then give the .sh file you have created proper permission to execute
|
||||
the plesk creation utilities (normally root), and create a crontab job that
|
||||
runs it every 2-3 minutes.<br>
|
||||
<br>
|
||||
You must also have curl installed, and make sure the correct path to the
|
||||
curl directory is reflected in the 1st line of your .sh file...</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<div align="center">
|
||||
<textarea name="textfield" cols="60" rows="8" class="form_field">CURL=/usr/bin/curl
|
||||
KEY={$host_server.keycode}
|
||||
PLG={$host_server.provision_plugin}
|
||||
URL={$URL}plugins/provision/
|
||||
|
||||
{literal}${CURL} -d "key=${KEY}" ${URL}${PLG}.php > provision_output.sh{/literal}
|
||||
sh provision_output.sh
|
||||
rm provision_output.sh
|
||||
|
||||
</textarea>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
@@ -1,44 +0,0 @@
|
||||
{$list->unserial($host_server.provision_plugin_data, "plugin_data")}
|
||||
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_server}
|
||||
field_keycode
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_server_keycode" value="{$host_server.keycode}" class="form_field" size="40" maxlength="64">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<table width="100%" border="0" cellspacing="2" cellpadding="3" class="row1">
|
||||
<tr>
|
||||
<td>To complete the automation for this server with the selected provisioning
|
||||
plugin, you must paste the text in the box below and save it as a .sh file
|
||||
on the target server where the plesk creation utilities are created. You
|
||||
must then give the .sh file you have created proper permission to execute
|
||||
the plesk creation utilities (normally root), and create a crontab job that
|
||||
runs it every 2-3 minutes.<br>
|
||||
<br>
|
||||
You must also have curl installed, and make sure the correct path to the
|
||||
curl directory is reflected in the 1st line of your .sh file...</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<div align="center">
|
||||
<textarea name="textfield" cols="60" rows="8" class="form_field">CURL=/usr/bin/curl
|
||||
KEY={$host_server.keycode}
|
||||
PLG={$host_server.provision_plugin}
|
||||
URL={$URL}plugins/provision/
|
||||
|
||||
{literal}${CURL} -d "key=${KEY}" ${URL}${PLG}.php > provision_output.sh{/literal}
|
||||
sh provision_output.sh
|
||||
rm provision_output.sh
|
||||
|
||||
</textarea>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
@@ -1,33 +0,0 @@
|
||||
{$list->unserial($host_server.provision_plugin_data, "plugin_data")}
|
||||
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top">
|
||||
<td width="50%">* Plesk Port</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_server_provision_plugin_data[port]" value="{$plugin_data.port}" class="form_field" size="30">
|
||||
eg: 8443</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%"> * Plesk Host </td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_server_provision_plugin_data[host]" value="{$plugin_data.host}" class="form_field" size="30">
|
||||
eg: server.com</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%"> * Plesk Login</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_server_provision_plugin_data[user]" value="{$plugin_data.user}" class="form_field">
|
||||
eg: admin </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%"> * Plesk Password</td>
|
||||
<td width="50%">
|
||||
<input type="password" name="host_server_provision_plugin_data[pass]" value="{$plugin_data.pass}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">* = required fields</td>
|
||||
<td width="50%"> </td>
|
||||
</tr>
|
||||
</table>
|
||||
|
@@ -1,53 +0,0 @@
|
||||
{$list->unserial($host_server.provision_plugin_data, "plugin_data")}
|
||||
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_server}
|
||||
field_keycode
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_server_keycode" value="{$host_server.keycode}" class="form_field" size="40" maxlength="64">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<table width="100%" border="0" cellspacing="2" cellpadding="3" class="row1">
|
||||
<tr>
|
||||
<td>To complete the automation for this server with the selected provisioning
|
||||
plugin, you must paste the text in the box below and save it as AgileBill.bat
|
||||
on the target server in the directory where the plesk creation utilities
|
||||
are created. You must then give the AgileBill.bat file you have created
|
||||
proper permission to execute the Plesk creation utilities, and create a
|
||||
task that runs the AgileBill.bat file each time your server starts.<br>
|
||||
<br>
|
||||
You must also have curl installed, and make sure the correct path to the
|
||||
curl directory is reflected in the 1st line of your .bat file...</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<div align="center">
|
||||
<textarea name="textfield" cols="60" rows="8" class="form_field">@SET CURL=c:\curl\curl
|
||||
@SET KEY={$host_server.keycode}
|
||||
@SET DEL=120
|
||||
@SET PLG={$host_server.provision_plugin}
|
||||
@SET URL={$URL}plugins/provision/
|
||||
|
||||
:LOOP
|
||||
%CURL% -d "key=%KEY%" %URL%%PLG%.php > AgileBill_Out.bat
|
||||
GOTO WAIT
|
||||
AgileBill_Out.bat & CALL AgileBill
|
||||
GOTO LOOP
|
||||
:END
|
||||
|
||||
:WAIT
|
||||
@ping 127.0.0.1 -n 2 -w 1000 > nul
|
||||
@ping 127.0.0.1 -n %DEL% -w 1000 > nul
|
||||
GOTO LOOP
|
||||
:END
|
||||
</textarea>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
@@ -1,53 +0,0 @@
|
||||
{$list->unserial($host_server.provision_plugin_data, "plugin_data")}
|
||||
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_server}
|
||||
field_keycode
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_server_keycode" value="{$host_server.keycode}" class="form_field" size="40" maxlength="64">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<table width="100%" border="0" cellspacing="2" cellpadding="3" class="row1">
|
||||
<tr>
|
||||
<td>To complete the automation for this server with the selected provisioning
|
||||
plugin, you must paste the text in the box below and save it as AgileBill.bat
|
||||
on the target server in the directory where the plesk creation utilities
|
||||
are created. You must then give the AgileBill.bat file you have created
|
||||
proper permission to execute the Plesk creation utilities, and create a
|
||||
task that runs the AgileBill.bat file each time your server starts.<br>
|
||||
<br>
|
||||
You must also have curl installed, and make sure the correct path to the
|
||||
curl directory is reflected in the 1st line of your .bat file...</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<div align="center">
|
||||
<textarea name="textfield" cols="60" rows="8" class="form_field">@SET CURL=c:\curl\curl
|
||||
@SET KEY={$host_server.keycode}
|
||||
@SET DEL=120
|
||||
@SET PLG={$host_server.provision_plugin}
|
||||
@SET URL={$URL}plugins/provision/
|
||||
|
||||
:LOOP
|
||||
%CURL% -d "key=%KEY%" %URL%%PLG%.php > AgileBill_Out.bat
|
||||
GOTO WAIT
|
||||
AgileBill_Out.bat & CALL AgileBill
|
||||
GOTO LOOP
|
||||
:END
|
||||
|
||||
:WAIT
|
||||
@ping 127.0.0.1 -n 2 -w 1000 > nul
|
||||
@ping 127.0.0.1 -n %DEL% -w 1000 > nul
|
||||
GOTO LOOP
|
||||
:END
|
||||
</textarea>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
@@ -1,42 +0,0 @@
|
||||
{$list->unserial($host_server.provision_plugin_data, "plugin_data")}
|
||||
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top">
|
||||
<td width="50%">* Plesk Port</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_server_provision_plugin_data[port]" value="{$plugin_data.port}" class="form_field" size="30">
|
||||
eg: 8443</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%"> * Plesk Host </td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_server_provision_plugin_data[host]" value="{$plugin_data.host}" class="form_field" size="30">
|
||||
eg: server.com</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%"> * Plesk Login</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_server_provision_plugin_data[user]" value="{$plugin_data.user}" class="form_field">
|
||||
eg: admin </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%"> * Plesk Password</td>
|
||||
<td width="50%">
|
||||
<input type="password" name="host_server_provision_plugin_data[pass]" value="{$plugin_data.pass}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%" height="18">* Plesk Client ID</td>
|
||||
<td width="50%" height="18">
|
||||
<input type="text" name="host_server_provision_plugin_data[acct]" value="{$plugin_data.acct}" class="form_field" size="3">
|
||||
This is the numeric client ID of the PSA user to create all domains under.
|
||||
To get this ID, create a new client in PSA and on the Client page, move
|
||||
your mouse over the client name and in the status bar you will see the client
|
||||
id like so: ...?cl_id=X (where X is the client id)</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">* = required fields</td>
|
||||
<td width="50%"> </td>
|
||||
</tr>
|
||||
</table>
|
||||
|
@@ -1,58 +0,0 @@
|
||||
{$list->unserial($host_server.provision_plugin_data, "plugin_data")}
|
||||
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_server}
|
||||
connection_mode
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<select name="host_server_provision_plugin_data[mode]" >
|
||||
<option value="ftp" {if $plugin_data.mode == "ftp"}selected{/if}>{translate module=host_server}ftp{/translate}</option>
|
||||
<option value="http" {if $plugin_data.mode == "http"}selected{/if}>{translate module=host_server}http{/translate}</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_server}
|
||||
host
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_server_provision_plugin_data[host]" value="{$plugin_data.host}" size="40">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_server}
|
||||
path
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_server_provision_plugin_data[path]" value="{$plugin_data.path}" size="40">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_server}
|
||||
username
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_server_provision_plugin_data[username]" value="{$plugin_data.username}" >
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_server}
|
||||
password
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="password" name="host_server_provision_plugin_data[password]" value="{$plugin_data.password}" >
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
@@ -1,45 +0,0 @@
|
||||
{$list->unserial($host_server.provision_plugin_data, "plugin_data")}
|
||||
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_server}
|
||||
field_keycode
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_server_keycode" value="{$host_server.keycode}" class="form_field" size="40" maxlength="64">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<table width="100%" border="0" cellspacing="2" cellpadding="3" class="row1">
|
||||
<tr>
|
||||
<td>To complete the automation for this server with the selected provisioning
|
||||
plugin, you must paste the text in the box below and save it as a .sh file
|
||||
on the target server in your ensim directory where the "addvsite",
|
||||
"adduser", and "cdelvsite" executable files are located.
|
||||
You must then give the .sh file you have created proper permission to execute
|
||||
the above mentioned files, and create a crontab job that runs it every 2-3
|
||||
minutes.<br>
|
||||
<br>
|
||||
You must also have curl installed, and make sure the correct path to the
|
||||
curl directory is reflected in the 1st line of your .sh file...</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<div align="center">
|
||||
<textarea name="textfield" cols="60" rows="8" class="form_field">CURL=/usr/bin/curl
|
||||
KEY={$host_server.keycode}
|
||||
PLG={$host_server.provision_plugin}
|
||||
URL={$URL}plugins/provision/
|
||||
|
||||
{literal}${CURL} -d "key=${KEY}" ${URL}${PLG}.php > provision_output.sh{/literal}
|
||||
sh provision_output.sh
|
||||
rm provision_output.sh
|
||||
|
||||
</textarea>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
@@ -1,38 +0,0 @@
|
||||
{$list->unserial($host_server.provision_plugin_data, "plugin_data")}
|
||||
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top">
|
||||
<td width="50%"> Webmin Hostname or IP </td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_server_provision_plugin_data[host]" value="{$plugin_data.host}" size="40">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%"> Webmin Port</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_server_provision_plugin_data[port]" value="{$plugin_data.port}" size="40">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%"> Webmin User Account</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_server_provision_plugin_data[user]" value="{$plugin_data.user}" size="40">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%"> Webmin Password</td>
|
||||
<td width="50%">
|
||||
<input type="password" name="host_server_provision_plugin_data[pass]" value="{$plugin_data.pass}" size="40">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Connect Type</td>
|
||||
<td width="50%">
|
||||
<select name="host_server_provision_plugin_data[ssl]" >
|
||||
<option value="0" {if $plugin_data.ssl == "0"}selected{/if}>Standard</option>
|
||||
<option value="1" {if $plugin_data.ssl == "1"}selected{/if}>SSL</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
@@ -1,46 +0,0 @@
|
||||
{$list->unserial($host_server.provision_plugin_data, "plugin_data")}
|
||||
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_server}
|
||||
field_keycode
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_server_keycode" value="{$host_server.keycode}" class="form_field" size="40" maxlength="64">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<table width="100%" border="0" cellspacing="2" cellpadding="3" class="row1">
|
||||
<tr>
|
||||
<td><p>To complete the automation for this server with the selected provisioning
|
||||
plugin, you must paste the text in the box below and save it as a .sh file
|
||||
on the target server in the directory where the following executable files are located. (generally '/usr/libexec/webmin/virtual-server/')</p>
|
||||
<pre wrap="">create-domain.pl<br>delete-domain.pl<br>disable-domain.pl<br>enable-domain.pl<br>edit-domain.pl</pre>
|
||||
<p>You must
|
||||
then give the .sh file you have created proper permission to execute the
|
||||
above mentioned files (root), and create a crontab job that runs it every 2-3 minutes to keep changes on the server up to date.
|
||||
<br>
|
||||
<br>
|
||||
You must also have curl installed on the machine where the .sh file will be copied, and make sure the correct path to the
|
||||
curl directory is reflected in the 1st line of your .sh file below...</p></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<div align="center">
|
||||
<textarea name="textfield" cols="60" rows="8" class="form_field">CURL=/usr/bin/curl
|
||||
KEY={$host_server.keycode}
|
||||
PLG={$host_server.provision_plugin}
|
||||
URL={$URL}plugins/provision/
|
||||
|
||||
{literal}${CURL} -d "key=${KEY}" ${URL}${PLG}.php > provision_output.sh{/literal}
|
||||
sh provision_output.sh
|
||||
rm provision_output.sh
|
||||
|
||||
</textarea>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
@@ -1,29 +0,0 @@
|
||||
{$list->unserial($host_server.provision_plugin_data,'plugin_data')}
|
||||
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top">
|
||||
<td style="width: 35%;">Connect Type</td>
|
||||
<td style="width: 65%;">
|
||||
<select name="host_server_provision_plugin_data[mode]" >
|
||||
<option value="0" {if $plugin_data.mode == "0"}selected="selected"{/if}>Standard</option>
|
||||
<option value="1" {if $plugin_data.mode == "1"}selected="selected"{/if}>SSL</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td style="width: 35%;">Host</td>
|
||||
<td style="width: 65%;"><input type="text" name="host_server_provision_plugin_data[host]" value="{$plugin_data.host}" size="40"/></td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td style="width: 35%;">Path to 'Accounting.php.inc'</td>
|
||||
<td style="width: 65%;"><input type="text" name="host_server_provision_plugin_data[path]" value="{if $plugin_data.path == ""}/usr/local/cpanel/Cpanel/Accounting.php.inc{else}{$plugin_data.path}{/if}" size="40"/></td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td style="width: 35%;">WHM User Account</td>
|
||||
<td style="width: 65%;"><input type="text" name="host_server_provision_plugin_data[account]" value="{$plugin_data.account}"/></td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td style="width: 35%;">WHM Access Hash</td>
|
||||
<td style="width: 65%;"><textarea name="host_server_provision_plugin_data[accesshash]" cols="40" rows="8">{$plugin_data.accesshash}</textarea></td>
|
||||
</tr>
|
||||
</table>
|
@@ -1,15 +0,0 @@
|
||||
{$list->unserial($product.host_provision_plugin_data, "plugin_data")}
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top">
|
||||
<td width="50%"> DirectAdmin Package Name</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="product_host_provision_plugin_data[package]" value="{$plugin_data.package}" class="form_field" size="20">
|
||||
eg: newpackage</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">IP Based?</td>
|
||||
<td width="50%">
|
||||
{$list->bool("product_host_provision_plugin_data[type]", $plugin_data.type, "form_menu")}
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
@@ -1,112 +0,0 @@
|
||||
{$list->unserial($product.host_provision_plugin_data, "plugin_data")}
|
||||
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top">
|
||||
<td width="50%"> Host Type</td>
|
||||
<td width="50%">
|
||||
<select name="product_host_provision_plugin_data[hst_type]" class="form_menu">
|
||||
<option value="1" {if $plugin_data.hst_type == "1"} selected{/if}>Name
|
||||
Based</option>
|
||||
<option value="0" {if $plugin_data.hst_type == "0"} selected{/if}>IP Based</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%"> Disk Quota</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="product_host_provision_plugin_data[quota]" value="{$plugin_data.quota}" class="form_field" size="4">
|
||||
MB </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Max POP3/FTP Users</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="product_host_provision_plugin_data[users]" value="{$plugin_data.users}" class="form_field" size="4">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Enable FrontPage</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[enfp]", $plugin_data.enfp, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">PHP</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[enphp]", $plugin_data.enphp, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Shell Access</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[enshell]", $plugin_data.enshell, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">SSI</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[enssi]", $plugin_data.enssi, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">CGI</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[encgi]", $plugin_data.encgi, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">suEXEC</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[ensuexec]", $plugin_data.ensuexec, "form_menu") }
|
||||
(cannot be enabled at the same time as Miva)</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Raw Log Access</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[enraw]", $plugin_data.enraw, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Miva Merchant</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[enmiva]", $plugin_data.enmiva, "form_menu") }
|
||||
(cannot be enabled at the same time as suEXEC)</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">SSL</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[enssl]", $plugin_data.enssl, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Spam Filter (Spamassasin)</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[enfilter]", $plugin_data.enfilter, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Limit Bandwidth</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[enthrottle]", $plugin_data.enthrottle, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Limite Bandwidth Settings (If Yes to above)</td>
|
||||
<td width="50%"> Limit:
|
||||
<input name="product_host_provision_plugin_data[limit]" size=7 value="{$plugin_data.limit}" class="form_field">
|
||||
<select name="product_host_provision_plugin_data[bwunit]" class="form_menu">
|
||||
<option value="G" {if $plugin_data.bwunit == "G"} selected{/if}>Gigabyte(s)</option>
|
||||
<option value="M" {if $plugin_data.bwunit == "M"} selected{/if}>Megabyte(s)</option>
|
||||
<option value="K" {if $plugin_data.bwunit == "K"} selected{/if}>Kilobyte(s)</option>
|
||||
</select>
|
||||
<br>
|
||||
Duration
|
||||
<input name="product_host_provision_plugin_data[duration]" size=7 value="{$plugin_data.duration}" class="form_field">
|
||||
<select name="product_host_provision_plugin_data[durationunit]" class="form_menu">
|
||||
<option value="w" {if $plugin_data.durationunit == "w"} selected{/if}>Week(s)</option>
|
||||
<option value="d" {if $plugin_data.durationunit == "d"} selected{/if}>Day(s)</option>
|
||||
<option value="h" {if $plugin_data.durationunit == "h"} selected{/if}>Hour(s)</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<p> </p>
|
@@ -1,49 +0,0 @@
|
||||
{$list->unserial($product.host_provision_plugin_data, "plugin_data")}
|
||||
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top" class="row2">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
service
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{translate module=host_provision_plugin}
|
||||
enabled
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="34%">
|
||||
{translate module=host_provision_plugin}
|
||||
options
|
||||
{/translate}
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
ipinfo_namebased
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">--- </td>
|
||||
<td width="34%">
|
||||
<select name="product_host_provision_plugin_data[ipinfo_namebased]" class="form_menu">
|
||||
<option value="1" {if $plugin_data.ipinfo_namebased == "1"} selected{/if}>Name
|
||||
Based</option>
|
||||
<option value="0" {if $plugin_data.ipinfo_namebased == "0"} selected{/if}>IP
|
||||
Based</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
assoc_plan
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">--- </td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[plan]" value="{$plugin_data.plan}" class="form_field" size="10">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
@@ -1,457 +0,0 @@
|
||||
{$list->unserial($product.host_provision_plugin_data, "plugin_data")}
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top" class="row2">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
service
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{translate module=host_provision_plugin}
|
||||
enabled
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="34%">
|
||||
{translate module=host_provision_plugin}
|
||||
options
|
||||
{/translate}
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
ipinfo_namebased
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">--- </td>
|
||||
<td width="34%">
|
||||
<select name="product_host_provision_plugin_data[ipinfo_namebased]" class="form_menu">
|
||||
<option value="1" {if $plugin_data.ipinfo_namebased == "1"} selected{/if}>Name
|
||||
Based</option>
|
||||
<option value="0" {if $plugin_data.ipinfo_namebased == "0"} selected{/if}>IP
|
||||
Based</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
diskquota
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%"> ---</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[diskquota]" value="{$plugin_data.diskquota}" class="form_field" size="10">
|
||||
MB </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
maxusers
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%"> ---</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[maxusers]" value="{$plugin_data.maxusers}" class="form_field" size="10">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
bandwidth_threshold
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%"> ---</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[bandwidth_threshold]" value="{if $plugin_data.bandwidth_threshold == ""}0{else}{$plugin_data.bandwidth_threshold}{/if}" class="form_field" size="15">
|
||||
Bytes (0=unlimited)</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
bandwidth_rollover
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">--- </td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[bandwidth_rollover]" value="{if $plugin_data.bandwidth_rollover == ""}0{else}{$plugin_data.bandwidth_rollover}{/if}" class="form_field" size="10">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
mailscanner
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[mailscanner]", $plugin_data.mailscanner, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">
|
||||
{translate module=host_provision_plugin}
|
||||
mailscanner_out
|
||||
{/translate}
|
||||
{ $list->bool("product_host_provision_plugin_data[mailscanner_out]", $plugin_data.mailscanner_out, "form_menu") }
|
||||
{translate module=host_provision_plugin}
|
||||
mailscanner_in
|
||||
{/translate}
|
||||
{ $list->bool("product_host_provision_plugin_data[mailscanner_in]", $plugin_data.mailscanner_in, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
aspmgr
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[aspmgr]", $plugin_data.aspmgr, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
scriptsmgr
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[scriptsmgr]", $plugin_data.scriptsmgr, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
files
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[files]", $plugin_data.files, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
analog
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[analog]", $plugin_data.analog, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
frontpage
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[frontpage]", $plugin_data.frontpage, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
perl
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[perl]", $plugin_data.perl, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
allowanonymous
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[anonftp]", $plugin_data.anonftp, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
mysql
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[mysql]", $plugin_data.mysql, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[dbasenum]" value="{if $plugin_data.dbasenum == ""}1{else}{$plugin_data.dbasenum}{/if}" class="form_field" size="10">
|
||||
Max DBs</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
cgi
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[cgi]", $plugin_data.cgi, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
ssi
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[ssi]", $plugin_data.ssi, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
develenv
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[develenv]", $plugin_data.develenv, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
telnet
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[telnet]", $plugin_data.telnet, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">Jail?
|
||||
{ $list->bool("product_host_provision_plugin_data[telnet_jail]", $plugin_data.telnet_jail, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
ssh
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[ssh]", $plugin_data.ssh, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">Jail?
|
||||
{ $list->bool("product_host_provision_plugin_data[ssh_jail]", $plugin_data.ssh_jail, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
logrotate
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[logrotate]", $plugin_data.logrotate, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
vhbackup
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[vhbackup]", $plugin_data.vhbackup, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
bind
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[bind]", $plugin_data.bind, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
imap
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[imap]", $plugin_data.imap, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
tomcat4
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[tomcat4]", $plugin_data.tomcat4, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
openssl
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[openssl]", $plugin_data.openssl, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
weblogs
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[weblogs]", $plugin_data.weblogs, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
anonftp
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[anonftp]", $plugin_data.anonftp, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
majordomo
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[majordomo]", $plugin_data.majordomo, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
vacation
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[vacation]", $plugin_data.vacation, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
spam_filter
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[spam_filter]", $plugin_data.spam_filter, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
sqmail
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[sqmail]", $plugin_data.sqmail, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
mivamerchant
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[mivamerchant]", $plugin_data.mivamerchant, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
webalizer
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[webalizer]", $plugin_data.webalizer, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
proftpd
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[proftpd]", $plugin_data.proftpd, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
sendmail
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[sendmail]", $plugin_data.sendmail, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
subdomain
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[subdomain]", $plugin_data.subdomain, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[max_subdomain]" value="{if $plugin_data.max_subdomain == ""}0{else}{$plugin_data.max_subdomain}{/if}" class="form_field" size="10">
|
||||
{translate module=host_provision_plugin}
|
||||
max_subdomain
|
||||
{/translate}
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
apache_jail
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[apache_jail]", $plugin_data.apache_jail, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%"> </td>
|
||||
<td width="17%"> </td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
</table>
|
@@ -1,9 +0,0 @@
|
||||
{$list->unserial($product.host_provision_plugin_data, "plugin_data")}
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top">
|
||||
<td width="49%"> Enter service plan name from Ensim (ie: default)</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[plan]" value="{$plugin_data.plan}" class="form_field" size="20">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
@@ -1,377 +0,0 @@
|
||||
{$list->unserial($product.host_provision_plugin_data, "plugin_data")}
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top" class="row2">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
service
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{translate module=host_provision_plugin}
|
||||
enabled
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="34%">
|
||||
{translate module=host_provision_plugin}
|
||||
options
|
||||
{/translate}
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
ipinfo_namebased
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">--- </td>
|
||||
<td width="34%">
|
||||
<select name="product_host_provision_plugin_data[ipinfo_namebased]" class="form_menu">
|
||||
<option value="1" {if $plugin_data.ipinfo_namebased == "1"} selected{/if}>Name
|
||||
Based</option>
|
||||
<option value="0" {if $plugin_data.ipinfo_namebased == "0"} selected{/if}>IP
|
||||
Based</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
diskquota
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%"> ---</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[diskquota]" value="{$plugin_data.diskquota}" class="form_field" size="10">
|
||||
MB </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
maxusers
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%"> ---</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[maxusers]" value="{$plugin_data.maxusers}" class="form_field" size="10">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
files
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[winfiles]", $plugin_data.winfiles, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">--- </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
analog
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[winanalog]", $plugin_data.winanalog, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">---</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
odbc
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[odbc]", $plugin_data.odbc, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
coldfusion
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[coldfusion]", $plugin_data.coldfusion, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
frontpage
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[frontpage]", $plugin_data.frontpage, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
perl
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[perl]", $plugin_data.perl, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
php
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[php]", $plugin_data.php, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
mysql
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[mysql]", $plugin_data.mysql, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
urchin
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[urchin]", $plugin_data.urchin, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
msftpsvc
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[msftpsvc]", $plugin_data.msftpsvc, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
cgi
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[cgi]", $plugin_data.cgi, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
ssi
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[ssi]", $plugin_data.ssi, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
sslc
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[sslc]", $plugin_data.sslc, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
w3svc
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[w3svc]", $plugin_data.w3svc, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
allowanonymous
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[allowanonymous]", $plugin_data.allowanonymous, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
logtype
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[logtype]", $plugin_data.logtype, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
msftpsvc
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[msftpsvc]", $plugin_data.msftpsvc, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
ftp_maxconnections
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">---</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[ftp_maxconnections]" value="{$plugin_data.ftp_maxconnections}" class="form_field" size="10">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
ftp_maxconnectionsunlimited
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[ftp_maxconnectionsunlimited]", $plugin_data.ftp_maxconnectionsunlimited, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
logtype
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[logtype]", $plugin_data.logtype, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
enablebandwidthquota
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[enablebandwidthquota]", $plugin_data.enablebandwidthquota, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[maxbandwidth]" value="{$plugin_data.maxbandwidth}" class="form_field" size="10">
|
||||
Kbps </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
cpuquota
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[cpuquota]", $plugin_data.cpuquota, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[cpuquota]" value="{$plugin_data.cpuquota}" class="form_field" size="10">
|
||||
1-100 </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
w3svc_maxconnections
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%"> ---</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[w3svc_maxconnections]" value="{$plugin_data.w3svc_maxconnections}" class="form_field" size="10">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
w3svc_maxconnectionsunlimited
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[w3svc_maxconnectionsunlimited]", $plugin_data.w3svc_maxconnectionsunlimited, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
serversize
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%"> ---</td>
|
||||
<td width="34%">
|
||||
<select name="product_host_provision_plugin_data[serversize]" class="form_menu">
|
||||
<option value="0" {if $plugin_data.serversize == "0"} selected{/if}><
|
||||
10,000 daily requests</option>
|
||||
<option value="1" {if $plugin_data.serversize == "1"} selected{/if}>10,000
|
||||
- 100,000 daily requests</option>
|
||||
<option value="2" {if $plugin_data.serversize == "2"} selected{/if}>>100,000
|
||||
daily requests</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
winmail
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[winmail]", $plugin_data.winmail, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
userforwards
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[userforwards]", $plugin_data.userforwards, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
autoresponder
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[autoresponder]", $plugin_data.autoresponder, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
</table>
|
@@ -1,419 +0,0 @@
|
||||
{$list->unserial($product.host_provision_plugin_data, "plugin_data")}
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top" class="row2">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
service
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{translate module=host_provision_plugin}
|
||||
enabled
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="34%">
|
||||
{translate module=host_provision_plugin}
|
||||
options
|
||||
{/translate}
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
ipinfo_namebased
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">--- </td>
|
||||
<td width="34%">
|
||||
<select name="product_host_provision_plugin_data[ipinfo_namebased]" class="form_menu">
|
||||
<option value="1" {if $plugin_data.ipinfo_namebased == "1"} selected{/if}>Name
|
||||
Based</option>
|
||||
<option value="0" {if $plugin_data.ipinfo_namebased == "0"} selected{/if}>IP
|
||||
Based</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
diskquota
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%"> ---</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[diskquota]" value="{$plugin_data.diskquota}" class="form_field" size="10">
|
||||
MB </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
maxusers
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%"> ---</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[maxusers]" value="{$plugin_data.maxusers}" class="form_field" size="10">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
datadrive
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%"> ---</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[dataDrive]" value="{if $plugin_data.dataDrive == ""}c:{else}{$plugin_data.dataDrive}{/if}" class="form_field" size="10">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
style_name
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%"> ---</td>
|
||||
<td width="34%">
|
||||
<select name="product_host_provision_plugin_data[style_name]" class="form_menu">
|
||||
<option value="blue-display" {if $plugin_data.style_name == "blue"} selected{/if}>Cerulean
|
||||
Blue</option>
|
||||
<option value="brown-display" {if $plugin_data.style_name == "brown-display"} selected{/if}>Class
|
||||
Lavender</option>
|
||||
<option value="green-display" {if $plugin_data.style_name == "green-display"} selected{/if}>Serene
|
||||
Green</option>
|
||||
<option value="grey-display" {if $plugin_data.style_name == "grey-display"} selected{/if}>Soothing
|
||||
Grey</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
urchin
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[urchin]", $plugin_data.urchin, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">--- </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
files
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[winfiles]", $plugin_data.winfiles, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">--- </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
analog
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[winanalog]", $plugin_data.winanalog, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">---</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
odbc
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[odbc]", $plugin_data.odbc, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
coldfusion
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[coldfusion]", $plugin_data.coldfusion, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
frontpage
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[frontpage]", $plugin_data.frontpage, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
perl
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[perl]", $plugin_data.perl, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
php
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[php]", $plugin_data.php, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
mysql
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[mysql]", $plugin_data.mysql, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
urchin
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[urchin]", $plugin_data.urchin, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
msftpsvc
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[msftpsvc]", $plugin_data.msftpsvc, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
cgi
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[cgi]", $plugin_data.cgi, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
ssi
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[ssi]", $plugin_data.ssi, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
sslc
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[sslc]", $plugin_data.sslc, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
w3svc
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[w3svc]", $plugin_data.w3svc, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
allowanonymous
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[allowanonymous]", $plugin_data.allowanonymous, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
logtype
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[logtype]", $plugin_data.logtype, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
msftpsvc
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[msftpsvc]", $plugin_data.msftpsvc, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
ftp_maxconnections
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">---</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[ftp_maxconnections]" value="{$plugin_data.ftp_maxconnections}" class="form_field" size="10">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
ftp_maxconnectionsunlimited
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[ftp_maxconnectionsunlimited]", $plugin_data.ftp_maxconnectionsunlimited, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
logtype
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[logtype]", $plugin_data.logtype, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
enablebandwidthquota
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[enablebandwidthquota]", $plugin_data.enablebandwidthquota, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[maxbandwidth]" value="{$plugin_data.maxbandwidth}" class="form_field" size="10">
|
||||
Kbps </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
cpuquota
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[enablecpuquota]", $plugin_data.enablecpuquota, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[cpuquota]" value="{$plugin_data.cpuquota}" class="form_field" size="10">
|
||||
1-100 </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
w3svc_maxconnections
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%"> ---</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[w3svc_maxconnections]" value="{$plugin_data.w3svc_maxconnections}" class="form_field" size="10">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
w3svc_maxconnectionsunlimited
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[w3svc_maxconnectionsunlimited]", $plugin_data.w3svc_maxconnectionsunlimited, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
serversize
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%"> ---</td>
|
||||
<td width="34%">
|
||||
<select name="product_host_provision_plugin_data[serversize]" class="form_menu">
|
||||
<option value="0" {if $plugin_data.serversize == "0"} selected{/if}><
|
||||
10,000 daily requests</option>
|
||||
<option value="1" {if $plugin_data.serversize == "1"} selected{/if}>10,000
|
||||
- 100,000 daily requests</option>
|
||||
<option value="2" {if $plugin_data.serversize == "2"} selected{/if}>>100,000
|
||||
daily requests</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
winmail
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[winmail]", $plugin_data.winmail, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
userforwards
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[userforwards]", $plugin_data.userforwards, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
autoresponder
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[autoresponder]", $plugin_data.autoresponder, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
</table>
|
@@ -1,9 +0,0 @@
|
||||
{$list->unserial($product.host_provision_plugin_data, "plugin_data")}
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top">
|
||||
<td width="50%"> Heart Internet Hosting Package ID</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="product_host_provision_plugin_data[package]" value="{$plugin_data.package}" class="form_field" size="20">
|
||||
eg: 12345</td>
|
||||
</tr>
|
||||
</table>
|
@@ -1,21 +0,0 @@
|
||||
{$list->unserial($product.host_provision_plugin_data, "plugin_data")}
|
||||
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top">
|
||||
<td width="55%"> Helm Hosting Plan ID</td>
|
||||
<td width="45%">
|
||||
<input type="text" name="product_host_provision_plugin_data[plan]" value="{$plugin_data.plan}" class="form_field" size="32">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="55%">To get the hosting Plan Id, go to your reseller account in
|
||||
Helm, view your Hosting Plans, then click one to view it. In the URL field
|
||||
of your web browser, you will see the URL and the Plan Id will be displayed
|
||||
at the end: PlanID=XXX - Where XXX is the Plan Id. Also, the plans you enter
|
||||
here must have no setup fees or recurring fees, otherwise, AB will not be
|
||||
able to create the domain in the user's account after adding the Plan to
|
||||
their account.</td>
|
||||
<td width="45%"> </td>
|
||||
</tr>
|
||||
</table>
|
||||
|
@@ -1,16 +0,0 @@
|
||||
{$list->unserial($product.host_provision_plugin_data, "plugin_data")}
|
||||
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
Hostopia Package </td>
|
||||
<td width="50%">
|
||||
<input type="text" name="product_host_provision_plugin_data[package]" value="{$plugin_data.package}" class="form_field" size="32">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td>Hostopia Service </td>
|
||||
<td><input type="text" name="product_host_provision_plugin_data[service]" value="{$plugin_data.service}" class="form_field" size="32"></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
@@ -1,251 +0,0 @@
|
||||
{$list->unserial($product.host_provision_plugin_data, "plugin_data")}
|
||||
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top" class="row2">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
service
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{translate module=host_provision_plugin}
|
||||
enabled
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="34%">
|
||||
{translate module=host_provision_plugin}
|
||||
options
|
||||
{/translate}
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
bandwidth_threshold
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">--- </td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[bandwidth_threshold]" value="{$plugin_data.bandwidth_threshold}" class="form_field" size="10">
|
||||
bytes</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
ipinfo_namebased
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">--- </td>
|
||||
<td width="34%">
|
||||
<select name="product_host_provision_plugin_data[ipinfo_namebased]" class="form_menu">
|
||||
<option value="1" {if $plugin_data.ipinfo_namebased == "1"} selected{/if}>Name
|
||||
Based</option>
|
||||
<option value="0" {if $plugin_data.ipinfo_namebased == "0"} selected{/if}>IP
|
||||
Based</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
diskquota
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
<select name="product_host_provision_plugin_data[diskquota_units]" class="form_menu">
|
||||
<option value="B" {if $plugin_data.diskquota_units == "B"} selected{/if}>Bytes</option>
|
||||
<option value="KB" {if $plugin_data.diskquota_units == "KB"} selected{/if}>Kilobytes</option>
|
||||
<option value="MB" {if $plugin_data.diskquota_units == "MB"} selected{/if}>Megaytes</option>
|
||||
<option value="GB" {if $plugin_data.diskquota_units == "GB"} selected{/if}>Gigabytes</option>
|
||||
</select>
|
||||
</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[diskquota_quota]" value="{$plugin_data.diskquota_quota}" class="form_field" size="10">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
telnet
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[telnet]", $plugin_data.telnet, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">--- </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
ssh
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[ssh]", $plugin_data.ssh, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">--- </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
imap
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[imap]", $plugin_data.imap, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">--- </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
bind
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[bind]", $plugin_data.bind, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">--- </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
anonftp
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[anonftp]", $plugin_data.anonftp, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">--- </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
openssl
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[openssl]", $plugin_data.openssl, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">--- </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
ssi
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[ssi]", $plugin_data.ssi, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">--- </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
weblogs
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[weblogs]", $plugin_data.weblogs, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">--- </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
vacation
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[vacation]", $plugin_data.vacation, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">--- </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
majordomo
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[majordomo]", $plugin_data.majordomo, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">--- </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
sqmail
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[sqmail]", $plugin_data.sqmail, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">--- </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
frontpage
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[frontpage]", $plugin_data.frontpage, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">--- </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
mivamerchant
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[mivamerchant]", $plugin_data.mivamerchant, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">--- </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
analog
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[analog]", $plugin_data.analog, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">--- </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
backup
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[backup]", $plugin_data.backup, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">--- </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
files
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[files]", $plugin_data.files, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">--- </td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<div align="center">
|
||||
{translate module=host_provision_plugin}
|
||||
notes
|
||||
{/translate}
|
||||
<br>
|
||||
<textarea name="product_host_provision_plugin_data[notes]" class="form_field" cols="80" rows="5">{$plugin_data.notes}</textarea>
|
||||
<br>
|
||||
</div>
|
@@ -1,36 +0,0 @@
|
||||
{$list->unserial($product.host_provision_plugin_data, "plugin_data")}
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top">
|
||||
<td width="50%"> </td>
|
||||
<td width="50%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">IP Based Plan? </td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[ip_based]", $plugin_data.ip_based, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%"> </td>
|
||||
<td width="50%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%"><b>Client/Domain Templates</b></td>
|
||||
<td width="50%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Client template</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="product_host_provision_plugin_data[client_template_name]" value="{$plugin_data.client_template_name}" class="form_field" size="30">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Domain template</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="product_host_provision_plugin_data[domain_template_name]" value="{$plugin_data.domain_template_name}" class="form_field" size="30">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<input type="hidden" name="product_host_provision_plugin_data[account_id]" value="{$plugin_data.account_id}">
|
||||
<input type="hidden" name="product_host_provision_plugin_data[domain_id]" value="{$plugin_data.domain_id}">
|
||||
|
@@ -1,364 +0,0 @@
|
||||
{$list->unserial($product.host_provision_plugin_data, "plugin_data")}
|
||||
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top" class="row2">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
service
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{translate module=host_provision_plugin}
|
||||
enabled
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="34%">
|
||||
{translate module=host_provision_plugin}
|
||||
options
|
||||
{/translate}
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
hst_type
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
<select name="product_host_provision_plugin_data[hst_type]" class="form_menu">
|
||||
<option value="1" {if $plugin_data.hst_type == "1"} selected{/if}>Name
|
||||
Based</option>
|
||||
<option value="0" {if $plugin_data.hst_type == "0"} selected{/if}>IP Based</option>
|
||||
</select>
|
||||
</td>
|
||||
<td width="34%"> ---</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
hard_quota
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">--- </td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[hard_quota]" value="{$plugin_data.hard_quota}" class="form_field" size="10">
|
||||
MB</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
disk_space
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">--- </td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[disk_space]" value="{$plugin_data.disk_space}" class="form_field" size="10">
|
||||
MB</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
traffic
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">--- </td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[max_traffic]" value="{$plugin_data.max_traffic}" class="form_field" size="10">
|
||||
MB/month </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
max_box
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">--- </td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[max_box]" value="{if $plugin_data.max_box == ""}-1{else}{$plugin_data.max_box}{/if}" class="form_field" size="10">
|
||||
-1=unlimited</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
max_redir
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%"> ---</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[max_redir]" value="{if $plugin_data.max_redir == ""}-1{else}{$plugin_data.max_redir}{/if}" class="form_field" size="10">
|
||||
-1=unlimited </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
max_mg
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%"> ---</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[max_mg]" value="{if $plugin_data.max_mg == ""}-1{else}{$plugin_data.max_mg}{/if}" class="form_field" size="10">
|
||||
-1=unlimited </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
max_resp
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%"> ---</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[max_resp]" value="{if $plugin_data.max_resp == ""}-1{else}{$plugin_data.max_resp}{/if}" class="form_field" size="10">
|
||||
-1=unlimited </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
max_wu
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%"> ---</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[max_wu]" value="{if $plugin_data.max_wu == ""}-1{else}{$plugin_data.max_wu}{/if}" class="form_field" size="10">
|
||||
-1=unlimited </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
max_db
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%"> ---</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[max_db]" value="{if $plugin_data.max_db == ""}-1{else}{$plugin_data.max_db}{/if}" class="form_field" size="10">
|
||||
-1=unlimited </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
max_maillists
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%"> ---</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[max_maillists]" value="{if $plugin_data.max_maillists == ""}-1{else}{$plugin_data.max_maillists}{/if}" class="form_field" size="10">
|
||||
-1=unlimited </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
max_webapps
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%"> ---</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[max_webapps]" value="{if $plugin_data.max_webapps == ""}-1{else}{$plugin_data.max_webapps}{/if}" class="form_field" size="10">
|
||||
-1=unlimited </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
keep_traf_stat
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%"> ---</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[keep_traf_stat]" value="{if $plugin_data.keep_traf_stat == ""}0{else}{$plugin_data.keep_traf_stat}{/if}" class="form_field" size="10">
|
||||
Months (0=unlimited)</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
ssi
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[ssi]", $plugin_data.ssi, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">--- </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
fp
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[fp]", $plugin_data.fp, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">--- </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
fp_ssl
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[fp_ssl]", $plugin_data.fp_ssl, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">--- </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
fpauth
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[fpauth]", $plugin_data.fpauth, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">--- </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
php
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[php]", $plugin_data.php, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">---</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
cgi
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[cgi]", $plugin_data.cgi, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">---</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
perl
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[perl]", $plugin_data.perl, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">---</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
asp
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[asp]", $plugin_data.asp, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">---</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
python
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[python]", $plugin_data.python, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">---</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
webstat
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[webstat]", $plugin_data.webstat, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">---</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
webmail
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[webmail]", $plugin_data.webmail, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">---</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
log_bysize
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[log_rotate]", $plugin_data.log_rotate, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[log_bysize]" value="{$plugin_data.log_bysize}" class="form_field" size="10">
|
||||
KB</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
log_max_num
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
<select name="product_host_provision_plugin_data[log_bytime]" class="form_menu">
|
||||
<option value="daily" {if $plugin_data.log_bytime == "daily"} selected{/if}>Daily</option>
|
||||
<option value="weekly" {if $plugin_data.log_bytime == "weekly"} selected{/if}>Weekly</option>
|
||||
<option value="monthly" {if $plugin_data.log_bytime == "monthly"} selected{/if}>Monthly</option>
|
||||
</select>
|
||||
</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[log_max_num]" value="{$plugin_data.log_max_num}" class="form_field" size="10">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
log_compress
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[log_compress]", $plugin_data.log_compress, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">---</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
err_docs
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[err_docs]", $plugin_data.err_docs, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">---</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
wuscripts
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[wuscripts]", $plugin_data.wuscripts, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">---</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
ssl
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[ssl]", $plugin_data.ssl, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">---</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
@@ -1,419 +0,0 @@
|
||||
{$list->unserial($product.host_provision_plugin_data, "plugin_data")}
|
||||
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top" class="row2">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
service
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{translate module=host_provision_plugin}
|
||||
enabled
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="34%">
|
||||
{translate module=host_provision_plugin}
|
||||
options
|
||||
{/translate}
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
hst_type
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
<select name="product_host_provision_plugin_data[hst_type]" class="form_menu">
|
||||
<option value="1" {if $plugin_data.hst_type == "1"} selected{/if}>Name
|
||||
Based</option>
|
||||
<option value="0" {if $plugin_data.hst_type == "0"} selected{/if}>IP Based</option>
|
||||
</select>
|
||||
</td>
|
||||
<td width="34%"> ---</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
shell
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%"> ---</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[shell]" value="{if $plugin_data.shell == ""}/bin/bash{else}{$plugin_data.shell}{/if}" class="form_field" size="20">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
hard_quota
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">--- </td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[hard_quota]" value="{$plugin_data.hard_quota}" class="form_field" size="10">
|
||||
MB</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
disk_space
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">--- </td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[disk_space]" value="{$plugin_data.disk_space}" class="form_field" size="10">
|
||||
MB</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
traffic
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">--- </td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[max_traffic]" value="{$plugin_data.max_traffic}" class="form_field" size="10">
|
||||
MB/month </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
mail_service
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[mail_service]", $plugin_data.mail_service, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
max_box
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">--- </td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[max_box]" value="{if $plugin_data.max_box == ""}-1{else}{$plugin_data.max_box}{/if}" class="form_field" size="10">
|
||||
-1=unlimited</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
mbox_quota
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">--- </td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[mbox_quota]" value="{if $plugin_data.mbox_quota == ""}-1{else}{$plugin_data.mbox_quota}{/if}" class="form_field" size="10">
|
||||
KB </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
max_redir
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%"> ---</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[max_redir]" value="{if $plugin_data.max_redir == ""}-1{else}{$plugin_data.max_redir}{/if}" class="form_field" size="10">
|
||||
-1=unlimited </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
max_mg
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%"> ---</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[max_mg]" value="{if $plugin_data.max_mg == ""}-1{else}{$plugin_data.max_mg}{/if}" class="form_field" size="10">
|
||||
-1=unlimited </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
max_resp
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%"> ---</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[max_resp]" value="{if $plugin_data.max_resp == ""}-1{else}{$plugin_data.max_resp}{/if}" class="form_field" size="10">
|
||||
-1=unlimited </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
max_wu
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%"> ---</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[max_wu]" value="{if $plugin_data.max_wu == ""}-1{else}{$plugin_data.max_wu}{/if}" class="form_field" size="10">
|
||||
-1=unlimited </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
max_db
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%"> ---</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[max_db]" value="{if $plugin_data.max_db == ""}-1{else}{$plugin_data.max_db}{/if}" class="form_field" size="10">
|
||||
-1=unlimited </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
max_subdom
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%"> ---</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[max_subdom]" value="{if $plugin_data.max_subdom == ""}-1{else}{$plugin_data.max_subdom}{/if}" class="form_field" size="10">
|
||||
-1=unlimited </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
max_maillists
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%"> ---</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[max_maillists]" value="{if $plugin_data.max_maillists == ""}-1{else}{$plugin_data.max_maillists}{/if}" class="form_field" size="10">
|
||||
-1=unlimited </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
max_webapps
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%"> ---</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[max_webapps]" value="{if $plugin_data.max_webapps == ""}-1{else}{$plugin_data.max_webapps}{/if}" class="form_field" size="10">
|
||||
-1=unlimited </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
keep_traf_stat
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%"> ---</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[keep_traf_stat]" value="{if $plugin_data.keep_traf_stat == ""}0{else}{$plugin_data.keep_traf_stat}{/if}" class="form_field" size="10">
|
||||
Months (0=unlimited)</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
ssi
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[ssi]", $plugin_data.ssi, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">--- </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
fp
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[fp]", $plugin_data.fp, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">--- </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
fp_ssl
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[fp_ssl]", $plugin_data.fp_ssl, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">--- </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
fpauth
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[fpauth]", $plugin_data.fpauth, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">--- </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
php
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[php]", $plugin_data.php, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">---</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
cgi
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[cgi]", $plugin_data.cgi, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">---</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
perl
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[perl]", $plugin_data.perl, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">---</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
asp
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[asp]", $plugin_data.asp, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">---</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
python
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[python]", $plugin_data.python, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">---</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
coldfusion
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[coldfusion]", $plugin_data.coldfusion, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">---</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
webstat
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[webstat]", $plugin_data.webstat, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">---</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
webmail
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[webmail]", $plugin_data.webmail, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">---</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
log_bysize
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[log_rotate]", $plugin_data.log_rotate, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[log_bysize]" value="{$plugin_data.log_bysize}" class="form_field" size="10">
|
||||
KB</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
log_max_num
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
<select name="product_host_provision_plugin_data[log_bytime]" class="form_menu">
|
||||
<option value="daily" {if $plugin_data.log_bytime == "daily"} selected{/if}>Daily</option>
|
||||
<option value="weekly" {if $plugin_data.log_bytime == "weekly"} selected{/if}>Weekly</option>
|
||||
<option value="monthly" {if $plugin_data.log_bytime == "monthly"} selected{/if}>Monthly</option>
|
||||
</select>
|
||||
</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[log_max_num]" value="{$plugin_data.log_max_num}" class="form_field" size="10">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
log_compress
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[log_compress]", $plugin_data.log_compress, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">---</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
err_docs
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[err_docs]", $plugin_data.err_docs, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">---</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
wuscripts
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[wuscripts]", $plugin_data.wuscripts, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">---</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
ssl
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[ssl]", $plugin_data.ssl, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">---</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
@@ -1,311 +0,0 @@
|
||||
{$list->unserial($product.host_provision_plugin_data, "plugin_data")}
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top">
|
||||
<td width="50%"> </td>
|
||||
<td width="50%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">IP Based Plan? </td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[ip_based]", $plugin_data.ip_based, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%"> </td>
|
||||
<td width="50%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%"><b>Client/Domain Limits</b></td>
|
||||
<td width="50%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Maximum number of subdomains</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="product_host_provision_plugin_data[max_subdom]" value="{$plugin_data.max_subdom}" class="form_field" size="4">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Disk space</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="product_host_provision_plugin_data[disk_space]" value="{$plugin_data.disk_space}" class="form_field" size="12">
|
||||
MB </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Maximum amount of traffic</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="product_host_provision_plugin_data[max_traffic]" value="{$plugin_data.max_traffic}" class="form_field" size="12">
|
||||
MB/Month </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Maximum number of web users </td>
|
||||
<td width="50%">
|
||||
<input type="text" name="product_host_provision_plugin_data[max_wu]" value="{$plugin_data.max_wu}" class="form_field" size="4">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Maximum number of databases </td>
|
||||
<td width="50%">
|
||||
<input type="text" name="product_host_provision_plugin_data[max_db]" value="{$plugin_data.max_db}" class="form_field" size="4">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Maximum number of mailboxes </td>
|
||||
<td width="50%">
|
||||
<input type="text" name="product_host_provision_plugin_data[max_box]" value="{$plugin_data.max_box}" class="form_field" size="4">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Mailbox quota</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="product_host_provision_plugin_data[mbox_quota]" value="{$plugin_data.mbox_quota}" class="form_field" size="12">
|
||||
KB </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Maximum number of mail redirects </td>
|
||||
<td width="50%">
|
||||
<input type="text" name="product_host_provision_plugin_data[max_redir]" value="{$plugin_data.max_redir}" class="form_field" size="4">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Maximum number of mail groups </td>
|
||||
<td width="50%">
|
||||
<input type="text" name="product_host_provision_plugin_data[max_mg]" value="{$plugin_data.max_mg}" class="form_field" size="4">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Maximum number of mail autoresponders </td>
|
||||
<td width="50%">
|
||||
<input type="text" name="product_host_provision_plugin_data[max_resp]" value="{$plugin_data.max_resp}" class="form_field" size="4">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Maximum number of mailing lists </td>
|
||||
<td width="50%">
|
||||
<input type="text" name="product_host_provision_plugin_data[max_maillists]" value="{$plugin_data.max_maillists}" class="form_field" size="4">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Maximum number of Java applications </td>
|
||||
<td width="50%">
|
||||
<input type="text" name="product_host_provision_plugin_data[max_webapps]" value="{$plugin_data.max_webapps}" class="form_field" size="4">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">FTP Quota </td>
|
||||
<td width="50%">
|
||||
<input type="text" name="product_host_provision_plugin_data[ftp_quota]" value="{$plugin_data.ftp_quota}" class="form_field" size="12">
|
||||
<input type="hidden" name="product_host_provision_plugin_data[max_dom]" value="1" class="form_field" size="4">
|
||||
MB </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%"> </td>
|
||||
<td width="50%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%"><b>Client Permissions:</b></td>
|
||||
<td width="50%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Domain creation</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[create_domains]", $plugin_data.create_domains, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Physical hosting management</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[manage_phosting]", $plugin_data.manage_phosting, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Management of shell access to server</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[manage_sh_access]", $plugin_data.manage_sh_access, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Non-chrooted shell management</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[manage_not_chroot_shell]", $plugin_data.manage_not_chroot_shell, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Hard disk quota assignment</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[manage_quota]", $plugin_data.manage_quota, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Subdomains management</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[manage_subdomains]", $plugin_data.manage_subdomains, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Log rotation management</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[manage_log]", $plugin_data.manage_log, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Anonymous FTP management</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[manage_anonftp]", $plugin_data.manage_anonftp, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Crontab management</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[manage_crontab]", $plugin_data.manage_crontab, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Use of Mambo content management system (Site Builder)</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[site_builder]", $plugin_data.site_builder, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Domain limits adjustment</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[change_limits]", $plugin_data.change_limits, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">DNS zone management</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[manage_dns]", $plugin_data.manage_dns, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Java applications management</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[manage_webapps]", $plugin_data.manage_webapps, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Mailing lists management</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[manage_maillists]", $plugin_data.manage_maillists, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Dr.Web antivirus management</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[manage_drweb]", $plugin_data.manage_drweb, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Backup/restore functions</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[make_dumps]", $plugin_data.make_dumps, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%"> </td>
|
||||
<td width="50%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%"><b>Domain Permissions:</b></td>
|
||||
<td width="50%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Enable Frontpage</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[fp]", $plugin_data.fp, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Enable Frontpage SSL</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[fp_ssl]", $plugin_data.fp_ssl, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Enable Frontpage Authentication</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[fp_auth]", $plugin_data.fp_auth, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">SSL</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[ssl]", $plugin_data.ssl, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Shell</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[shell]", $plugin_data.shell, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">PHP</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[php]", $plugin_data.php, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">SSI</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[ssi]", $plugin_data.ssi, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">CGI</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[cgi]", $plugin_data.cgi, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">MOD Perl</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[mod_perl]", $plugin_data.mod_perl, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">MOD Python</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[mod_python]", $plugin_data.mod_python, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">ASP</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[asp]", $plugin_data.asp, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">ASP.net</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[asp_dot_net]", $plugin_data.asp_dot_net, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">ColdFusion</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[coldfusion]", $plugin_data.coldfusion, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Web Stats</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[webstat]", $plugin_data.webstat, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Error Docs</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[errdocs]", $plugin_data.errdocs, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">@domains</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[at_domains]", $plugin_data.at_domains, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<input type="hidden" name="product_host_provision_plugin_data[account_id]" value="{$plugin_data.account_id}">
|
||||
<input type="hidden" name="product_host_provision_plugin_data[domain_id]" value="{$plugin_data.domain_id}">
|
||||
|
@@ -1,375 +0,0 @@
|
||||
{$list->unserial($product.host_provision_plugin_data, "plugin_data")}
|
||||
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top" class="row2">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
service
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{translate module=host_provision_plugin}
|
||||
enabled
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="34%">
|
||||
{translate module=host_provision_plugin}
|
||||
options
|
||||
{/translate}
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
hst_type
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
<select name="product_host_provision_plugin_data[hst_type]" class="form_menu">
|
||||
<option value="1" {if $plugin_data.hst_type == "1"} selected{/if}>Name
|
||||
Based</option>
|
||||
<option value="0" {if $plugin_data.hst_type == "0"} selected{/if}>IP Based</option>
|
||||
</select>
|
||||
</td>
|
||||
<td width="34%"> ---</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
hard_quota
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">--- </td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[hard_quota]" value="{$plugin_data.hard_quota}" class="form_field" size="10">
|
||||
MB</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
disk_space
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">--- </td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[disk_space]" value="{$plugin_data.disk_space}" class="form_field" size="10">
|
||||
MB</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
traffic
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">--- </td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[max_traffic]" value="{$plugin_data.max_traffic}" class="form_field" size="10">
|
||||
MB/month </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
max_box
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">--- </td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[max_box]" value="{if $plugin_data.max_box == ""}-1{else}{$plugin_data.max_box}{/if}" class="form_field" size="10">
|
||||
-1=unlimited</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
max_redir
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%"> ---</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[max_redir]" value="{if $plugin_data.max_redir == ""}-1{else}{$plugin_data.max_redir}{/if}" class="form_field" size="10">
|
||||
-1=unlimited </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
max_mg
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%"> ---</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[max_mg]" value="{if $plugin_data.max_mg == ""}-1{else}{$plugin_data.max_mg}{/if}" class="form_field" size="10">
|
||||
-1=unlimited </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
max_resp
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%"> ---</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[max_resp]" value="{if $plugin_data.max_resp == ""}-1{else}{$plugin_data.max_resp}{/if}" class="form_field" size="10">
|
||||
-1=unlimited </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
max_wu
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%"> ---</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[max_wu]" value="{if $plugin_data.max_wu == ""}-1{else}{$plugin_data.max_wu}{/if}" class="form_field" size="10">
|
||||
-1=unlimited </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
max_db
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%"> ---</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[max_db]" value="{if $plugin_data.max_db == ""}-1{else}{$plugin_data.max_db}{/if}" class="form_field" size="10">
|
||||
-1=unlimited </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
max_subdom
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%"> ---</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[max_subdom]" value="{if $plugin_data.max_subdom == ""}-1{else}{$plugin_data.max_subdom}{/if}" class="form_field" size="10">
|
||||
-1=unlimited </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
max_maillists
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%"> ---</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[max_maillists]" value="{if $plugin_data.max_maillists == ""}-1{else}{$plugin_data.max_maillists}{/if}" class="form_field" size="10">
|
||||
-1=unlimited </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
max_webapps
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%"> ---</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[max_webapps]" value="{if $plugin_data.max_webapps == ""}-1{else}{$plugin_data.max_webapps}{/if}" class="form_field" size="10">
|
||||
-1=unlimited </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
keep_traf_stat
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%"> ---</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[keep_traf_stat]" value="{if $plugin_data.keep_traf_stat == ""}0{else}{$plugin_data.keep_traf_stat}{/if}" class="form_field" size="10">
|
||||
Months (0=unlimited)</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
ssi
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[ssi]", $plugin_data.ssi, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">--- </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
fp
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[fp]", $plugin_data.fp, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">--- </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
fp_ssl
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[fp_ssl]", $plugin_data.fp_ssl, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">--- </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
fpauth
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[fpauth]", $plugin_data.fpauth, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">--- </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
php
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[php]", $plugin_data.php, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">---</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
cgi
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[cgi]", $plugin_data.cgi, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">---</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
perl
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[perl]", $plugin_data.perl, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">---</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
asp
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[asp]", $plugin_data.asp, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">---</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
python
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[python]", $plugin_data.python, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">---</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
webstat
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[webstat]", $plugin_data.webstat, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">---</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
webmail
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[webmail]", $plugin_data.webmail, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">---</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
log_bysize
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[log_rotate]", $plugin_data.log_rotate, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[log_bysize]" value="{$plugin_data.log_bysize}" class="form_field" size="10">
|
||||
KB</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
log_max_num
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
<select name="product_host_provision_plugin_data[log_bytime]" class="form_menu">
|
||||
<option value="daily" {if $plugin_data.log_bytime == "daily"} selected{/if}>Daily</option>
|
||||
<option value="weekly" {if $plugin_data.log_bytime == "weekly"} selected{/if}>Weekly</option>
|
||||
<option value="monthly" {if $plugin_data.log_bytime == "monthly"} selected{/if}>Monthly</option>
|
||||
</select>
|
||||
</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[log_max_num]" value="{$plugin_data.log_max_num}" class="form_field" size="10">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
log_compress
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[log_compress]", $plugin_data.log_compress, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">---</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
err_docs
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[err_docs]", $plugin_data.err_docs, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">---</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
wuscripts
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[wuscripts]", $plugin_data.wuscripts, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">---</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
ssl
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[ssl]", $plugin_data.ssl, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">---</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
@@ -1,419 +0,0 @@
|
||||
{$list->unserial($product.host_provision_plugin_data, "plugin_data")}
|
||||
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top" class="row2">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
service
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{translate module=host_provision_plugin}
|
||||
enabled
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="34%">
|
||||
{translate module=host_provision_plugin}
|
||||
options
|
||||
{/translate}
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
hst_type
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
<select name="product_host_provision_plugin_data[hst_type]" class="form_menu">
|
||||
<option value="1" {if $plugin_data.hst_type == "1"} selected{/if}>Name
|
||||
Based</option>
|
||||
<option value="0" {if $plugin_data.hst_type == "0"} selected{/if}>IP Based</option>
|
||||
</select>
|
||||
</td>
|
||||
<td width="34%"> ---</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
shell
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%"> ---</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[shell]" value="{if $plugin_data.shell == ""}/bin/bash{else}{$plugin_data.shell}{/if}" class="form_field" size="20">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
hard_quota
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">--- </td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[hard_quota]" value="{$plugin_data.hard_quota}" class="form_field" size="10">
|
||||
MB</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
disk_space
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">--- </td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[disk_space]" value="{$plugin_data.disk_space}" class="form_field" size="10">
|
||||
MB</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
traffic
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">--- </td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[max_traffic]" value="{$plugin_data.max_traffic}" class="form_field" size="10">
|
||||
MB/month </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
mail_service
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[mail_service]", $plugin_data.mail_service, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
max_box
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">--- </td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[max_box]" value="{if $plugin_data.max_box == ""}-1{else}{$plugin_data.max_box}{/if}" class="form_field" size="10">
|
||||
-1=unlimited</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
mbox_quota
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">--- </td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[mbox_quota]" value="{if $plugin_data.mbox_quota == ""}-1{else}{$plugin_data.mbox_quota}{/if}" class="form_field" size="10">
|
||||
KB </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
max_redir
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%"> ---</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[max_redir]" value="{if $plugin_data.max_redir == ""}-1{else}{$plugin_data.max_redir}{/if}" class="form_field" size="10">
|
||||
-1=unlimited </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
max_mg
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%"> ---</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[max_mg]" value="{if $plugin_data.max_mg == ""}-1{else}{$plugin_data.max_mg}{/if}" class="form_field" size="10">
|
||||
-1=unlimited </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
max_resp
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%"> ---</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[max_resp]" value="{if $plugin_data.max_resp == ""}-1{else}{$plugin_data.max_resp}{/if}" class="form_field" size="10">
|
||||
-1=unlimited </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
max_wu
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%"> ---</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[max_wu]" value="{if $plugin_data.max_wu == ""}-1{else}{$plugin_data.max_wu}{/if}" class="form_field" size="10">
|
||||
-1=unlimited </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
max_db
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%"> ---</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[max_db]" value="{if $plugin_data.max_db == ""}-1{else}{$plugin_data.max_db}{/if}" class="form_field" size="10">
|
||||
-1=unlimited </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
max_subdom
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%"> ---</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[max_subdom]" value="{if $plugin_data.max_subdom == ""}-1{else}{$plugin_data.max_subdom}{/if}" class="form_field" size="10">
|
||||
-1=unlimited </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
max_maillists
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%"> ---</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[max_maillists]" value="{if $plugin_data.max_maillists == ""}-1{else}{$plugin_data.max_maillists}{/if}" class="form_field" size="10">
|
||||
-1=unlimited </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
max_webapps
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%"> ---</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[max_webapps]" value="{if $plugin_data.max_webapps == ""}-1{else}{$plugin_data.max_webapps}{/if}" class="form_field" size="10">
|
||||
-1=unlimited </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
keep_traf_stat
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%"> ---</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[keep_traf_stat]" value="{if $plugin_data.keep_traf_stat == ""}0{else}{$plugin_data.keep_traf_stat}{/if}" class="form_field" size="10">
|
||||
Months (0=unlimited)</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
ssi
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[ssi]", $plugin_data.ssi, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">--- </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
fp
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[fp]", $plugin_data.fp, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">--- </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
fp_ssl
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[fp_ssl]", $plugin_data.fp_ssl, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">--- </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
fpauth
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[fpauth]", $plugin_data.fpauth, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">--- </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
php
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[php]", $plugin_data.php, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">---</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
cgi
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[cgi]", $plugin_data.cgi, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">---</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
perl
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[perl]", $plugin_data.perl, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">---</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
asp
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[asp]", $plugin_data.asp, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">---</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
python
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[python]", $plugin_data.python, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">---</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
coldfusion
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[coldfusion]", $plugin_data.coldfusion, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">---</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
webstat
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[webstat]", $plugin_data.webstat, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">---</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
webmail
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[webmail]", $plugin_data.webmail, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">---</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
log_bysize
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[log_rotate]", $plugin_data.log_rotate, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[log_bysize]" value="{$plugin_data.log_bysize}" class="form_field" size="10">
|
||||
KB</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
log_max_num
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
<select name="product_host_provision_plugin_data[log_bytime]" class="form_menu">
|
||||
<option value="daily" {if $plugin_data.log_bytime == "daily"} selected{/if}>Daily</option>
|
||||
<option value="weekly" {if $plugin_data.log_bytime == "weekly"} selected{/if}>Weekly</option>
|
||||
<option value="monthly" {if $plugin_data.log_bytime == "monthly"} selected{/if}>Monthly</option>
|
||||
</select>
|
||||
</td>
|
||||
<td width="34%">
|
||||
<input type="text" name="product_host_provision_plugin_data[log_max_num]" value="{$plugin_data.log_max_num}" class="form_field" size="10">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
log_compress
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[log_compress]", $plugin_data.log_compress, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">---</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
err_docs
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[err_docs]", $plugin_data.err_docs, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">---</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
wuscripts
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[wuscripts]", $plugin_data.wuscripts, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">---</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
ssl
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[ssl]", $plugin_data.ssl, "form_menu") }
|
||||
</td>
|
||||
<td width="34%">---</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
@@ -1,311 +0,0 @@
|
||||
{$list->unserial($product.host_provision_plugin_data, "plugin_data")}
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top">
|
||||
<td width="50%"> </td>
|
||||
<td width="50%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">IP Based Plan? </td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[ip_based]", $plugin_data.ip_based, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%"> </td>
|
||||
<td width="50%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%"><b>Client/Domain Limits</b></td>
|
||||
<td width="50%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Maximum number of subdomains</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="product_host_provision_plugin_data[max_subdom]" value="{$plugin_data.max_subdom}" class="form_field" size="4">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Disk space</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="product_host_provision_plugin_data[disk_space]" value="{$plugin_data.disk_space}" class="form_field" size="12">
|
||||
MB </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Maximum amount of traffic</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="product_host_provision_plugin_data[max_traffic]" value="{$plugin_data.max_traffic}" class="form_field" size="12">
|
||||
MB/Month </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Maximum number of web users </td>
|
||||
<td width="50%">
|
||||
<input type="text" name="product_host_provision_plugin_data[max_wu]" value="{$plugin_data.max_wu}" class="form_field" size="4">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Maximum number of databases </td>
|
||||
<td width="50%">
|
||||
<input type="text" name="product_host_provision_plugin_data[max_db]" value="{$plugin_data.max_db}" class="form_field" size="4">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Maximum number of mailboxes </td>
|
||||
<td width="50%">
|
||||
<input type="text" name="product_host_provision_plugin_data[max_box]" value="{$plugin_data.max_box}" class="form_field" size="4">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Mailbox quota</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="product_host_provision_plugin_data[mbox_quota]" value="{$plugin_data.mbox_quota}" class="form_field" size="12">
|
||||
KB </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Maximum number of mail redirects </td>
|
||||
<td width="50%">
|
||||
<input type="text" name="product_host_provision_plugin_data[max_redir]" value="{$plugin_data.max_redir}" class="form_field" size="4">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Maximum number of mail groups </td>
|
||||
<td width="50%">
|
||||
<input type="text" name="product_host_provision_plugin_data[max_mg]" value="{$plugin_data.max_mg}" class="form_field" size="4">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Maximum number of mail autoresponders </td>
|
||||
<td width="50%">
|
||||
<input type="text" name="product_host_provision_plugin_data[max_resp]" value="{$plugin_data.max_resp}" class="form_field" size="4">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Maximum number of mailing lists </td>
|
||||
<td width="50%">
|
||||
<input type="text" name="product_host_provision_plugin_data[max_maillists]" value="{$plugin_data.max_maillists}" class="form_field" size="4">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Maximum number of Java applications </td>
|
||||
<td width="50%">
|
||||
<input type="text" name="product_host_provision_plugin_data[max_webapps]" value="{$plugin_data.max_webapps}" class="form_field" size="4">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">FTP Quota </td>
|
||||
<td width="50%">
|
||||
<input type="text" name="product_host_provision_plugin_data[ftp_quota]" value="{$plugin_data.ftp_quota}" class="form_field" size="12">
|
||||
<input type="hidden" name="product_host_provision_plugin_data[max_dom]" value="1" class="form_field" size="4">
|
||||
MB </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%"> </td>
|
||||
<td width="50%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%"><b>Client Permissions:</b></td>
|
||||
<td width="50%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Domain creation</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[create_domains]", $plugin_data.create_domains, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Physical hosting management</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[manage_phosting]", $plugin_data.manage_phosting, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Management of shell access to server</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[manage_sh_access]", $plugin_data.manage_sh_access, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Non-chrooted shell management</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[manage_not_chroot_shell]", $plugin_data.manage_not_chroot_shell, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Hard disk quota assignment</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[manage_quota]", $plugin_data.manage_quota, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Subdomains management</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[manage_subdomains]", $plugin_data.manage_subdomains, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Log rotation management</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[manage_log]", $plugin_data.manage_log, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Anonymous FTP management</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[manage_anonftp]", $plugin_data.manage_anonftp, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Crontab management</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[manage_crontab]", $plugin_data.manage_crontab, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Use of Mambo content management system (Site Builder)</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[site_builder]", $plugin_data.site_builder, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Domain limits adjustment</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[change_limits]", $plugin_data.change_limits, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">DNS zone management</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[manage_dns]", $plugin_data.manage_dns, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Java applications management</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[manage_webapps]", $plugin_data.manage_webapps, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Mailing lists management</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[manage_maillists]", $plugin_data.manage_maillists, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Dr.Web antivirus management</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[manage_drweb]", $plugin_data.manage_drweb, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Backup/restore functions</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[make_dumps]", $plugin_data.make_dumps, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%"> </td>
|
||||
<td width="50%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%"><b>Domain Permissions:</b></td>
|
||||
<td width="50%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Enable Frontpage</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[fp]", $plugin_data.fp, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Enable Frontpage SSL</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[fp_ssl]", $plugin_data.fp_ssl, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Enable Frontpage Authentication</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[fp_auth]", $plugin_data.fp_auth, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">SSL</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[ssl]", $plugin_data.ssl, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Shell</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[shell]", $plugin_data.shell, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">PHP</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[php]", $plugin_data.php, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">SSI</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[ssi]", $plugin_data.ssi, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">CGI</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[cgi]", $plugin_data.cgi, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">MOD Perl</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[mod_perl]", $plugin_data.mod_perl, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">MOD Python</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[mod_python]", $plugin_data.mod_python, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">ASP</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[asp]", $plugin_data.asp, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">ASP.net</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[asp_dot_net]", $plugin_data.asp_dot_net, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">ColdFusion</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[coldfusion]", $plugin_data.coldfusion, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Web Stats</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[webstat]", $plugin_data.webstat, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Error Docs</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[errdocs]", $plugin_data.errdocs, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">@domains</td>
|
||||
<td width="50%">
|
||||
{ $list->bool("product_host_provision_plugin_data[at_domains]", $plugin_data.at_domains, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<input type="hidden" name="product_host_provision_plugin_data[account_id]" value="{$plugin_data.account_id}">
|
||||
<input type="hidden" name="product_host_provision_plugin_data[domain_id]" value="{$plugin_data.domain_id}">
|
||||
|
@@ -1,62 +0,0 @@
|
||||
{$list->unserial($product.host_provision_plugin_data, "plugin_data")}
|
||||
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
quota</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="product_host_provision_plugin_data[quota]" value="{$plugin_data.quota}" class="form_field" size="32">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td>maxusers</td>
|
||||
<td><input type="text" name="product_host_provision_plugin_data[maxusers]" value="{$plugin_data.maxusers}" class="form_field" size="32"></td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td>ftp-quota</td>
|
||||
<td><input type="text" name="product_host_provision_plugin_data[ftp-quota]" value="{$plugin_data.ftp-quota}" class="form_field" size="32"></td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td>ftp-maxconn</td>
|
||||
<td><input type="text" name="product_host_provision_plugin_data[ftp-maxconn]" value="{$plugin_data.ftp-maxconn}" class="form_field" size="32"></td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td>enable-shell</td>
|
||||
<td> { $list->bool("product_host_provision_plugin_data[enable-shell]", $plugin_data.enable-shell, "form_menu") } </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td>enable-apop</td>
|
||||
<td>{ $list->bool("product_host_provision_plugin_data[enable-apop]", $plugin_data.enable-apop, "form_menu") } </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td>enable-cgi</td>
|
||||
<td>{ $list->bool("product_host_provision_plugin_data[enable-cgi]", $plugin_data.enable-cgi, "form_menu") } </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td>enable-php</td>
|
||||
<td>{ $list->bool("product_host_provision_plugin_data[enable-php]", $plugin_data.enable-php, "form_menu") } </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td>enable-ssi</td>
|
||||
<td>{ $list->bool("product_host_provision_plugin_data[enable-ssi]", $plugin_data.enable-ssi, "form_menu") } </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td>enable-ssl</td>
|
||||
<td>{ $list->bool("product_host_provision_plugin_data[enable-ssl]", $plugin_data.enable-ssl, "form_menu") } </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td>enable-java </td>
|
||||
<td>{ $list->bool("product_host_provision_plugin_data[enable-java]", $plugin_data.enable-java, "form_menu") } </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td>enable-ftp</td>
|
||||
<td>{ $list->bool("product_host_provision_plugin_data[enable-ftp]", $plugin_data.enable-ftp, "form_menu") } </td>
|
||||
</tr>
|
||||
</table>
|
||||
<p><br>
|
||||
<br>
|
||||
</p>
|
||||
<p><br>
|
||||
<br>
|
||||
<br>
|
||||
</p>
|
@@ -1,92 +0,0 @@
|
||||
{$list->unserial($product.host_provision_plugin_data, "plugin_data")}
|
||||
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top" class="row2">
|
||||
<td width="49%">
|
||||
{translate module=host_provision_plugin}
|
||||
service
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="17%">
|
||||
{translate module=host_provision_plugin}
|
||||
enabled
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="34%">
|
||||
{translate module=host_provision_plugin}
|
||||
options
|
||||
{/translate}
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">Network interface </td>
|
||||
<td width="17%"> </td>
|
||||
<td width="34%">
|
||||
<select name="product_host_provision_plugin_data[network_interface]" class="form_menu">
|
||||
<option value="0" {if $plugin_data.network_interface == "0"} selected{/if}>Shared</option>
|
||||
<option value="1" {if $plugin_data.network_interface == "1"} selected{/if}>IP
|
||||
Based</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">Create home directory?</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[home_dir]", $plugin_data.home_dir, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">Set up DNS zone?</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[dns]", $plugin_data.dns, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">Set up website for domain?</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[website]", $plugin_data.website, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">Create MySQL database?</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[mysql]", $plugin_data.mysql, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%"> Create Unix user?</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[unix]", $plugin_data.unix, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%"> Set up Webalizer for web logs?</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[webalizer]", $plugin_data.webalizer, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">Set up log file rotation?</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[logrotate]", $plugin_data.logrotate, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="49%">Create Webmin login?</td>
|
||||
<td width="17%">
|
||||
{ $list->bool("product_host_provision_plugin_data[webmin]", $plugin_data.webmin, "form_menu") }
|
||||
</td>
|
||||
<td width="34%"> </td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<div align="center"> <br>
|
||||
<br>
|
||||
</div>
|
@@ -1,56 +0,0 @@
|
||||
{$list->unserial($product.host_provision_plugin_data, "plugin_data")}
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top">
|
||||
<td width="50%">Server Template Name
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="product_host_provision_plugin_data[template]" value="{$plugin_data.template}" class="form_field" size="32">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td>{translate module=host_provision_plugin}
|
||||
ipinfo_namebased
|
||||
{/translate}</td>
|
||||
<td><select name="product_host_provision_plugin_data[ipinfo_namebased]" class="form_menu">
|
||||
<option value="1" {if $plugin_data.ipinfo_namebased == "1"} selected{/if}>Name Based</option>
|
||||
<option value="0" {if $plugin_data.ipinfo_namebased == "0"} selected{/if}>IP Based</option>
|
||||
</select></td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td>Home directory exists? </td>
|
||||
<td>{ $list->bool("product_host_provision_plugin_data[dir]", $plugin_data.dir, "form_menu") } </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td>Unix user exists? </td>
|
||||
<td>{ $list->bool("product_host_provision_plugin_data[unix]", $plugin_data.unix, "form_menu") } </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td>DNS domain enabled? </td>
|
||||
<td>{ $list->bool("product_host_provision_plugin_data[dns]", $plugin_data.dns, "form_menu") } </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td>Web virtual server enabled? </td>
|
||||
<td>{ $list->bool("product_host_provision_plugin_data[web]", $plugin_data.web, "form_menu") } </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td>Webalizer reporting enabled? </td>
|
||||
<td>{ $list->bool("product_host_provision_plugin_data[webalizer]", $plugin_data.webalizer, "form_menu") } </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td>Log file rotation enabled? </td>
|
||||
<td>{ $list->bool("product_host_provision_plugin_data[logrotate]", $plugin_data.logrotate, "form_menu") } </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td>MySQL database enabled? </td>
|
||||
<td>{ $list->bool("product_host_provision_plugin_data[mysql]", $plugin_data.mysql, "form_menu") } </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td>Status monitoring enabled? </td>
|
||||
<td>{ $list->bool("product_host_provision_plugin_data[status]", $plugin_data.status, "form_menu") } </td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td height="24">Webmin login enabled? </td>
|
||||
<td>{ $list->bool("product_host_provision_plugin_data[webmin]", $plugin_data.webmin, "form_menu") } </td>
|
||||
</tr>
|
||||
</table>
|
||||
|
@@ -1,15 +0,0 @@
|
||||
{$list->unserial($product.host_provision_plugin_data, "plugin_data")}
|
||||
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_provision_plugin}
|
||||
whm_plan
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="product_host_provision_plugin_data[plan]" value="{$plugin_data.plan}" class="form_field" size="32">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
@@ -1,46 +0,0 @@
|
||||
{assign var=meth value=':'|explode:$VAR._page}
|
||||
<!-- {$meth.0}:{$meth.1} -->
|
||||
|
||||
<!-- Display the form validation -->
|
||||
{if $form_validation}
|
||||
{$block->display('core:alert_fields')}
|
||||
{/if}
|
||||
|
||||
<!-- Display the form to collect the input values -->
|
||||
<form id="add" method="post" action="" enctype="multipart/form-data">
|
||||
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="table_background">
|
||||
<tr>
|
||||
<td>
|
||||
<table width="100%" border="0" cellspacing="1" cellpadding="0">
|
||||
<tr valign="top">
|
||||
<td class="table_heading">{osb f=tt}</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td class="row1">
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top">
|
||||
<td style="width: 35%;">{osb f=tf field=status}</td>
|
||||
<td style="width: 65%;">{$list->bool('host_registrar_plugin_status',$VAR.host_registrar_plugin_status,'form_menu')}</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td style="width: 35%;">{osb f=tf field=name}</td>
|
||||
<td style="width: 65%;"><input type="text" name="host_registrar_plugin_name" value="{$VAR.host_registrar_plugin_name}" {if $host_registrar_plugin_name == true}class="form_field_error"{/if}/></td>
|
||||
</tr>
|
||||
</table>
|
||||
{assign var=thistype value='add'}
|
||||
{assign var='afile' value=$VAR.host_registrar_plugin_file}
|
||||
{assign var='ablock' value='host_registrar_plugin:plugin_cfg_'}
|
||||
{assign var='blockfile' value="$ablock$afile"}
|
||||
{$block->display($blockfile)}
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
{include file='file:../core/add_tr_submit.tpl'}
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</form>
|
@@ -1,27 +0,0 @@
|
||||
|
||||
<table width=100% border="0" cellspacing="0" cellpadding="0" class="table_background">
|
||||
<tr>
|
||||
<td>
|
||||
<table width=100% border="0" cellspacing="1" cellpadding="0" align="center">
|
||||
<tr>
|
||||
<td class="table_heading">
|
||||
<center>
|
||||
{translate module=host_registrar_plugin}
|
||||
menu
|
||||
{/translate}
|
||||
</center>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1">
|
||||
<table width="100%" border="0" cellpadding="5" class="row1">
|
||||
<tr>
|
||||
<td>{translate module=host_registrar_plugin}help_file{/translate}</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
@@ -1,99 +0,0 @@
|
||||
{ if $thistype != "add" }
|
||||
{$list->unserial($host_registrar_plugin.plugin_data, "plugin_data")}
|
||||
{ else}
|
||||
{assign var=plugin_data value=$VAR.host_registrar_plugin_data}
|
||||
{/if}
|
||||
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
debug
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
{$list->bool("host_registrar_plugin_plugin_data[debug]", $plugin_data.debug, "form_menu")}
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
primary_ns
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_registrar_plugin_plugin_data[ns1]" value="{$plugin_data.ns1}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
secondary_ns
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_registrar_plugin_plugin_data[ns2]" value="{$plugin_data.ns2}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
primary_nsip
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_registrar_plugin_plugin_data[ns1ip]" value="{$plugin_data.ns1ip}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
secondary_nsip
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_registrar_plugin_plugin_data[ns2ip]" value="{$plugin_data.ns2ip}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
br_user
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_registrar_plugin_plugin_data[br_user]" value="{$plugin_data.br_user}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
br_pass
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="password" name="host_registrar_plugin_plugin_data[br_pass]" value="{$plugin_data.br_pass}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
br_pgpemail
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
{ $list->menu("", "host_registrar_plugin_plugin_data[br_pgpemail]", "staff", "nickname", $plugin_data.br_pgpemail, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
br_mode
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
{$list->bool("host_registrar_plugin_plugin_data[br_mode]", $plugin_data.br_mode, "form_menu")}
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
@@ -1,95 +0,0 @@
|
||||
{ if $thistype != "add" }
|
||||
{$list->unserial($host_registrar_plugin.plugin_data, "plugin_data")}
|
||||
{ else}
|
||||
{assign var=plugin_data value=$VAR.host_registrar_plugin_data}
|
||||
{/if}
|
||||
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
debug
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
{$list->bool("host_registrar_plugin_plugin_data[debug]", $plugin_data.debug, "form_menu")}
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
primary_ns
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_registrar_plugin_plugin_data[ns1]" value="{$plugin_data.ns1}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
secondary_ns
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_registrar_plugin_plugin_data[ns2]" value="{$plugin_data.ns2}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
primary_nsip
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_registrar_plugin_plugin_data[ns1ip]" value="{$plugin_data.ns1ip}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
secondary_nsip
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_registrar_plugin_plugin_data[ns2ip]" value="{$plugin_data.ns2ip}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
directi_user
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_registrar_plugin_plugin_data[user]" value="{$plugin_data.user}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
directi_pass
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="password" name="host_registrar_plugin_plugin_data[pass]" value="{$plugin_data.pass}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Directi Parent ID</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_registrar_plugin_plugin_data[parent_id]" value="{$plugin_data.parent_id}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
directi_mode
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
{$list->bool("host_registrar_plugin_plugin_data[mode]", $plugin_data.mode, "form_menu")}
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
@@ -1,83 +0,0 @@
|
||||
{ if $thistype != "add" }
|
||||
{$list->unserial($host_registrar_plugin.plugin_data, "plugin_data")}
|
||||
{ else}
|
||||
{assign var=plugin_data value=$VAR.host_registrar_plugin_data}
|
||||
{/if}
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
debug
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
{$list->bool("host_registrar_plugin_plugin_data[debug]", $plugin_data.debug, "form_menu")}
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%"> Live Mode </td>
|
||||
<td width="50%">
|
||||
{$list->bool("host_registrar_plugin_plugin_data[enom_mode]", $plugin_data.enom_mode, "form_menu")}
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
primary_ns
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_registrar_plugin_plugin_data[ns1]" value="{$plugin_data.ns1}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
secondary_ns
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_registrar_plugin_plugin_data[ns2]" value="{$plugin_data.ns2}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
primary_nsip
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_registrar_plugin_plugin_data[ns1ip]" value="{$plugin_data.ns1ip}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
secondary_nsip
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_registrar_plugin_plugin_data[ns2ip]" value="{$plugin_data.ns2ip}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
enom_user
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_registrar_plugin_plugin_data[enom_user]" value="{$plugin_data.enom_user}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
enom_pass
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="password" name="host_registrar_plugin_plugin_data[enom_pass]" value="{$plugin_data.enom_pass}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
@@ -1,89 +0,0 @@
|
||||
{ if $thistype != "add" }
|
||||
{$list->unserial($host_registrar_plugin.plugin_data, "plugin_data")}
|
||||
{ else}
|
||||
{assign var=plugin_data value=$VAR.host_registrar_plugin_data}
|
||||
{/if}
|
||||
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
debug
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
{$list->bool("host_registrar_plugin_plugin_data[debug]", $plugin_data.debug, "form_menu")}
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
primary_ns
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_registrar_plugin_plugin_data[ns1]" value="{$plugin_data.ns1}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
secondary_ns
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_registrar_plugin_plugin_data[ns2]" value="{$plugin_data.ns2}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
primary_nsip
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_registrar_plugin_plugin_data[ns1ip]" value="{$plugin_data.ns1ip}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
secondary_nsip
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_registrar_plugin_plugin_data[ns2ip]" value="{$plugin_data.ns2ip}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
gd_user
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_registrar_plugin_plugin_data[gd_user]" value="{$plugin_data.gd_user}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
gd_pass
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="password" name="host_registrar_plugin_plugin_data[gd_pass]" value="{$plugin_data.gd_pass}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
gd_mode
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
{$list->bool("host_registrar_plugin_plugin_data[gd_mode]", $plugin_data.gd_mode, "form_menu")}
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
@@ -1,39 +0,0 @@
|
||||
{if $thistype != 'add'}
|
||||
{$list->unserial($record.plugin_data,'plugin_data')}
|
||||
{else}
|
||||
{assign var=plugin_data value=$VAR.host_registrar_plugin_data}
|
||||
{/if}
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top">
|
||||
<td style="width: 35%;">{osb f=tf field=primary_ns}</td>
|
||||
<td style="width: 65%;"><input type="text" name="host_registrar_plugin_plugin_data[ns1]" value="{$plugin_data.ns1}" class="form_field"/></td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td style="width: 35%;">{osb f=tf field=secondary_ns}</td>
|
||||
<td style="width: 65%;"><input type="text" name="host_registrar_plugin_plugin_data[ns2]" value="{$plugin_data.ns2}" class="form_field"/></td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td style="width: 35%;">{osb f=tf field=primary_nsip}</td>
|
||||
<td style="width: 65%;"><input type="text" name="host_registrar_plugin_plugin_data[ns1ip]" value="{$plugin_data.ns1ip}" class="form_field"/></td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td style="width: 35%;">{osb f=tf field=secondary_nsip}</td>
|
||||
<td style="width: 65%;"><input type="text" name="host_registrar_plugin_plugin_data[ns2ip]" value="{$plugin_data.ns2ip}" class="form_field"/></td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td style="width: 35%;">{osb f=tf field=manual_add_email}</td>
|
||||
<td style="width: 65%;">{$list->menu('','host_registrar_plugin_plugin_data[manual_add_email]','staff','nickname',$plugin_data.manual_add_email,'form_menu')}</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td style="width: 35%;">{osb f=tf field=manual_renew_email}</td>
|
||||
<td style="width: 65%;">{$list->menu('','host_registrar_plugin_plugin_data[manual_renew_email]','staff','nickname',$plugin_data.manual_renew_email,'form_menu')}</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td style="width: 35%;">{osb f=tf field=manual_transfer_email}</td>
|
||||
<td style="width: 65%;">{$list->menu('','host_registrar_plugin_plugin_data[manual_transfer_email]','staff','nickname',$plugin_data.manual_transfer_email,'form_menu')}</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td style="width: 35%;">{osb f=tf field=manual_park_email}</td>
|
||||
<td style="width: 65%;">{$list->menu('','host_registrar_plugin_plugin_data[manual_park_email]','staff','nickname',$plugin_data.manual_park_email,'form_menu')}</td>
|
||||
</tr>
|
||||
</table>
|
@@ -1,99 +0,0 @@
|
||||
{ if $thistype != "add" }
|
||||
{$list->unserial($host_registrar_plugin.plugin_data, "plugin_data")}
|
||||
{ else}
|
||||
{assign var=plugin_data value=$VAR.host_registrar_plugin_data}
|
||||
{/if}
|
||||
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
debug
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
{$list->bool("host_registrar_plugin_plugin_data[debug]", $plugin_data.debug, "form_menu")}
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
primary_ns
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_registrar_plugin_plugin_data[ns1]" value="{$plugin_data.ns1}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
secondary_ns
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_registrar_plugin_plugin_data[ns2]" value="{$plugin_data.ns2}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
primary_nsip
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_registrar_plugin_plugin_data[ns1ip]" value="{$plugin_data.ns1ip}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
secondary_nsip
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_registrar_plugin_plugin_data[ns2ip]" value="{$plugin_data.ns2ip}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
melbourne_user
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_registrar_plugin_plugin_data[melbourne_user]" value="{$plugin_data.melbourne_user}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
melbourne_pass
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="password" name="host_registrar_plugin_plugin_data[melbourne_pass]" value="{$plugin_data.melbourne_pass}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
melbourne_pgpemail
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_registrar_plugin_plugin_data[melbourne_pgpemail]" value="{$plugin_data.melbourne_pgpemail}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
melbourne_mode
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
{$list->bool("host_registrar_plugin_plugin_data[melbourne_mode]", $plugin_data.melbourne_mode, "form_menu")}
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
@@ -1,87 +0,0 @@
|
||||
{ if $thistype != "add" }
|
||||
{$list->unserial($host_registrar_plugin.plugin_data, "plugin_data")}
|
||||
{ else}
|
||||
{assign var=plugin_data value=$VAR.host_registrar_plugin_data}
|
||||
{/if}
|
||||
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
debug
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
{$list->bool("host_registrar_plugin_plugin_data[debug]", $plugin_data.debug, "form_menu")}
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
primary_ns
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_registrar_plugin_plugin_data[ns1]" value="{$plugin_data.ns1}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
secondary_ns
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_registrar_plugin_plugin_data[ns2]" value="{$plugin_data.ns2}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
primary_nsip
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_registrar_plugin_plugin_data[ns1ip]" value="{$plugin_data.ns1ip}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
secondary_nsip
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_registrar_plugin_plugin_data[ns2ip]" value="{$plugin_data.ns2ip}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%"> Names4Ever Reseller ID</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_registrar_plugin_plugin_data[user]" class="form_field" value="{$plugin_data.user}">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%"> Names4Ever Password</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_registrar_plugin_plugin_data[password]" class="form_field" value="{$plugin_data.password}">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">Names4Ever Plan ID</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_registrar_plugin_plugin_data[plan_id]" class="form_field" value="{$plugin_data.plan_id}">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
osrs_enviroment
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
{$list->bool("host_registrar_plugin_plugin_data[mode]", $plugin_data.mode, "form_menu")}
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
@@ -1,79 +0,0 @@
|
||||
{ if $thistype != "add" }
|
||||
{$list->unserial($host_registrar_plugin.plugin_data, "plugin_data")}
|
||||
{ else}
|
||||
{assign var=plugin_data value=$VAR.host_registrar_plugin_data}
|
||||
{/if}
|
||||
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
debug
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
{$list->bool("host_registrar_plugin_plugin_data[debug]", $plugin_data.debug, "form_menu")}
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
primary_ns
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_registrar_plugin_plugin_data[ns1]" value="{$plugin_data.ns1}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
secondary_ns
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_registrar_plugin_plugin_data[ns2]" value="{$plugin_data.ns2}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
primary_nsip
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_registrar_plugin_plugin_data[ns1ip]" value="{$plugin_data.ns1ip}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
secondary_nsip
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_registrar_plugin_plugin_data[ns2ip]" value="{$plugin_data.ns2ip}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
nominet_tag
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_registrar_plugin_plugin_data[nominet_tag]" value="{$plugin_data.nominet_tag}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
pgp_emailto
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
{ $list->menu("", "host_registrar_plugin_plugin_data[pgp_emailto]", "staff", "nickname", $plugin_data.pgp_emailto, "form_menu") }
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
@@ -1,75 +0,0 @@
|
||||
{ if $thistype != "add" }
|
||||
{$list->unserial($host_registrar_plugin.plugin_data, "plugin_data")}
|
||||
{ else}
|
||||
{assign var=plugin_data value=$VAR.host_registrar_plugin_data}
|
||||
{/if}
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
debug
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
{$list->bool("host_registrar_plugin_plugin_data[debug]", $plugin_data.debug, "form_menu")}
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%"> Live Mode </td>
|
||||
<td width="50%">
|
||||
{$list->bool("host_registrar_plugin_plugin_data[mode]", $plugin_data.mode, "form_menu")}
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
primary_ns
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_registrar_plugin_plugin_data[ns1]" value="{$plugin_data.ns1}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
secondary_ns
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_registrar_plugin_plugin_data[ns2]" value="{$plugin_data.ns2}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
primary_nsip
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_registrar_plugin_plugin_data[ns1ip]" value="{$plugin_data.ns1ip}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
secondary_nsip
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_registrar_plugin_plugin_data[ns2ip]" value="{$plugin_data.ns2ip}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%"> Reseller ID</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_registrar_plugin_plugin_data[user]" value="{$plugin_data.user}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%"> Password</td>
|
||||
<td width="50%">
|
||||
<input type="password" name="host_registrar_plugin_plugin_data[pass]" value="{$plugin_data.pass}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
@@ -1,99 +0,0 @@
|
||||
{ if $thistype != "add" }
|
||||
{$list->unserial($host_registrar_plugin.plugin_data, "plugin_data")}
|
||||
{ else}
|
||||
{assign var=plugin_data value=$VAR.host_registrar_plugin_data}
|
||||
{/if}
|
||||
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
debug
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
{$list->bool("host_registrar_plugin_plugin_data[debug]", $plugin_data.debug, "form_menu")}
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
primary_ns
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_registrar_plugin_plugin_data[ns1]" value="{$plugin_data.ns1}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
secondary_ns
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_registrar_plugin_plugin_data[ns2]" value="{$plugin_data.ns2}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
primary_nsip
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_registrar_plugin_plugin_data[ns1ip]" value="{$plugin_data.ns1ip}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
secondary_nsip
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_registrar_plugin_plugin_data[ns2ip]" value="{$plugin_data.ns2ip}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
osrs_user
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_registrar_plugin_plugin_data[osrs_user]" value="{$plugin_data.osrs_user}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
osrs_testkey
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<textarea name="host_registrar_plugin_plugin_data[osrs_testkey]" class="form_field" cols="40" rows="3">{$plugin_data.osrs_testkey}</textarea>
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
osrs_livekey
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<textarea name="host_registrar_plugin_plugin_data[osrs_livekey]" class="form_field" cols="40">{$plugin_data.osrs_livekey}</textarea>
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
osrs_enviroment
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
{$list->bool("host_registrar_plugin_plugin_data[osrs_enviroment]", $plugin_data.osrs_enviroment, "form_menu")}
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
@@ -1,77 +0,0 @@
|
||||
{ if $thistype != "add" }
|
||||
{$list->unserial($host_registrar_plugin.plugin_data, "plugin_data")}
|
||||
{ else}
|
||||
{assign var=plugin_data value=$VAR.host_registrar_plugin_data}
|
||||
{/if}
|
||||
|
||||
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
debug
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
{$list->bool("host_registrar_plugin_plugin_data[debug]", $plugin_data.debug, "form_menu")}
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
primary_ns
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_registrar_plugin_plugin_data[ns1]" value="{$plugin_data.ns1}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
secondary_ns
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_registrar_plugin_plugin_data[ns2]" value="{$plugin_data.ns2}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
primary_nsip
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_registrar_plugin_plugin_data[ns1ip]" value="{$plugin_data.ns1ip}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
secondary_nsip
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_registrar_plugin_plugin_data[ns2ip]" value="{$plugin_data.ns2ip}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%"> PlanetDomain Username</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_registrar_plugin_plugin_data[username]" value="{$plugin_data.username}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%"> PlanetDomain Password</td>
|
||||
<td width="50%">
|
||||
<input type="password" name="host_registrar_plugin_plugin_data[password]" value="{$plugin_data.password}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">PlanetDomain Reseller Id</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_registrar_plugin_plugin_data[reseller]" value="{$plugin_data.reseller}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
@@ -1,79 +0,0 @@
|
||||
{ if $thistype != "add" }
|
||||
{$list->unserial($host_registrar_plugin.plugin_data, "plugin_data")}
|
||||
{ else}
|
||||
{assign var=plugin_data value=$VAR.host_registrar_plugin_data}
|
||||
{/if}
|
||||
|
||||
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
debug
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
{$list->bool("host_registrar_plugin_plugin_data[debug]", $plugin_data.debug, "form_menu")}
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
primary_ns
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_registrar_plugin_plugin_data[ns1]" value="{$plugin_data.ns1}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
secondary_ns
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_registrar_plugin_plugin_data[ns2]" value="{$plugin_data.ns2}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
primary_nsip
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_registrar_plugin_plugin_data[ns1ip]" value="{$plugin_data.ns1ip}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
secondary_nsip
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_registrar_plugin_plugin_data[ns2ip]" value="{$plugin_data.ns2ip}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
tr_partnerno
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_registrar_plugin_plugin_data[tr_partnerno]" value="{$plugin_data.tr_partnerno}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_registrar_plugin}
|
||||
tr_pass
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="password" name="host_registrar_plugin_plugin_data[tr_pass]" value="{$plugin_data.tr_pass}" class="form_field">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
@@ -1,48 +0,0 @@
|
||||
{assign var=meth value=':'|explode:$VAR._page}
|
||||
<!-- {$meth.0}:{$meth.1} -->
|
||||
|
||||
{$method->exe($meth.0,$meth.1)}
|
||||
{if ($method->result == false)}
|
||||
{$block->display('core:method_error')}
|
||||
{else}
|
||||
{include file='file:../core/search_show_pre.tpl'}
|
||||
|
||||
<!-- BEGIN THE RESULTS CONTENT AREA -->
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="table_background">
|
||||
<tr>
|
||||
<td>
|
||||
<table width="100%" border="0" cellspacing="1" cellpadding="2">
|
||||
<!-- DISPLAY THE SEARCH HEADING -->
|
||||
<tr valign="middle" align="center" class="table_heading">
|
||||
<td class="table_heading" style="width: 20px;"> </td>
|
||||
<td class="table_heading">{translate module=host_registrar_plugin}field_name{/translate}</td>
|
||||
<td class="table_heading"> </td>
|
||||
</tr>
|
||||
<!-- LOOP THROUGH EACH RECORD -->
|
||||
{foreach from=$host_registrar_plugin item=record}
|
||||
<tr class="{$record._C}">
|
||||
<td>
|
||||
{if $record.status == '1'}
|
||||
<img src="themes/{$THEME_NAME}/images/icons/go_16.gif" alt="Enabled" width="16" height="16" style="border: 0px;"/>
|
||||
{else}
|
||||
<img src="themes/{$THEME_NAME}/images/icons/stop_16.gif" alt="Disabled" width="16" height="16" style="border: 0px;"/>
|
||||
{/if}
|
||||
</td>
|
||||
<td>{$record.name}</td>
|
||||
<td style="text-align: center;">
|
||||
{if $record.status == '1'}
|
||||
<a href="?_page=host_registrar_plugin:view&id={$record.id}">{t}View / Edit Plugin{/t}</a>
|
||||
{else}
|
||||
<a href="?_page=host_registrar_plugin:add&host_registrar_plugin_file={$record.name}">{t}Install Plugin{/t}</a>
|
||||
{/if}
|
||||
</td>
|
||||
</tr>
|
||||
{/foreach}
|
||||
<!-- END OF RESULT LOOP -->
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
{/if}
|
||||
</div>
|
@@ -1,52 +0,0 @@
|
||||
{assign var=meth value=':'|explode:$VAR._page}
|
||||
<!-- {$meth.0}:{$meth.1} -->
|
||||
|
||||
{$method->exe($meth.0,$meth.1)}
|
||||
{if ($method->result == false)}
|
||||
{$block->display('core:method_error')}
|
||||
{else}
|
||||
{include file='file:../core/view_pre.tpl'}
|
||||
|
||||
<!-- Display the field validation -->
|
||||
{if $form_validation}
|
||||
{$block->display('core:alert_fields')}
|
||||
{/if}
|
||||
|
||||
<!-- Display each record -->
|
||||
<form id="view" method="post" action="" enctype="multipart/form-data">
|
||||
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="table_background">
|
||||
<tr>
|
||||
<td>
|
||||
<table width="100%" border="0" cellspacing="1" cellpadding="0">
|
||||
<tr valign="top">
|
||||
<td class="table_heading">{osb f=tt}</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td class="row1">
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top">
|
||||
<td style="width: 35%;">{osb f=tf field=status}</td>
|
||||
<td style="width: 65%;">{$list->bool('host_registrar_plugin_status',$record.status,'form_menu')}</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td style="width: 35%;">{osb f=tf field=name}</td>
|
||||
<td style="width: 65%;"><input type="text" name="host_registrar_plugin_name" value="{$record.name}" size="32"/></td>
|
||||
</tr>
|
||||
</table>
|
||||
{assign var=thistype value='edit'}
|
||||
{assign var='afile' value=$record.file}
|
||||
{assign var='ablock' value='host_registrar_plugin:plugin_cfg_'}
|
||||
{assign var='blockfile' value="$ablock$afile"}
|
||||
{$block->display($blockfile)}
|
||||
</td>
|
||||
</tr>
|
||||
{include file='file:../core/view_tr_submit_delete.tpl'}
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
{include file='file:../core/view_post.tpl'}
|
||||
</form>
|
||||
{/if}
|
@@ -1,95 +0,0 @@
|
||||
{assign var=meth value=':'|explode:$VAR._page}
|
||||
<!-- {$meth.0}:{$meth.1} -->
|
||||
|
||||
<!-- Display the form validation -->
|
||||
{if $form_validation}
|
||||
{$block->display('core:alert_fields')}
|
||||
{/if}
|
||||
|
||||
<!-- Display the form to collect the input values -->
|
||||
<form id="add" method="post" action="" enctype="multipart/form-data">
|
||||
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="table_background">
|
||||
<tr>
|
||||
<td>
|
||||
<table width="100%" border="0" cellspacing="1" cellpadding="0">
|
||||
<tr valign="top">
|
||||
<td class="table_heading">{osb f=tt}</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td class="row1">
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top">
|
||||
<td style="width: 35%;">{osb f=tf field=status}</td>
|
||||
<td style="width: 65%;">
|
||||
{if $VAR.host_server_status != ''}
|
||||
{$list->bool('host_server_status',$VAR.host_server_status,'form_menu')}
|
||||
{else}
|
||||
{$list->bool('host_server_status','1','form_menu')}
|
||||
{/if}
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td style="width: 35%;">{osb f=tf field=debug}</td>
|
||||
<td style="width: 65%;">{$list->bool('host_server_debug',$VAR.host_server_debug,'form_menu')}</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td style="width: 35%;">{osb f=tf field=name}</td>
|
||||
<td style="width: 65%;"><input type="text" name="host_server_name" value="{$VAR.host_server_name}" {if $host_server_name == true}class="form_field_error"{/if}/></td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td style="width: 35%;">{osb f=tf field=notes}</td>
|
||||
<td style="width: 65%;"><textarea name="host_server_notes" cols="40" rows="5" {if $host_server_notes == true}class="form_field_error"{/if}>{$VAR.host_server_notes}</textarea></td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td style="width: 35%;">{osb f=tf field=provision_plugin}</td>
|
||||
<td style="width: 65%;">{$list->menu_files('','host_server_provision_plugin',$VAR.host_server_provision_plugin,'provision_plugin','','.php','form_menu')}</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td style="width: 35%;">{osb f=tf field=name_based}</td>
|
||||
<td style="width: 65%;">
|
||||
{if $VAR.host_server_name_based != ''}
|
||||
{$list->bool('host_server_name_based',$VAR.host_server_name_based,'form_menu')}
|
||||
{else}
|
||||
{$list->bool('host_server_name_based','1','form_menu')}
|
||||
{/if}
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td style="width: 35%;">{osb f=tf field=name_based_ip}</td>
|
||||
<td style="width: 65%;"><input type="text" name="host_server_name_based_ip" value="{$VAR.host_server_name_based_ip}" {if $host_server_name_based_ip == true}class="form_field_error"{/if}/></td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td style="width: 35%;">{osb f=tf field=ip_based}</td>
|
||||
<td style="width: 65%;">{$list->bool('host_server_ip_based',$VAR.host_server_ip_based,'form_menu')}</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td style="width: 35%;">{osb f=tf field=ip_based_ip}</td>
|
||||
<td style="width: 65%;"><textarea name="host_server_ip_based_ip" cols="40" rows="5" {if $host_server_ip_based_ip == true}class="form_field_error"{/if}>{$VAR.host_server_ip_based_ip}</textarea></td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td style="width: 35%;">{osb f=tf field=primary_ns}</td>
|
||||
<td style="width: 65%;"><input type="text" name="host_server_ns_primary" value="{$VAR.host_server_ns_primary}" size="32"/></td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td style="width: 35%;">{osb f=tf field=secondary_ns}</td>
|
||||
<td style="width: 65%;"><input type="text" name="host_server_ns_secondary" value="{$VAR.host_server_ns_secondary}" size="32"/></td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td style="width: 35%;">{osb f=tf field=primary_nsip}</td>
|
||||
<td style="width: 65%;"><input type="text" name="host_server_ns_ip_primary" value="{$VAR.host_server_ns_ip_primary}" size="32"/></td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td style="width: 35%;">{osb f=tf field=secondary_nsip}</td>
|
||||
<td style="width: 65%;"><input type="text" name="host_server_ns_ip_secondary" value="{$VAR.host_server_ns_ip_secondary}" size="32"/></td>
|
||||
</tr>
|
||||
{include file='file:../core/add_tr_submit.tpl'}
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</form>
|
@@ -1,12 +0,0 @@
|
||||
{assign var=meth value=':'|explode:$VAR._page}
|
||||
<!-- {$meth.0}:{$meth.1} -->
|
||||
|
||||
{$method->exe($meth.0,$meth.1)}
|
||||
{if ($method->result == false)}
|
||||
{$block->display('core:method_error')}
|
||||
{else}
|
||||
{include file='file:../core/search_show_pre.tpl'}
|
||||
{$method->exe_noauth($meth.0,'tpl_search_show',$search_show)}
|
||||
{include file='file:../core/search_show_post-1.tpl'}
|
||||
{include file='file:../core/search_show_post-2.tpl'}
|
||||
{/if}
|
@@ -1,109 +0,0 @@
|
||||
{assign var=meth value=':'|explode:$VAR._page}
|
||||
<!-- {$meth.0}:{$meth.1} -->
|
||||
|
||||
{$method->exe($meth.0,$meth.1)}
|
||||
{if ($method->result == false)}
|
||||
{$block->display('core:method_error')}
|
||||
{else}
|
||||
{include file='file:../core/view_pre.tpl'}
|
||||
|
||||
<!-- Display the field validation -->
|
||||
{if $form_validation}
|
||||
{$block->display('core:alert_fields')}
|
||||
{/if}
|
||||
|
||||
<!-- Display each record -->
|
||||
<form id="view" method="post" action="" enctype="multipart/form-data">
|
||||
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="table_background">
|
||||
<tr>
|
||||
<td>
|
||||
<table width="100%" border="0" cellspacing="1" cellpadding="0">
|
||||
<tr valign="top">
|
||||
<td class="table_heading">{osb f=tt}</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td class="row1">
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top">
|
||||
<td style="width: 35%;">{osb f=tf field=status}</td>
|
||||
<td style="width: 65%;">{$list->bool('host_server_status',$record.status,'" onchange="submit()')}</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td style="width: 35%;">{osb f=tf field=debug}</td>
|
||||
<td style="width: 65%;">{$list->bool('host_server_debug',$record.debug,'" onchange="submit()')}</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td style="width: 35%;">{osb f=tf field=name}</td>
|
||||
<td style="width: 65%;"><input type="text" name="host_server_name" value="{$record.name}" size="32"/></td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td style="width: 35%;">{osb f=tf field=notes}</td>
|
||||
<td style="width: 65%;"><textarea name="host_server_notes" cols="35" rows="2" >{$record.notes}</textarea></td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td style="width: 35%;">{osb f=tf field=max_accounts}</td>
|
||||
<td style="width: 65%;"><input type="text" name="host_server_max_accounts" value="{$record.max_accounts}" size="5"/></td>
|
||||
</tr>
|
||||
{if $next_server == true}
|
||||
<tr valign="top">
|
||||
<td style="width: 35%;">{osb f=tf field=next_host_server_id}</td>
|
||||
<td style="width: 65%;">
|
||||
<select name="host_server_next_host_server_id">
|
||||
{html_options options=$next_server_options selected=$record.next_host_server_id}
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
{/if}
|
||||
<tr valign="top">
|
||||
<td style="width: 35%;">{osb f=tf field=name_based}</td>
|
||||
<td style="width: 65%;">{$list->bool('host_server_name_based',$record.name_based,'form_menu')}</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td style="width: 35%;">{osb f=tf field=name_based_ip}</td>
|
||||
<td style="width: 65%;"><input type="text" name="host_server_name_based_ip" value="{$record.name_based_ip}" size="32"/></td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td style="width: 35%;">{osb f=tf field=ip_based}</td>
|
||||
<td style="width: 65%;">{$list->bool('host_server_ip_based',$record.ip_based,'form_menu')}</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td style="width: 35%;">{osb f=tf field=ip_based_ip}</td>
|
||||
<td style="width: 65%;"><textarea name="host_server_ip_based_ip" cols="35" rows="5" >{$record.ip_based_ip}</textarea></td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td style="width: 35%;">{osb f=tf field=provision_plugin}</td>
|
||||
<td style="width: 65%;">{$list->menu_files('','host_server_provision_plugin',$record.provision_plugin,'provision_plugin','','.php','form_menu')}</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td style="width: 35%;">{osb f=tf field=primary_ns}</td>
|
||||
<td style="width: 65%;"><input type="text" name="host_server_ns_primary" value="{$record.ns_primary}" size="32"/></td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td style="width: 35%;">{osb f=tf field=secondary_ns}</td>
|
||||
<td style="width: 65%;"><input type="text" name="host_server_ns_secondary" value="{$record.ns_secondary}" size="32"/></td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td style="width: 35%;">{osb f=tf field=primary_nsip}</td>
|
||||
<td style="width: 65%;"><input type="text" name="host_server_ns_ip_primary" value="{$record.ns_ip_primary}" size="32"/></td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td style="width: 35%;">{osb f=tf field=secondary_nsip}</td>
|
||||
<td style="width: 65%;"><input type="text" name="host_server_ns_ip_secondary" value="{$record.ns_ip_secondary}" size="32"/></td>
|
||||
</tr>
|
||||
</table>
|
||||
{assign var='ablock' value='host_provision_plugin:plugin_cfg_'}
|
||||
{assign var='afile' value=$record.provision_plugin}
|
||||
{assign var='blockfile' value="$ablock$afile"}
|
||||
{$block->display($blockfile)}
|
||||
</td>
|
||||
</tr>
|
||||
{include file='file:../core/view_tr_submit_delete.tpl'}
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
{include file='file:../core/view_post.tpl'}
|
||||
</form>
|
||||
{/if}
|
@@ -1,65 +0,0 @@
|
||||
{assign var=meth value=':'|explode:$VAR._page}
|
||||
<!-- {$meth.0}:{$meth.1} -->
|
||||
|
||||
<!-- Display the form validation -->
|
||||
{if $form_validation}
|
||||
{$block->display('core:alert_fields')}
|
||||
{/if}
|
||||
|
||||
<!-- Display the form to collect the input values -->
|
||||
<form id="add" method="post" action="" enctype="multipart/form-data">
|
||||
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="table_background">
|
||||
<tr>
|
||||
<td>
|
||||
<table width="100%" border="0" cellspacing="1" cellpadding="0">
|
||||
<tr valign="top">
|
||||
<td class="table_heading">{osb f=tt}</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td class="row1">
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top">
|
||||
<td style="width: 35%;">{osb f=tf field=status}</td>
|
||||
<td style="width: 65%;">
|
||||
{if $VAR.host_tld_status != ''}
|
||||
{$list->bool('host_tld_status',$VAR.host_tld_status)}
|
||||
{else}
|
||||
{$list->bool('host_tld_status','1')}
|
||||
{/if}
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td style="width: 35%;">{osb f=tf field=name}</td>
|
||||
<td style="width: 65%;"><input type="text" name="host_tld_name" value="{$VAR.host_tld_name}" {if $host_tld_name == true}class="form_field_error"{/if} size="12"/></td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td style="width: 35%;">{osb f=tf field=whois_plugin}</td>
|
||||
<td style="width: 65%;">{$list->menu_files('','host_tld_whois_plugin',$VAR.host_tld_whois_plugin,'whois_plugin','','.php','form_menu')}</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td style="width: 35%;">{osb f=tf field=registrar_plugin_id}</td>
|
||||
<td style="width: 65%;">{$list->menu('','host_tld_registrar_plugin_id','host_registrar_plugin','name',$VAR.host_tld_registrar_plugin_id,'form_menu')}</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td style="width: 35%;">{osb f=tf field=taxable}</td>
|
||||
<td style="width: 65%;">{$list->bool('host_tld_taxable',$VAR.host_tld_taxable)}</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td style="width: 35%;">{osb f=tf field=auto_search}</td>
|
||||
<td style="width: 65%;">{$list->bool('host_tld_auto_search',$VAR.host_tld_auto_search)}</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td style="width: 35%;">{osb f=tf field=default_term_new}</td>
|
||||
<td style="width: 65%;"><input type="text" name="host_tld_default_term_new" value="{$VAR.host_tld_default_term_new}" {if $host_tld_default_term_new == true}class="form_field_error"{/if} size="5"/></td>
|
||||
</tr>
|
||||
{include file='file:../core/add_tr_submit.tpl'}
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</form>
|
@@ -1,105 +0,0 @@
|
||||
{literal}
|
||||
<script language="JavaScript">
|
||||
var type='register';
|
||||
function cartAdminAdd(type) {
|
||||
document.location = '?_page=cart:admin_view&do[]=cart:admin_add&host_type='+type+'&domain_name='+domain+'&domain_tld='+tld+'&account_id={/literal}{$VAR.account_id}{literal}';
|
||||
}
|
||||
</script>
|
||||
<script src="themes/default/blocks/host_tld/ajax.js" type="text/javascript"></script>
|
||||
{/literal}
|
||||
<table width=100% border="0" cellspacing="1" cellpadding="0" class="table_background">
|
||||
<tr valign="middle" class="row2">
|
||||
<td width="96%">
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="table_heading" height="25">
|
||||
<tr valign="top">
|
||||
<td>
|
||||
{translate module=host_tld}
|
||||
domain_register
|
||||
{/translate}
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top" class="row2">
|
||||
<td width="96%">
|
||||
<form name="domain" method="post" action="javascript:void(0);" onSubmit="domainSearch();">
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="3" class="row1">
|
||||
<tr>
|
||||
<td width="95%">
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="3">
|
||||
<tr>
|
||||
<td width="15%">
|
||||
<input type="text" id="domainName" name="domainName" maxlength="128" size="22">
|
||||
</td>
|
||||
<td width="6%">
|
||||
<select id="domainTLD" name="domainTLD">
|
||||
{ if $list->smarty_array("host_tld", "name", "", "tld") }
|
||||
{foreach from=$tld item=tld}
|
||||
<option value="{$tld.name}" {if $tld.name == $VAR.tld}selected{/if}>
|
||||
{$tld.name}
|
||||
</option>
|
||||
{/foreach}
|
||||
{/if}
|
||||
</select>
|
||||
</td>
|
||||
<td width="20"><a href="javascript:domainSearch();"><img src="themes/{$THEME_NAME}/images/icons/srch_16.gif" border="0" width="16" height="16"></a><b></b></td>
|
||||
<td width="68%" class="body"><a href="javascript:domainSearch();"><b><u>{translate}search{/translate}</u></b></a></td>
|
||||
<td width="68%"> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="3" class="row1">
|
||||
<tr>
|
||||
<td>
|
||||
<div id="search" style="display:none"><b>
|
||||
{translate module=host_tld}
|
||||
searching
|
||||
{/translate}
|
||||
</b></div>
|
||||
<div id="unavailable" style="display:none"><b>
|
||||
{translate module=host_tld}
|
||||
domain_unavail
|
||||
{/translate}
|
||||
</b></div>
|
||||
<div id="available" style="display:none">
|
||||
<b>
|
||||
{translate module=host_tld}
|
||||
domain_avail_s
|
||||
{/translate}
|
||||
<br>
|
||||
<br>
|
||||
<a href="javascript:cartAdminAdd('register')"><img src="themes/{$THEME_NAME}/images/icons/cart_16.gif" border="0">
|
||||
{translate module=host_tld}
|
||||
register_cart
|
||||
{/translate}
|
||||
</a></b>
|
||||
</div>
|
||||
<div id="park_available" style="display:none">
|
||||
<br><b>
|
||||
<a href="javascript:cartAdminAdd('park')"><img src="themes/{$THEME_NAME}/images/icons/cart_16.gif" border="0">
|
||||
{translate module=host_tld}
|
||||
park_cart
|
||||
{/translate}
|
||||
</a></b>
|
||||
</div>
|
||||
<div id="instructions"> <b>
|
||||
{translate module=host_tld}
|
||||
register_instructions_s
|
||||
{/translate}
|
||||
</b> </div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="13%"> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
{literal}<script language="JavaScript"> try{ document.getElementById('domain').focus(); } catch(e) {} </script>{/literal}
|
||||
<br>
|
||||
<div class=select> <a href="?_page=host_tld:admin_search_transfer&account_id={$VAR.account_id}"><b>Domain Transfer Form</b></a> </div>
|
@@ -1,92 +0,0 @@
|
||||
{literal}
|
||||
<script language="JavaScript">
|
||||
var type='transfer';
|
||||
function cartAdminAdd(type) {
|
||||
document.location = '?_page=cart:admin_view&do[]=cart:admin_add&host_type='+type+'&domain_name='+domain+'&domain_tld='+tld+'&account_id={/literal}{$VAR.account_id}{literal}';
|
||||
}
|
||||
</script>
|
||||
<script src="themes/default/blocks/host_tld/ajax.js" type="text/javascript"></script>
|
||||
{/literal}
|
||||
<table width=100% border="0" cellspacing="1" cellpadding="0" class="table_background">
|
||||
<tr valign="middle" class="row2">
|
||||
<td width="96%">
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="table_heading" height="25">
|
||||
<tr valign="top">
|
||||
<td>
|
||||
{translate module=host_tld}
|
||||
domain_transfer
|
||||
{/translate}
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top" class="row2">
|
||||
<td width="96%">
|
||||
<form name="domain" method="post" action="javascript:void(0);" onSubmit="domainSearch();">
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="3" class="row1">
|
||||
<tr>
|
||||
<td width="95%">
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="3">
|
||||
<tr>
|
||||
<td width="13%">
|
||||
<input type="text" id="domainName" name="domainName" maxlength="128" size="22">
|
||||
</td>
|
||||
<td width="5%">
|
||||
<select id="domainTLD" name="domainTLD">
|
||||
{ if $list->smarty_array("host_tld", "name", "", "tld") }
|
||||
{foreach from=$tld item=tld}
|
||||
<option value="{$tld.name}">
|
||||
{$tld.name}
|
||||
</option>
|
||||
{/foreach}
|
||||
{/if}
|
||||
</select>
|
||||
</td>
|
||||
<td width="20"><a href="javascript:domainSearch();"><img src="themes/{$THEME_NAME}/images/icons/srch_16.gif" border="0" width="16" height="16"></a><b></b></td>
|
||||
<td width="68%" class="body"><a href="javascript:domainSearch();"><b><u>{translate}search{/translate}</u></b></a></td>
|
||||
<td width="77%"> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="3">
|
||||
<tr>
|
||||
<td class="row1">
|
||||
<div id="search" style="display:none"><b>
|
||||
{translate module=host_tld}
|
||||
transfer_searching
|
||||
{/translate}
|
||||
</b></div>
|
||||
<div id="unavailable" style="display:none"><b>
|
||||
{translate module=host_tld}
|
||||
transfer_unavail
|
||||
{/translate}
|
||||
</b></div>
|
||||
<div id="available" style="display:none"> <b>
|
||||
{translate module=host_tld}
|
||||
transfer_avail_s
|
||||
{/translate}</b><br><br>
|
||||
<a href="javascript:cartAdminAdd('transfer')">
|
||||
<img src="themes/{$THEME_NAME}/images/icons/cart_16.gif" border="0">
|
||||
{translate module=host_tld}
|
||||
transfer_cart
|
||||
{/translate}
|
||||
</a> </div>
|
||||
<div id="instructions"> <b>
|
||||
{translate module=host_tld}
|
||||
register_instructions_s
|
||||
{/translate}
|
||||
</b> </div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="13%"> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
{literal}<script language="JavaScript"> try{ document.getElementById('domain').focus(); } catch(e) {} </script>{/literal}
|
@@ -1,69 +0,0 @@
|
||||
var http=getHTTPObject();
|
||||
var validatedDomain=false;
|
||||
var domain=null;
|
||||
var tld=null;
|
||||
|
||||
function cartAdd(type) {
|
||||
if(validatedDomain) {
|
||||
getUserDomainInfo();
|
||||
document.location = '?_page=cart:cart&do[]=cart:add&host_type='+type+'&domain_name='+domain+'&domain_tld='+tld;
|
||||
} else {
|
||||
alert('Invalid domain!');
|
||||
}
|
||||
}
|
||||
|
||||
function showSuggest() {
|
||||
getUserDomainInfo();
|
||||
if(domain==null || domain=='')
|
||||
document.location = '?_page=host_tld:suggest&domain='+domain+'&tld='+tld;
|
||||
else
|
||||
document.location = '?_page=host_tld:suggest';
|
||||
}
|
||||
|
||||
function getUserDomainInfo() {
|
||||
domain = document.getElementById("domainName").value;
|
||||
tld = document.getElementById("domainTLD").value;
|
||||
}
|
||||
|
||||
function domainSearchResponse(domain,tld) {
|
||||
http.open("GET", 'ajax.php?do[]=host_tld:whois&type='+type+'&tld='+tld+'&domain='+domain, true);
|
||||
http.onreadystatechange = function() {
|
||||
if (http.readyState == 4) {
|
||||
try { eval(http.responseText) } catch(e) {}
|
||||
}
|
||||
}
|
||||
http.send(null);
|
||||
}
|
||||
|
||||
function domainSearch() {
|
||||
getUserDomainInfo();
|
||||
validatedDomain=false;
|
||||
try{ window.parent.domainUpdate(0,0,0) } catch(e) {}
|
||||
if(domain!=null || domain!='') {
|
||||
document.getElementById("search").style.display='block';
|
||||
try{ document.getElementById("instructions").style.display='none' }catch(e){}
|
||||
document.getElementById("available").style.display='none';
|
||||
document.getElementById("unavailable").style.display='none';
|
||||
domainSearchResponse(domain,tld,type);
|
||||
} else {
|
||||
unavailable();
|
||||
}
|
||||
}
|
||||
|
||||
function available(i) {
|
||||
validatedDomain=true;
|
||||
document.getElementById("available").style.display='block';
|
||||
document.getElementById("search").style.display='none';
|
||||
document.getElementById("unavailable").style.display='none';
|
||||
if(i==1 || i==true ) try{ document.getElementById("park_available").style.display='block' } catch(e) {}
|
||||
try{ window.parent.domainUpdate(domain,tld,type) } catch(e) {}
|
||||
}
|
||||
|
||||
function unavailable() {
|
||||
validatedDomain=false;
|
||||
document.getElementById("unavailable").style.display='block';
|
||||
document.getElementById("search").style.display='none';
|
||||
document.getElementById("available").style.display='none';
|
||||
try{ document.getElementById("park_available").style.display='none'; } catch(e) {}
|
||||
try{ window.parent.domainUpdate(0,0,0) } catch(e) {}
|
||||
}
|
@@ -1,6 +0,0 @@
|
||||
// Supporting Javascript for HOST_TLD
|
||||
function domainUpdate(domain,tld,type) {
|
||||
document.getElementById('domain_name').value = domain;
|
||||
document.getElementById('domain_tld').value = tld;
|
||||
document.getElementById('domain_option').value = type;
|
||||
}
|
@@ -1,26 +0,0 @@
|
||||
{ $block->display("core:top_clean") }
|
||||
<form name="domain" method="post" action="{$SSL_URL}">
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="3" class="body">
|
||||
<tr>
|
||||
<td width="95%" class="body"> <b> <br>
|
||||
{translate module=host_tld}
|
||||
ns_transfer_instructions
|
||||
{/translate}
|
||||
</b></td>
|
||||
<td width="5%"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="95%">
|
||||
<p>
|
||||
<input type="text" id="domain" name="domain" maxlength="128" size="22" onchange="parent.document.getElementById('domain_name').value = this.value;">
|
||||
.
|
||||
<input type="text" id="tld" name="tld" size="5" maxlength="7" onchange="parent.document.getElementById('domain_tld').value = this.value;">
|
||||
</p> <br>
|
||||
</td>
|
||||
<td width="5%"> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
{literal}<script language="JavaScript"> try{ document.getElementById('domain').focus(); } catch(e) {} </script>{/literal}
|
||||
</body>
|
||||
</html>
|
@@ -1,71 +0,0 @@
|
||||
{ $block->display("core:top_clean") }
|
||||
{literal}
|
||||
<script language="JavaScript">
|
||||
var type='register';
|
||||
</script>
|
||||
<script src="themes/default/blocks/host_tld/ajax.js" type="text/javascript"></script>
|
||||
{/literal}
|
||||
<form name="domain" method="post" action="javascript:void(0);" onsubmit="domainSearch();">
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="3" class="body">
|
||||
<tr>
|
||||
<td width="95%" class="body"> <b> <br>
|
||||
{translate module=host_tld}
|
||||
register_instructions
|
||||
{/translate}
|
||||
</b></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="95%">
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="3" class="body">
|
||||
<tr>
|
||||
<td width="14%">
|
||||
<input type="text" id="domainName" name="domainName" maxlength="128" size="22">
|
||||
</td>
|
||||
<td width="6%">
|
||||
<select id="domainTLD" name="domainTLD">
|
||||
{ if $list->smarty_array("host_tld", "name", "", "tld") }
|
||||
{foreach from=$tld item=tld}
|
||||
<option value="{$tld.name}">
|
||||
{$tld.name}
|
||||
</option>
|
||||
{/foreach}
|
||||
{/if}
|
||||
</select>
|
||||
</td>
|
||||
<td width="12%"><a href="javascript:domainSearch();"><b><u>{translate}search{/translate}</u></b></a><b></b></td>
|
||||
<td width="68%"> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="3">
|
||||
<tr>
|
||||
<td class="body">
|
||||
<DIV id="search" style="display:none"><b>
|
||||
{translate module=host_tld}
|
||||
searching
|
||||
{/translate}
|
||||
</b></DIV>
|
||||
<DIV id="unavailable" style="display:none"><b>
|
||||
{translate module=host_tld}
|
||||
domain_unavail
|
||||
{/translate}
|
||||
</b></DIV>
|
||||
<DIV id="available" style="display:none"> <b>
|
||||
{translate module=host_tld}
|
||||
domain_avail
|
||||
{/translate}
|
||||
</b> </DIV>
|
||||
<DIV id="none" style="display:block"> </DIV>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="13%">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
{literal}<script language="JavaScript"> try{ document.getElementById('domain').focus(); } catch(e) {} </script>{/literal}
|
||||
</body>
|
||||
</html>
|
@@ -1,71 +0,0 @@
|
||||
{ $block->display("core:top_clean") }
|
||||
{literal}
|
||||
<script language="JavaScript">
|
||||
var type='transfer';
|
||||
</script>
|
||||
<script src="themes/default/blocks/host_tld/ajax.js" type="text/javascript"></script>
|
||||
{/literal}
|
||||
<form name="domain" method="post" action="javascript:void(0);" onsubmit="domainSearch();">
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="3" class="body">
|
||||
<tr>
|
||||
<td width="95%" class="body"> <b> <br>
|
||||
{translate module=host_tld}
|
||||
register_instructions
|
||||
{/translate}
|
||||
</b></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="95%">
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="3" class="body">
|
||||
<tr>
|
||||
<td width="14%">
|
||||
<input type="text" id="domainName" name="domainName" maxlength="128" size="22" >
|
||||
</td>
|
||||
<td width="6%">
|
||||
<select id="domainTLD" name="domainTLD" >
|
||||
{ if $list->smarty_array("host_tld", "name", "", "tld") }
|
||||
{foreach from=$tld item=tld}
|
||||
<option value="{$tld.name}">
|
||||
{$tld.name}
|
||||
</option>
|
||||
{/foreach}
|
||||
{/if}
|
||||
</select>
|
||||
</td>
|
||||
<td width="12%"><a href="javascript:domainSearch();"><b><u>{translate}search{/translate}</u></b></a><b></b></td>
|
||||
<td width="68%"> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="3">
|
||||
<tr>
|
||||
<td class="body">
|
||||
<DIV id="search" style="display:none"><b>
|
||||
{translate module=host_tld}
|
||||
transfer_ searching
|
||||
{/translate}
|
||||
</b></DIV>
|
||||
<DIV id="unavailable" style="display:none"><b>
|
||||
{translate module=host_tld}
|
||||
transfer_unavail
|
||||
{/translate}
|
||||
</b></DIV>
|
||||
<DIV id="available" style="display:none"> <b>
|
||||
{translate module=host_tld}
|
||||
transfer_avail
|
||||
{/translate}
|
||||
</b> </DIV>
|
||||
<DIV id="none" style="display:block"> </DIV>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="13%">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
{literal}<script language="JavaScript"> try{ document.getElementById('domain').focus(); } catch(e) {} </script>{/literal}
|
||||
</body>
|
||||
</html>
|
@@ -1,123 +0,0 @@
|
||||
{literal}
|
||||
<script language="JavaScript">
|
||||
var type='register';
|
||||
</script>
|
||||
<script src="themes/default/blocks/host_tld/ajax.js" type="text/javascript"></script>
|
||||
{/literal}
|
||||
<table width=100% border="0" cellspacing="1" cellpadding="0" class="table_background">
|
||||
<tr valign="middle" class="row2">
|
||||
<td width="96%">
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="table_heading_cart" height="25">
|
||||
<tr valign="top">
|
||||
<td>
|
||||
{translate module=host_tld}
|
||||
domain_register
|
||||
{/translate}
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top" class="row2">
|
||||
<td width="96%">
|
||||
<form name="domain" method="post" action="javascript:void(0);" onSubmit="domainSearch();">
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="3" class="row1">
|
||||
<tr>
|
||||
<td width="95%">
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="3">
|
||||
<tr>
|
||||
<td width="15%">
|
||||
<input type="text" id="domainName" name="domainName" maxlength="128" size="22" value="{$VAR.domain}">
|
||||
</td>
|
||||
<td width="6%">
|
||||
<select id="domainTLD" name="domainTLD">
|
||||
{ if $list->smarty_array("host_tld", "name", "", "tld") }
|
||||
{foreach from=$tld item=tld}
|
||||
<option value="{$tld.name}"{if $VAR.tld==$tld.name} selected{/if}>
|
||||
{$tld.name}
|
||||
</option>
|
||||
{/foreach}
|
||||
{/if}
|
||||
</select>
|
||||
</td>
|
||||
<td width="20"><a href="javascript:domainSearch();"><img src="themes/{$THEME_NAME}/images/icons/srch_16.gif" border="0" width="16" height="16"></a><b></b></td>
|
||||
<td width="68%" class="body"><a href="javascript:domainSearch();"><b><u>{translate}search{/translate}</u></b></a></td>
|
||||
<td width="68%"></td>
|
||||
</tr>
|
||||
</table>
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="3" class="row1">
|
||||
<tr>
|
||||
<td>
|
||||
<div id="search" style="display:none"><b>
|
||||
{translate module=host_tld}
|
||||
searching
|
||||
{/translate}
|
||||
</b></div>
|
||||
<div id="unavailable" style="display:none"><b>
|
||||
{translate module=host_tld}
|
||||
domain_unavail
|
||||
{/translate}
|
||||
</b></div>
|
||||
<div id="available" style="display:none">
|
||||
<b>
|
||||
{translate module=host_tld}
|
||||
domain_avail_s
|
||||
{/translate}
|
||||
<br>
|
||||
<br>
|
||||
<a href="javascript:cartAdd('register')"><img src="themes/{$THEME_NAME}/images/icons/cart_16.gif" border="0">
|
||||
{translate module=host_tld}
|
||||
register_cart
|
||||
{/translate}
|
||||
</a></b>
|
||||
</div>
|
||||
<div id="park_available" style="display:none">
|
||||
<br><b>
|
||||
<a href="javascript:cartAdd('park')"><img src="themes/{$THEME_NAME}/images/icons/cart_16.gif" border="0">
|
||||
{translate module=host_tld}
|
||||
park_cart
|
||||
{/translate}
|
||||
</a></b>
|
||||
</div>
|
||||
<div id="instructions"> <b>
|
||||
{translate module=host_tld}
|
||||
register_instructions_s
|
||||
{/translate}
|
||||
</b> </div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="13%"> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
{if $VAR._page!='host_tld:iframe_register'}
|
||||
<br>
|
||||
<div class=select>
|
||||
<p><a href="?_page=host_tld:search_transfer"><b>
|
||||
{translate module=host_tld}
|
||||
domain_transfer
|
||||
{/translate}
|
||||
</b></a> </p>
|
||||
<p><a href="javascript:showSuggest();"><b>
|
||||
{translate module=host_tld}
|
||||
suggest_other
|
||||
{/translate}
|
||||
</b></a> </p>
|
||||
<p><a href="?_page=host_tld:search_mass"><b>
|
||||
{translate module=host_tld}
|
||||
search_mass
|
||||
{/translate}
|
||||
</b></a> </p>
|
||||
</div>
|
||||
<script language="JavaScript">
|
||||
{if $VAR.domain != ""} domainSearch('register'); {else} {literal} try{ document.getElementById('domain').focus(); } catch(e) {} {/literal} {/if}
|
||||
</script>
|
||||
{/if}
|
@@ -1,73 +0,0 @@
|
||||
|
||||
|
||||
<table width=100% border="0" cellspacing="1" cellpadding="0" class="table_background">
|
||||
<tr valign="middle" class="row2">
|
||||
<td width="96%">
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="table_heading_cart" height="25">
|
||||
<tr valign="top">
|
||||
|
||||
<td>
|
||||
{translate module=host_tld}
|
||||
search_mass_header
|
||||
{/translate}
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top" class="row2">
|
||||
<td width="96%">
|
||||
<form name="domain" method="post" action="">
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="3" class="row1">
|
||||
<tr>
|
||||
<td width="95%">
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="5" class="body">
|
||||
<tr>
|
||||
<td width="53%">
|
||||
<textarea id="domain" name="domains" cols="40" rows="10">{$domains}</textarea>
|
||||
</td>
|
||||
<td width="47%" valign="top">
|
||||
<p>
|
||||
{translate module=host_tld}
|
||||
search_mass_instructions
|
||||
{/translate}
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="53%"><a href="javascript:search();"><b><u> </u></b></a>
|
||||
<input type="submit" name="Submit" value="{translate}search{/translate}">
|
||||
<input type="hidden" name="do[]" value="host_tld:whois_mass">
|
||||
<input type="hidden" name="_page" value="host_tld:search_mass">
|
||||
</td>
|
||||
<td width="47%" align="right">
|
||||
{if $checkout}
|
||||
<b> <a href="javascript:document.getElementById('cartadd').submit();">
|
||||
<u>
|
||||
{translate module=host_tld}
|
||||
suggest_purchase
|
||||
{/translate}
|
||||
</u></a></b>
|
||||
{/if}
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<form id="cartadd" name="cartadd" method="post" action="">
|
||||
|
||||
{foreach from=$domainarr item=rs}
|
||||
<input type="hidden" name="domain_name[]" value="{$rs.0}">
|
||||
<input type="hidden" name="domain_tld[]" value="{$rs.1}">
|
||||
<input type="hidden" name="host_type[]" value="register">
|
||||
{/foreach}
|
||||
|
||||
<input type="hidden" name="do[]" value="cart:add">
|
||||
<input type="hidden" name="_page" value="cart:cart">
|
||||
</form>
|
||||
|
@@ -1,12 +0,0 @@
|
||||
{assign var=meth value=':'|explode:$VAR._page}
|
||||
<!-- {$meth.0}:{$meth.1} -->
|
||||
|
||||
{$method->exe($meth.0,$meth.1)}
|
||||
{if ($method->result == false)}
|
||||
{$block->display('core:method_error')}
|
||||
{else}
|
||||
{include file='file:../core/search_show_pre.tpl'}
|
||||
{$method->exe_noauth($meth.0,'tpl_search_show',$search_show)}
|
||||
{include file='file:../core/search_show_post-1.tpl'}
|
||||
{include file='file:../core/search_show_post-2.tpl'}
|
||||
{/if}
|
@@ -1,91 +0,0 @@
|
||||
{literal}
|
||||
<script language="JavaScript">
|
||||
var type='transfer';
|
||||
</script>
|
||||
<script src="themes/default/blocks/host_tld/ajax.js" type="text/javascript"></script>
|
||||
{/literal}
|
||||
<table width=100% border="0" cellspacing="1" cellpadding="0" class="table_background">
|
||||
<tr valign="middle" class="row2">
|
||||
<td width="96%">
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="table_heading_cart" height="25">
|
||||
<tr valign="top">
|
||||
<td>
|
||||
{translate module=host_tld}
|
||||
domain_transfer
|
||||
{/translate}
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top" class="row2">
|
||||
<td width="96%">
|
||||
<form name="domain" method="post" action="javascript:void(0);" onSubmit="domainSearch();">
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="3" class="row1">
|
||||
<tr>
|
||||
<td width="95%">
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="3">
|
||||
<tr>
|
||||
<td width="13%">
|
||||
<input type="text" id="domainName" name="domainName" maxlength="128" size="22" value="{$VAR.domain}">
|
||||
</td>
|
||||
<td width="5%">
|
||||
<select id="domainTLD" name="domainTLD" >
|
||||
{ if $list->smarty_array("host_tld", "name", "", "tld") }
|
||||
{foreach from=$tld item=tld}
|
||||
<option value="{$tld.name}"{if $VAR.tld==$tld.name} selected{/if}>
|
||||
{$tld.name}
|
||||
</option>
|
||||
{/foreach}
|
||||
{/if}
|
||||
</select>
|
||||
</td>
|
||||
<td width="20"><a href="javascript:domainSearch();"><img src="themes/{$THEME_NAME}/images/icons/srch_16.gif" border="0" width="16" height="16"></a><b></b></td>
|
||||
<td width="68%" class="body"><a href="javascript:domainSearch();"><b><u>{translate}search{/translate}</u></b></a></td>
|
||||
<td width="77%"> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="3">
|
||||
<tr>
|
||||
<td class="row1">
|
||||
<div id="search" style="display:none"><b>
|
||||
{translate module=host_tld}
|
||||
transfer_searching
|
||||
{/translate}
|
||||
</b></div>
|
||||
<div id="unavailable" style="display:none"><b>
|
||||
{translate module=host_tld}
|
||||
transfer_unavail
|
||||
{/translate}
|
||||
</b></div>
|
||||
<div id="available" style="display:none"> <b>
|
||||
{translate module=host_tld}
|
||||
transfer_avail_s
|
||||
{/translate}</b><br><br>
|
||||
<a href="javascript:cartAdd('transfer')">
|
||||
<img src="themes/{$THEME_NAME}/images/icons/cart_16.gif" border="0">
|
||||
{translate module=host_tld}
|
||||
transfer_cart
|
||||
{/translate}
|
||||
</a> </div>
|
||||
<div id="instructions"> <b>
|
||||
{translate module=host_tld}
|
||||
register_instructions_s
|
||||
{/translate}
|
||||
</b> </div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="13%"> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<script language="JavaScript">
|
||||
{if $VAR.domain != ""} domainSearch('transfer'); {else} {literal} try{ document.getElementById('domain').focus(); } catch(e) {} {/literal} {/if}
|
||||
</script>
|
@@ -1,291 +0,0 @@
|
||||
{$method->exe_noauth("host_tld","suggest")}
|
||||
<table width=100% border="0" cellspacing="1" cellpadding="0" class="table_background">
|
||||
<tr valign="middle" class="row2">
|
||||
<td width="96%">
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="table_heading_cart" height="25">
|
||||
<tr valign="top">
|
||||
|
||||
<td>
|
||||
{translate module=host_tld}
|
||||
suggest_heading
|
||||
{/translate}
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top" class="row2">
|
||||
<td width="96%">
|
||||
<form name="domain" method="post" action="javascript:void(0);" onSubmit="search();">
|
||||
<script language="JavaScript">
|
||||
{$javascript}
|
||||
{literal}
|
||||
var tldDone = new Array();
|
||||
var available = '<b>{/literal}{translate module=host_tld}suggest_available{/translate}{literal}</b>';
|
||||
var unavailable = '{/literal}{translate module=host_tld}suggest_reserved{/translate}{literal}';
|
||||
var searching = '<font color="#FF0000"><b>{/literal}{translate module=host_tld}suggest_searching{/translate}{literal}<b></font>';
|
||||
function domainSwitch(element) {
|
||||
var domain = document.getElementById('domainName').value;
|
||||
var tld = document.getElementById('domainTLD').value;
|
||||
if(document.getElementById(element+"_check").checked == false)
|
||||
domainUnselect(domain, tld, element);
|
||||
else
|
||||
domainSelect(domain, tld, element);
|
||||
checkCart();
|
||||
}
|
||||
function domainSelect(domain, tld, element) {
|
||||
document.getElementById(element+"_check").checked = true;
|
||||
document.getElementById(element+"_area").className = 'row_mouse_over_select';
|
||||
}
|
||||
function domainUnselect(domain, tld, element) {
|
||||
document.getElementById(element+"_check").checked = false;
|
||||
document.getElementById(element+"_area").className = 'row_select';
|
||||
}
|
||||
function domainUpdate(domain,tld,type,element,status) {
|
||||
if(element == 'default') for(i=0; i<tldCount; i++) tldDone[tldArr[i]] = false;
|
||||
tldDone[tld] = true;
|
||||
if (status == 1) {
|
||||
document.getElementById(element+"_status").innerHTML=available;
|
||||
document.getElementById(element+"_check").disabled = false;
|
||||
if(element == 'default') {
|
||||
domainSelect(domain, tld, element) ;
|
||||
} else {
|
||||
domainUnselect(domain, tld, element);
|
||||
}
|
||||
} else {
|
||||
document.getElementById(element+"_status").innerHTML=unavailable;
|
||||
document.getElementById(element+"_name").innerHTML= domain+'.'+tld;
|
||||
document.getElementById(element+"_area").className = 'row1';
|
||||
document.getElementById(element+"_check").disabled = true;
|
||||
document.getElementById(element+"_check").checked = false;
|
||||
}
|
||||
for(i=0; i<tldCount; i++)
|
||||
{
|
||||
if(tldDone[tldArr[i]] != true)
|
||||
{
|
||||
document.getElementById(tldArr[i]+"_area").className = 'row_mouse_over';
|
||||
document.getElementById(tldArr[i]+"_area").style.display='block';
|
||||
document.getElementById(tldArr[i]+"_name").innerHTML = '<b>'+domain+'.'+tldArr[i]+'</b>';
|
||||
document.getElementById(tldArr[i]+"_status").innerHTML = searching;
|
||||
domainSearch(domain,tldArr[i],tldArr[i]);
|
||||
break;
|
||||
}
|
||||
}
|
||||
checkCart();
|
||||
}
|
||||
|
||||
var http = getHTTPObject();
|
||||
function domainSearch(domain,tld,element) {
|
||||
var url = 'ajax.php?do[]=host_tld:whois&type=suggest&element='+element+'&tld='+tld+'&domain='+domain;
|
||||
http.open("GET", url, true);
|
||||
http.onreadystatechange = function() {
|
||||
if (http.readyState == 4) {
|
||||
try { eval(http.responseText) } catch(e) {}
|
||||
}
|
||||
}
|
||||
http.send(null);
|
||||
}
|
||||
|
||||
function search() {
|
||||
var domain = document.getElementById('domainName').value;
|
||||
var tld = document.getElementById('domainTLD').value;
|
||||
for(i=0; i<tldCount; i++)
|
||||
{
|
||||
if(tldArr[i] != tld)
|
||||
{
|
||||
document.getElementById(tldArr[i]+"_area").style.display='block';
|
||||
document.getElementById(tldArr[i]+"_name").innerHTML = '<b>'+domain+'.'+tldArr[i]+'</b>';
|
||||
document.getElementById(tldArr[i]+"_status").innerHTML = '...';
|
||||
document.getElementById(tldArr[i]+"_area").className = 'row2';
|
||||
document.getElementById(tldArr[i]+"_check").disabled = true;
|
||||
document.getElementById(tldArr[i]+"_check").checked = false;
|
||||
} else {
|
||||
document.getElementById(tldArr[i]+"_area").style.display='none';
|
||||
}
|
||||
}
|
||||
domainSearch(domain,tld,'default');
|
||||
|
||||
document.getElementById("default_area").style.display='block';
|
||||
document.getElementById("default_name").innerHTML = '<b>'+domain+'.'+tld+'</b>';
|
||||
document.getElementById("default_area").className = 'row1';
|
||||
document.getElementById("default_area").className = 'row_mouse_over';
|
||||
document.getElementById("default_status").innerHTML = searching;
|
||||
document.getElementById("default_check").disabled = true;
|
||||
document.getElementById("default_check").checked = false;
|
||||
}
|
||||
function cartUrl() {
|
||||
var domain = document.getElementById('domainName').value;
|
||||
var tld = document.getElementById('domainTLD').value;
|
||||
var url = '';
|
||||
if(document.getElementById("default_check").checked == true) {
|
||||
url = url + '&domain_name[]='+domain;
|
||||
url = url + '&domain_tld[]='+tld;
|
||||
url = url + '&host_type[]=register';
|
||||
}
|
||||
for(i=0; i<tldCount; i++) {
|
||||
if(document.getElementById(tldArr[i]+"_check").checked == true) {
|
||||
url = url + '&domain_name[]='+domain;
|
||||
url = url + '&domain_tld[]='+tldArr[i];
|
||||
url = url + '&host_type[]=register';
|
||||
}
|
||||
}
|
||||
|
||||
if(url == '')
|
||||
return false;
|
||||
else
|
||||
return '?_page=cart:cart&do[]=cart:add'+url;
|
||||
document.location = url;
|
||||
}
|
||||
function cartAdd() {
|
||||
document.location = cartUrl();
|
||||
}
|
||||
function checkCart() {
|
||||
var url = cartUrl();
|
||||
if(url == false)
|
||||
{
|
||||
document.getElementById("available").style.display='none';
|
||||
document.getElementById("unavailable").style.display='block';
|
||||
} else {
|
||||
document.getElementById("available").style.display='block';
|
||||
document.getElementById("unavailable").style.display='none';
|
||||
}
|
||||
}
|
||||
</script>
|
||||
{/literal}
|
||||
<input type="hidden" id="domain_name" name="domain_name" value="0">
|
||||
<input type="hidden" id="domain_tld" name="domain_tld" value="0">
|
||||
<input type="hidden" id="domain_option" name="domain_option" value="0">
|
||||
<input type="hidden" name="_page" value="cart:cart">
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="3" class="row1">
|
||||
<tr>
|
||||
<td width="95%">
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="3">
|
||||
<tr>
|
||||
<td width="15%">
|
||||
<input type="text" id="domainName" name="domain" maxlength="128" size="22" onChange="parent.document.getElementById('domain_name').value = this.value;" value="{$VAR.domain}">
|
||||
</td>
|
||||
<td width="6%">
|
||||
<select id="domainTLD" name="tld" onChange="parent.document.getElementById('domain_tld').value = this.value;" >
|
||||
{ if $list->smarty_array("host_tld", "name", "", "tld") }
|
||||
{foreach from=$tld item=tld}
|
||||
<option value="{$tld.name}" {if $tld.name == $VAR.tld}selected{/if}>
|
||||
{$tld.name}
|
||||
</option>
|
||||
{/foreach}
|
||||
{/if}
|
||||
</select>
|
||||
</td>
|
||||
<td width="20"><a href="javascript:search();"><img src="themes/{$THEME_NAME}/images/icons/srch_16.gif" border="0" width="16" height="16"></a><b></b></td>
|
||||
<td width="68%" class="body"><a href="javascript:search();"><b><u>
|
||||
{translate}
|
||||
search
|
||||
{/translate}
|
||||
</u></b></a></td>
|
||||
</tr>
|
||||
</table>
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="3" class="row1">
|
||||
<tr>
|
||||
<td>
|
||||
<div id="search" style="display:none"><b> </b></div>
|
||||
<div id="instructions"> <b>
|
||||
{translate module=host_tld}
|
||||
register_instructions_s
|
||||
{/translate}
|
||||
</b> </div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="13%"> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="95%">
|
||||
<!-- USER SELECTED TLD RESULTS -->
|
||||
<div id="default_area" style="display:none">
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="3" class="body">
|
||||
<tr>
|
||||
<td width="5%">
|
||||
<input type="checkbox" id="default_check" name="default_check" value="checkbox" onClick="domainSwitch('default')">
|
||||
</td>
|
||||
<td width="40%">
|
||||
<div id="default_name"></div>
|
||||
</td>
|
||||
<td width="52%">
|
||||
<div id="default_status"></div>
|
||||
</td>
|
||||
<td width="8%"> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<!-- AUTO SEARCH TLD RESULTS -->
|
||||
{foreach from=$tlds item=tld}
|
||||
<div id="{$tld.name}_area" style="display:none">
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="3" class="body">
|
||||
<tr>
|
||||
<td width="5%">
|
||||
<input type="checkbox" id="{$tld.name}_check" name="{$tld.name}_check" value="checkbox" onClick="domainSwitch('{$tld.name}')">
|
||||
</td>
|
||||
<td width="40%">
|
||||
<div id="{$tld.name}_name"></div>
|
||||
</td>
|
||||
<td width="52%">
|
||||
<div id="{$tld.name}_status"></div>
|
||||
</td>
|
||||
<td width="8%"> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
{/foreach}
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
<div id="available" style="display:none">
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="5" class="row1">
|
||||
<tr>
|
||||
<td width="95%" valign="middle" align="center"> <b> </b>
|
||||
<div id="search" style="display:none"><b> </b></div>
|
||||
<div id="instructions"> <b>
|
||||
{translate module=host_tld}
|
||||
suggest_select
|
||||
{/translate}
|
||||
</b></div>
|
||||
<b><br>
|
||||
<br>
|
||||
<input type="submit" name="Submit" value="{translate module=host_tld}suggest_purchase{/translate}" onClick="cartAdd()">
|
||||
</b> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<div id="unavailable" style="display:none">
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="5" class="row1">
|
||||
<tr>
|
||||
<td width="95%" valign="middle" align="center"> <b> </b>
|
||||
<div id="search" style="display:none"><b> </b></div>
|
||||
<div id="instructions"> <b>
|
||||
{translate module=host_tld}
|
||||
suggest_select
|
||||
{/translate}
|
||||
</b><b><br>
|
||||
<br>
|
||||
</b> </div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<script language="JavaScript">
|
||||
{if $VAR.domain != ""}
|
||||
search();
|
||||
{else}
|
||||
document.domain.domain.focus();
|
||||
{/if}
|
||||
</script>
|
||||
<br>
|
||||
<p><a href="?_page=host_tld:search_transfer"><b>{translate module=host_tld}domain_transfer{/translate}</b></a></p>
|
||||
|
@@ -1,144 +0,0 @@
|
||||
{assign var=meth value=':'|explode:$VAR._page}
|
||||
<!-- {$meth.0}:{$meth.1} -->
|
||||
|
||||
{$method->exe($meth.0,$meth.1)}
|
||||
{if ($method->result == false)}
|
||||
{$block->display('core:method_error')}
|
||||
{else}
|
||||
{include file='file:../core/view_pre.tpl'}
|
||||
|
||||
<!-- Display the field validation -->
|
||||
{if $form_validation}
|
||||
{$block->display('core:alert_fields')}
|
||||
{/if}
|
||||
|
||||
<!-- Display each record -->
|
||||
<form id="view" method="post" action='' enctype="multipart/form-data">
|
||||
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="table_background">
|
||||
<tr>
|
||||
<td>
|
||||
<table width="100%" border="0" cellspacing="1" cellpadding="0">
|
||||
<tr valign="top">
|
||||
<td class="table_heading">{osb f=tt}</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td class="row1">
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top">
|
||||
<td width="50%">{osb f=tf field=status}</td>
|
||||
<td width="50%">{$list->bool('host_tld_status',$record.status,'onChange="submit()')}</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">{osb f=tf field=name}</td>
|
||||
<td width="50%"><input type="text" name="host_tld_name" value="{$record.name}" size="12"/></td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">{osb f=tf field=whois_plugin}</td>
|
||||
<td width="50%">{$list->menu_files('','host_tld_whois_plugin',$record.whois_plugin,'whois_plugin','','.php','form_menu')}</td>
|
||||
</tr>
|
||||
</table>
|
||||
{assign var="ablock" value="host_whois_plugin:plugin_cfg_"}
|
||||
{assign var="afile" value=$record.whois_plugin}
|
||||
{assign var="blockfile" value="$ablock$afile"}
|
||||
{$block->display($blockfile)}
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top">
|
||||
<td width="50%">{osb f=tf field=registrar_plugin_id}</td>
|
||||
<td width="50%">{$list->menu('','host_tld_registrar_plugin_id','host_registrar_plugin','name',$record.registrar_plugin_id,'form_menu')}</td>
|
||||
</tr>
|
||||
|
||||
<tr valign="top">
|
||||
<td width="50%">{osb f=tf field=taxable}</td>
|
||||
<td width="50%">{$list->bool('host_tld_taxable',$record.taxable,'form_menu')}</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">{osb f=tf field=auto_search}</td>
|
||||
<td width="50%">{$list->bool('host_tld_auto_search',$record.auto_search,'form_menu')}</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">{osb f=tf field=default_term_new}</td>
|
||||
<td width="50%">
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<td>
|
||||
<input type="text" name="host_tld_default_term_new" value="{$record.default_term_new}" size="5"/>
|
||||
{$list->unserial($record.price_group,'price')}
|
||||
</td>
|
||||
<td style="text-align: right;"><input type="submit" name="Submit" value="{t}Submit{/t}" class="form_button"/></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="65%" class="row1">
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="table_background">
|
||||
<tr>
|
||||
<td class="table_heading"><b>{t}Offer domain parking for this TLD{/t} {$list->bool('host_tld_price_group[0][show]',$price[0].show,'form_menu')}</b></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
{if ($list->smarty_array('group','name'," AND pricing='1' ",'group_array'))}{/if}
|
||||
<tr valign="top">
|
||||
<td width="65%" class="row1">
|
||||
{foreach from=$group_array item=arr}
|
||||
{assign var="idx" value=$arr.id}
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="2" class="row1">
|
||||
<tr>
|
||||
<td width="30%"><b>{$arr.name}</b></td>
|
||||
<td width="20%"><input type="text" name="host_tld_price_group[0][{$arr.id}][register]" value="{$price[0][$idx].register}" size="5"/>{$list->currency_iso('')}</td>
|
||||
<td width="20%"> </td>
|
||||
<td width="20%"> </td>
|
||||
</tr>
|
||||
</table>
|
||||
{/foreach}
|
||||
</td>
|
||||
</tr>
|
||||
{section name=year start=1 loop=11 step=1}
|
||||
{assign var="year" value=$smarty.section.year.index}
|
||||
<tr valign="top">
|
||||
<td width="65%" class="row1">
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="table_background">
|
||||
<tr>
|
||||
<td class="table_heading"><b>{t}Offer purchase options for this TLD for year{/t}: {$year} {$list->bool("host_tld_price_group[$year][show]",$price[$year].show,'form_menu')}</b></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="65%" class="row1">
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="1" class="row1">
|
||||
<tr>
|
||||
<td width="30%"> </td>
|
||||
<td width="20%">{t}Registrations{/t}</td>
|
||||
<td width="20%">{t}Renewals{/t}</td>
|
||||
<td width="20%">{t}Transfers{/t}</td>
|
||||
</tr>
|
||||
</table>
|
||||
{foreach from=$group_array item=arr}
|
||||
{assign var="idx" value=$arr.id}
|
||||
<table width="100%" border="0" cellspacing="2" cellpadding="1" class="row1">
|
||||
<tr>
|
||||
<td width="30%"><b>{$arr.name}</b></td>
|
||||
<td width="20%"><input type="text" name="host_tld_price_group[{$year}][{$arr.id}][register]" value="{$price[$year][$idx].register}" size="5"/>{$list->currency_iso('')}</td>
|
||||
<td width="20%"><input type="text" name="host_tld_price_group[{$year}][{$arr.id}][renew]" value="{$price[$year][$idx].renew}" size="5"/>{$list->currency_iso('')}</td>
|
||||
<td width="20%"><input type="text" name="host_tld_price_group[{$year}][{$arr.id}][transfer]" value="{$price[$year][$idx].transfer}" size="5"/>{$list->currency_iso('')}</td>
|
||||
</tr>
|
||||
</table>
|
||||
{/foreach}
|
||||
</td>
|
||||
</tr>
|
||||
{/section}
|
||||
{include file='file:../core/view_tr_submit_delete.tpl'}
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
{include file='file:../core/view_post.tpl'}
|
||||
</form>
|
||||
{/if}
|
@@ -1,25 +0,0 @@
|
||||
{$list->unserial($host_tld.whois_plugin_data, "plugin_data")}
|
||||
|
||||
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_whois_plugin}
|
||||
whois_server
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_tld_whois_plugin_data[whois_server]" value="{$plugin_data.whois_server}" size="40">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td width="50%">
|
||||
{translate module=host_whois_plugin}
|
||||
avail_response
|
||||
{/translate}
|
||||
</td>
|
||||
<td width="50%">
|
||||
<input type="text" name="host_tld_whois_plugin_data[avail_response]" value="{$plugin_data.avail_response}" >
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
@@ -1 +0,0 @@
|
||||
<!-- nothing to do -->
|
@@ -1 +0,0 @@
|
||||
<!-- nothing to do -->
|
Reference in New Issue
Block a user