Automattic\WooCommerce\Internal\Admin\BlockTemplates

AbstractBlock::get_disable_conditions()publicWC 1.0

Get the disable conditions of the block.

Method of the class: AbstractBlock{}

No Hooks.

Return

null. Nothing (null).

Usage

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

AbstractBlock::get_disable_conditions() code WC 9.3.3

public function get_disable_conditions(): array {
	return $this->disable_conditions;
}