acf_field_output::initialize() public ACF 5.0.0
__construct
This function will setup the field type data
{} Это метод класса: acf_field_output{}
Хуков нет.
Возвращает
n/a.
Использование
$acf_field_output = new acf_field_output(); $acf_field_output->initialize();
- (n/a) (обязательный)
Список изменений
С версии 5.0.0 | Введена. |
Код acf_field_output::initialize() acf field output::initialize ACF 5.9.1
function initialize() {
// vars
$this->name = 'output';
$this->label = 'output';
$this->public = false;
$this->defaults = array(
'html' => false
);
}