field-radio.php 602 Bytes
Newer Older
1
<?php
Varun Sridharan's avatar
Varun Sridharan committed
2 3 4 5 6 7 8
/**
 * HTML Radio Field Template
 *
 * @author  Varun Sridharan
 * @package WooCommerce Quick Donation/Templates/fields
 * @version 0.1
 */
9 10 11 12 13 14 15 16 17 18 19 20 21 22

foreach($project_list as $id => $val){
    
    if(is_array($val)){
        $field_output .= ' <fieldset>     <legend>'.$id.'</legend>';
        foreach($val as $k =>$v){
            $field_output .= $v.' : <input type="radio" name="'.$name.'" value="'.$k.'" >';
        }   
        $field_output .= '</fieldset>';
    } else {
        $field_output .= $val.' : <input type="radio" name="'.$name.'" value="'.$id.'" >';
    }
    
}
Varun Sridharan's avatar
Varun Sridharan committed
23 24
echo $field_output;
?>