acf_field_color_picker::initialize()publicACF 5.0.0

__construct

This function will setup the field type data

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

Хуков нет.

Возвращает

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

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

$acf_field_color_picker = new acf_field_color_picker();
$acf_field_color_picker->initialize();

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

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

Код acf_field_color_picker::initialize() ACF 6.0.4

function initialize() {

	// vars
	$this->name     = 'color_picker';
	$this->label    = __( 'Color Picker', 'acf' );
	$this->category = 'jquery';
	$this->defaults = array(
		'default_value'  => '',
		'enable_opacity' => false,
		'return_format'  => 'string', // 'string'|'array'
	);

}