Automattic\WooCommerce\Internal\Admin\BlockTemplates

AbstractBlock::get_formatted_template()publicWC 1.0

Get the block configuration as a formatted template.

Метод класса: AbstractBlock{}

Хуков нет.

Возвращает

Массив. The block configuration as a formatted template.

Использование

$AbstractBlock = new AbstractBlock();
$AbstractBlock->get_formatted_template(): array;

Код AbstractBlock::get_formatted_template() WC 8.1.1

public function get_formatted_template(): array {
	$arr = [
		$this->get_name(),
		$this->get_attributes(),
	];

	return $arr;
}