Automattic\WooCommerce\Blocks\BlockTypes

ProductGalleryLargeImage::get_directives()privateWC 1.0

Get directives for the block.

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

Хуков нет.

Возвращает

Массив.

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

// private - только в коде основоного (родительского) класса
$result = $this->get_directives( $block_context );
$block_context(массив) (обязательный)
The block context.

Код ProductGalleryLargeImage::get_directives() WC 9.4.2

private function get_directives( $block_context ) {
	return array_merge(
		$this->get_zoom_directives( $block_context ),
		$this->get_open_dialog_directives( $block_context )
	);
}