acf_field_radio::get_rest_schema
Return the schema array for the REST API.
Метод класса: acf_field_radio{}
Хуков нет.
Возвращает
Массив.
Использование
$acf_field_radio = new acf_field_radio(); $acf_field_radio->get_rest_schema( $field );
- $field(массив) (обязательный)
- .
Код acf_field_radio::get_rest_schema() acf field radio::get rest schema ACF 6.4.2
function get_rest_schema( array $field ) {
$schema = parent::get_rest_schema( $field );
if ( isset( $field['default_value'] ) && '' !== $field['default_value'] ) {
$schema['default'] = $field['default_value'];
}
// If other/custom choices are allowed, nothing else to do here.
if ( ! empty( $field['other_choice'] ) ) {
return $schema;
}
$schema['enum'] = acf_get_field_type( 'select' )->format_rest_choices( $field['choices'] );
if ( ! empty( $field['allow_null'] ) ) {
$schema['enum'][] = null;
}
return $schema;
}