acf_field_color_picker::initialize
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 field color picker::initialize ACF 6.4.2
function initialize() {
// vars
$this->name = 'color_picker';
$this->label = __( 'Color Picker', 'acf' );
$this->category = 'advanced';
$this->description = __( 'An interactive UI for selecting a color, or specifying a Hex value.', 'acf' );
$this->preview_image = acf_get_url() . '/assets/images/field-type-previews/field-preview-color-picker.png';
$this->doc_url = acf_add_url_utm_tags( 'https://www.advancedcustomfields.com/resources/color-picker/', 'docs', 'field-type-selection' );
$this->defaults = array(
'default_value' => '',
'enable_opacity' => false,
'return_format' => 'string', // 'string'|'array'
);
}