Automattic\WooCommerce\Blocks\BlockTypes

AbstractBlock::get_full_block_nameprotectedWC 1.0

Get the full block name, including namespace.

Method of the class: AbstractBlock{}

No Hooks.

Returns

String.

Usage

// protected - for code of main (parent) or child class
$result = $this->get_full_block_name();

AbstractBlock::get_full_block_name() code WC 11.0.1

protected function get_full_block_name() {
	return $this->namespace . '/' . $this->block_name;
}