Automattic\WooCommerce\Blocks\BlockTypes

AbstractDynamicBlock::get_schema_boolean()protectedWC 1.0

Get the schema for a boolean value.

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

Хуков нет.

Возвращает

Массив. Property definition.

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

// protected - в коде основоного (родительского) или дочернего класса
$result = $this->get_schema_boolean( $default );
$default(строка)
The default value.
По умолчанию: true

Код AbstractDynamicBlock::get_schema_boolean() WC 8.7.0

protected function get_schema_boolean( $default = true ) {
	return array(
		'type'    => 'boolean',
		'default' => $default,
	);
}