row() 공개 정적인 메소드

Output a row (label, field, and comment)
부터: 2.0
public static row ( string $name, mixed $value, string $type = 'text', array $options = null, array $pod = null, integer $id = null ) : string
$name string Field name
$value mixed Field value
$type string Field type
$options array Field options
$pod array Pod data
$id integer Item ID
리턴 string Row HTML
        } else {
            $value = pods_var_raw($field_name, $field, $value);
        }
        if (in_array($field_option['type'], PodsForm::file_field_types())) {
            if (is_array($value) && !isset($value['id'])) {
                foreach ($value as $k => $v) {
                    if (isset($v['id'])) {
                        $value[$k] = $v['id'];
                    }
                }
            }
        }
        ?>
        <div class="pods-field-option">
            <?php 
        echo PodsForm::row($row_name, $value, $field_option['type'], $field_option);
        ?>
        </div>
        <?php 
    } else {
        ?>
        <div class="pods-field-option-group">
            <p class="pods-field-option-group-label">
                <?php 
        echo $field_option['label'];
        ?>
            </p>

            <div class="pods-pick-values pods-pick-checkbox">
                <ul>
                    <?php