Automattic\WooCommerce\Internal\Admin\ProductForm
Component::get_json
Get the component as JSON.
Method of the class: Component{}
No Hooks.
Returns
Array.
Usage
$Component = new Component(); $Component->get_json();
Component::get_json() Component::get json code WC 10.8.1
public function get_json() {
return array_merge(
array(
'id' => $this->get_id(),
'plugin_id' => $this->get_plugin_id(),
),
$this->get_additional_args()
);
}