ACF_Admin_Tool_Export::html_panel_settings() public ACF 5.6.3
description
{} Это метод класса: ACF_Admin_Tool_Export{}
Хуков нет.
Возвращает
n/a.
Использование
$ACF_Admin_Tool_Export = new ACF_Admin_Tool_Export(); $ACF_Admin_Tool_Export->html_panel_settings();
- (n/a) (обязательный)
Список изменений
С версии 5.6.3 | Введена. |
Код ACF_Admin_Tool_Export::html_panel_settings() ACF Admin Tool Export::html panel settings ACF 5.9.1
function html_panel_settings() {
?>
<div class="acf-panel acf-panel-settings">
<h3 class="acf-panel-title"><?php _e('Settings', 'acf') ?> <i class="dashicons dashicons-arrow-right"></i></h3>
<div class="acf-panel-inside">
<?php
/*
acf_render_field_wrap(array(
'label' => __('Empty settings', 'acf'),
'type' => 'select',
'name' => 'minimal',
'prefix' => false,
'value' => '',
'choices' => array(
'all' => __('Include all settings', 'acf'),
'minimal' => __('Ignore empty settings', 'acf'),
)
));
*/
?>
</div>
</div>
<?php
}