This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
khosb/themes/default/blocks/host_provision_plugin/plugin_cfg_WHM.tpl
2011-05-03 09:49:01 +10:00

30 lines
1.4 KiB
Smarty

{$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>