File "radio.php"

Full Path: /home/jlklyejr/public_html/post-date/wp-content/plugins/meta-box/inc/fields/radio.php
File size: 270 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
defined( 'ABSPATH' ) || die;

/**
 * The radio field.
 */
class RWMB_Radio_Field extends RWMB_Input_List_Field {
	public static function normalize( $field ) {
		$field['multiple'] = false;
		$field             = parent::normalize( $field );

		return $field;
	}
}