PHP 8.2.31
Preview: ClassicTemplatesCompatibility.php Size: 2.38 KB
/home/nshryvcy/taramarriagebureau.com/wp-content/plugins/woocommerce/src/Blocks/Templates/ClassicTemplatesCompatibility.php

<?php
namespace Automattic\WooCommerce\Blocks\Templates;

use Automattic\WooCommerce\Blocks\Assets\AssetDataRegistry;

/**
 * ClassicTemplatesCompatibility class.
 *
 * To bridge the gap on compatibility with widget blocks and classic PHP core templates.
 *
 * @internal
 */
class ClassicTemplatesCompatibility {

	/**
	 * Instance of the asset data registry.
	 *
	 * @var AssetDataRegistry
	 */
	protected $asset_data_registry;

	/**
	 * Constructor.
	 *
	 * @param AssetDataRegistry $asset_data_registry Instance of the asset data registry.
	 */
	public function __construct( AssetDataRegistry $asset_data_registry ) {
		$this->asset_data_registry = $asset_data_registry;
		$this->init();
	}

	/**
	 * Initialization method.
	 */
	protected function init() { // phpcs:ignore WooCommerce.Functions.InternalInjectionMethod.MissingPublic
		if ( ! wc_current_theme_is_fse_theme() ) {
			add_action( 'template_redirect', array( $this, 'set_classic_template_data' ) );
			// We need to set this data on the widgets screen so the filters render previews.
			add_action( 'load-widgets.php', array( $this, 'set_filterable_product_data' ) );
		}
	}

	/**
	 * Executes the methods which set the necessary data needed for filter blocks to work correctly as widgets in Classic templates.
	 *
	 * @return void
	 */
	public function set_classic_template_data() {
		$this->set_filterable_product_data();
		$this->set_php_template_data();
	}

	/**
	 * This method passes the value `has_filterable_products` to the front-end for product archive pages,
	 * so that widget product filter blocks are aware of the context they are in and can render accordingly.
	 *
	 * @return void
	 */
	public function set_filterable_product_data() {
		global $pagenow;

		if ( is_shop() || is_product_taxonomy() || 'widgets.php' === $pagenow ) {
			$this->asset_data_registry->add( 'hasFilterableProducts', true );
		}
	}

	/**
	 * This method passes the value `is_rendering_php_template` to the front-end of Classic themes,
	 * so that widget product filter blocks are aware of how to filter the products.
	 *
	 * This data only matters on WooCommerce product archive pages.
	 * On non-archive pages the merchant could be using the All Products block which is not a PHP template.
	 *
	 * @return void
	 */
	public function set_php_template_data() {
		if ( is_shop() || is_product_taxonomy() ) {
			$this->asset_data_registry->add( 'isRenderingPhpTemplate', true );
		}
	}
}

Directory Contents

Dirs: 0 × Files: 24

Name Size Perms Modified Actions
1.81 KB lrw-r--r-- 2026-03-03 06:25:16
Edit Download
596 B lrw-r--r-- 2026-03-03 06:25:16
Edit Download
5.76 KB lrw-r--r-- 2026-03-03 06:25:16
Edit Download
332 B lrw-r--r-- 2026-03-03 06:25:16
Edit Download
12.43 KB lrw-r--r-- 2026-03-03 06:25:16
Edit Download
2.38 KB lrw-r--r-- 2026-03-03 06:25:16
Edit Download
863 B lrw-r--r-- 2026-03-03 06:25:16
Edit Download
2.42 KB lrw-r--r-- 2026-03-03 06:25:16
Edit Download
2.38 KB lrw-r--r-- 2026-03-03 06:25:16
Edit Download
1.11 KB lrw-r--r-- 2026-03-03 06:25:16
Edit Download
2.59 KB lrw-r--r-- 2026-03-03 06:25:16
Edit Download
1.00 KB lrw-r--r-- 2026-03-03 06:25:16
Edit Download
1022 B lrw-r--r-- 2026-03-03 06:25:16
Edit Download
1.67 KB lrw-r--r-- 2026-03-03 06:25:16
Edit Download
1.58 KB lrw-r--r-- 2026-03-03 06:25:16
Edit Download
2.47 KB lrw-r--r-- 2026-03-03 06:25:16
Edit Download
2.35 KB lrw-r--r-- 2026-03-03 06:25:16
Edit Download
1.74 KB lrw-r--r-- 2026-03-03 06:25:16
Edit Download
2.12 KB lrw-r--r-- 2026-03-03 06:25:16
Edit Download
1.72 KB lrw-r--r-- 2026-03-03 06:25:16
Edit Download
1017 B lrw-r--r-- 2026-03-03 06:25:16
Edit Download
8.26 KB lrw-r--r-- 2026-03-03 06:25:16
Edit Download
14.64 KB lrw-r--r-- 2026-03-03 06:25:16
Edit Download
1.00 KB lrw-r--r-- 2026-03-03 06:25:16
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).