acf_field_file::render_field_settings()publicACF 3.6

Create extra options for your field. This is rendered when editing a field. The value of $field['name'] can be used (like bellow) to save extra data to the $field

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

Хуков нет.

Возвращает

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

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

$acf_field_file = new acf_field_file();
$acf_field_file->render_field_settings( $field );
$field (обязательный)
-

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

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

Код acf_field_file::render_field_settings() ACF 6.0.4

function render_field_settings( $field ) {
	acf_render_field_setting(
		$field,
		array(
			'label'        => __( 'Return Value', 'acf' ),
			'instructions' => __( 'Specify the returned value on front end', 'acf' ),
			'type'         => 'radio',
			'name'         => 'return_format',
			'layout'       => 'horizontal',
			'choices'      => array(
				'array' => __( 'File Array', 'acf' ),
				'url'   => __( 'File URL', 'acf' ),
				'id'    => __( 'File ID', 'acf' ),
			),
		)
	);

	acf_render_field_setting(
		$field,
		array(
			'label'        => __( 'Library', 'acf' ),
			'instructions' => __( 'Limit the media library choice', 'acf' ),
			'type'         => 'radio',
			'name'         => 'library',
			'layout'       => 'horizontal',
			'choices'      => array(
				'all'        => __( 'All', 'acf' ),
				'uploadedTo' => __( 'Uploaded to post', 'acf' ),
			),
		)
	);
}