acf_field_output::initializepublicACF 5.0.0

__construct

This function will setup the field type data

Method of the class: acf_field_output{}

No Hooks.

Returns

null. Nothing (null).

Usage

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

Changelog

Since 5.0.0 Introduced.

acf_field_output::initialize() code ACF 6.0.4

function initialize() {

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

}