acf_field_output::initialize()publicACF 5.0.0

__construct

This function will setup the field type data

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

Хуков нет.

Возвращает

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

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

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

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

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

Код acf_field_output::initialize() ACF 6.0.4

function initialize() {

	// vars
	$this->name     = 'output';
	$this->label    = 'output';
	$this->public   = false;
	$this->defaults = array(
		'html' => false,
	);

}