Automattic\WooCommerce\Blocks\BlockTypes

ProductGalleryLargeImage::get_open_dialog_directives()privateWC 1.0

Get directives for opening the dialog.

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

Хуков нет.

Возвращает

Массив.

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

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

Код ProductGalleryLargeImage::get_open_dialog_directives() WC 9.4.2

private function get_open_dialog_directives( $block_context ) {
	if ( ! $block_context['fullScreenOnClick'] ) {
		return array();
	}

	return array(
		'data-wc-on--click' => 'actions.openDialog',
	);
}