Automattic\WooCommerce\Blocks\BlockTypes
AbstractBlock::get_full_block_name
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() AbstractBlock::get full block name code WC 11.0.1
protected function get_full_block_name() {
return $this->namespace . '/' . $this->block_name;
}