Automattic\WooCommerce\Internal\Admin\ProductForm
Component::get_json
Get the component as JSON.
Метод класса: Component{}
Хуков нет.
Возвращает
Массив.
Использование
$Component = new Component(); $Component->get_json();
Код Component::get_json() Component::get json WC 10.6.2
public function get_json() {
return array_merge(
array(
'id' => $this->get_id(),
'plugin_id' => $this->get_plugin_id(),
),
$this->get_additional_args()
);
}