acf_field_checkbox::render_field_presentation_settingspublicACF 6.0

Renders the field settings used in the "Presentation" tab.

Method of the class: acf_field_checkbox{}

No Hooks.

Returns

null. Nothing (null).

Usage

$acf_field_checkbox = new acf_field_checkbox();
$acf_field_checkbox->render_field_presentation_settings( $field );
$field(array) (required)
The field settings array.

Changelog

Since 6.0 Introduced.

acf_field_checkbox::render_field_presentation_settings() code ACF 6.0.4

function render_field_presentation_settings( $field ) {
	acf_render_field_setting(
		$field,
		array(
			'label'        => __( 'Layout', 'acf' ),
			'instructions' => '',
			'type'         => 'radio',
			'name'         => 'layout',
			'layout'       => 'horizontal',
			'choices'      => array(
				'vertical'   => __( 'Vertical', 'acf' ),
				'horizontal' => __( 'Horizontal', 'acf' ),
			),
		)
	);

	acf_render_field_setting(
		$field,
		array(
			'label'        => __( 'Add Toggle All', 'acf' ),
			'instructions' => __( 'Prepend an extra checkbox to toggle all choices', 'acf' ),
			'name'         => 'toggle',
			'type'         => 'true_false',
			'ui'           => 1,
		)
	);
}