예제 #1
0
 function table_row($row, $options = NULL)
 {
     if ($options === NULL) {
         $options = $this->formdata;
     }
     return scbForms::table_row($row, $options);
 }
예제 #2
0
<?php

foreach ($fields as $key => $section) {
    ?>

	<div class="large-12 columns">
		<div class="escrow-fields">
			<?php 
    if (!empty($section['title'])) {
        ?>
				<h3><?php 
        echo $section['title'];
        ?>
</h3>
			<?php 
    }
    ?>

			<?php 
    $output = '';
    foreach ($section['fields'] as $field) {
        $output .= scbForms::table_row($field, $formdata);
    }
    echo html("table class='form-table escrow-gateway-fields' width='100%'", $output);
    ?>
		</div>
	</div>

<?php 
}