acf_field_repeater::render_field_presentation_settings()publicACF 6.0

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

Метод класса: acf_field_repeater{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$acf_field_repeater = new acf_field_repeater();
$acf_field_repeater->render_field_presentation_settings( $field );
$field(массив) (обязательный)
The field settings array.

Список изменений

С версии 6.0 Введена.

Код acf_field_repeater::render_field_presentation_settings() ACF 6.0.4

function render_field_presentation_settings( $field ) {
	$choices = array();
	if ( $field['collapsed'] ) {
		$sub_field = acf_get_field( $field['collapsed'] );

		if ( $sub_field ) {
			$choices[ $sub_field['key'] ] = $sub_field['label'];
		}
	}

	acf_render_field_setting(
		$field,
		array(
			'label'        => __( 'Collapsed', 'acf' ),
			'instructions' => __( 'Select a sub field to show when row is collapsed', 'acf' ),
			'type'         => 'select',
			'name'         => 'collapsed',
			'allow_null'   => 1,
			'choices'      => $choices,
		)
	);

	acf_render_field_setting(
		$field,
		array(
			'label'        => __( 'Button Label', 'acf' ),
			'instructions' => '',
			'type'         => 'text',
			'name'         => 'button_label',
			'placeholder'  => __( 'Add Row', 'acf' ),
		)
	);
}