';
foreach ( $options as $value => $option ) {
$selected_attr = '';
if ( $selected === $value ) {
$selected_attr = 'checked';
}
if ( isset( $option['width'] ) ) {
$width = $option['width'];
}
$pro_option = isset( $option['is_pro'] ) && $option['is_pro'];
$classes = array(
'wpconsent-image-radio-label',
);
$disabled = '';
$data_attr = array();
if ( $pro_option ) {
$classes[] = 'wpconsent-image-radio-label-pro wpconsent-pro-notice';
$data_attr['pro_title'] = $option['pro_title'];
$data_attr['pro_description'] = $option['pro_description'];
$data_attr['pro_link'] = $option['pro_link'];
$disabled = 'disabled';
}
$width_attr = $width ? 'width="' . absint( $width ) . '"' : '';
$html .= '';
$html .= '';
}
$html .= '';
return $html;
}
}