acf_field_checkbox::initialize()
__construct
This function will setup the field type data
Метод класса: acf_field_checkbox{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$acf_field_checkbox = new acf_field_checkbox(); $acf_field_checkbox->initialize();
Список изменений
С версии 5.0.0 | Введена. |
Код acf_field_checkbox::initialize() acf field checkbox::initialize ACF 6.0.4
function initialize() { // vars $this->name = 'checkbox'; $this->label = __( 'Checkbox', 'acf' ); $this->category = 'choice'; $this->defaults = array( 'layout' => 'vertical', 'choices' => array(), 'default_value' => '', 'allow_custom' => 0, 'save_custom' => 0, 'toggle' => 0, 'return_format' => 'value', ); }