WC_Settings_API::validate_checkbox_field()publicWC 1.0

Validate Checkbox Field.

If not set, return "no", otherwise return "yes".

Method of the class: WC_Settings_API{}

No Hooks.

Return

String.

Usage

$WC_Settings_API = new WC_Settings_API();
$WC_Settings_API->validate_checkbox_field( $key, $value );
$key(string) (required)
Field key.
$value(string) (required)
Posted Value.

WC_Settings_API::validate_checkbox_field() code WC 8.7.0

public function validate_checkbox_field( $key, $value ) {
	return ! is_null( $value ) ? 'yes' : 'no';
}