Implement PLESK, SSL Services

This commit is contained in:
Deon George
2011-12-17 10:31:35 +11:00
parent cb18209369
commit c8fd44f844
29 changed files with 1038 additions and 438 deletions

View File

@@ -0,0 +1,37 @@
<table border="1">
<tr>
<td>Account</td>
<td><?php echo Form::input('account_id',''); ?></td>
</tr>
<tr>
<td>Service</td>
<td><?php echo Form::select('service_id',array('NONE')); ?></td>
</tr>
<tr>
<td>Sweep</td>
<td><?php echo StaticList_SweepType::form('sweep_type',6); ?></td>
</tr>
<tr>
<td>Quantity</td>
<td><?php echo Form::input('quantity',NULL); ?></td>
</tr>
<tr>
<td>Amount</td>
<td><?php echo Form::input('amount',NULL); ?></td>
</tr>
<tr>
<td>Taxable</td>
<td><?php echo StaticList_YesNo::form('taxable',true); ?></td>
</tr>
<tr>
<td>Description</td>
<td><?php echo Form::input('description',NULL); ?></td>
</tr>
<!-- @todo This to be dynamic -->
<?php for($x=0;$x<10;$x++) { ?>
<tr>
<td>Attributes</td>
<td><?php echo Form::input('attributes['.$x.']',NULL); ?></td>
</tr>
<?php } ?>
</table>