✘✘ GRAYBYTE WORDPRESS FILE MANAGER ✘✘

​🇳​​🇦​​🇲​​🇪♯➤ server366.web-hosting.com ​🇻​♯➤ 4.18.0-553.50.1.lve.el8.x86_64 #1 SMP 🇾​♯➤ 2025

𝗛𝗢𝗠𝗘 𝗜𝗗 ♯➤ 67.223.118.204 ♯➤ 𝗔𝗗𝗠𝗜𝗡 𝗜𝗗 216.73.216.243
𝗢𝗣𝗧𝗜𝗢𝗡𝗦 ♯ CRL ♯➤ 𝗢𝗞 ┃ WGT ♯➤ 𝗢𝗞 ┃ SDO ♯➤ 𝗢𝗙𝗙 ┃ PKEX ♯➤ 𝗢𝗙𝗙
𝗗𝗘𝗔𝗖𝗧𝗜𝗩𝗔𝗧𝗘𝗗 ♯➤ 𝗔𝗟𝗟 𝗪𝗢𝗥𝗞𝗜𝗡𝗚....

𝗛𝗢𝗠𝗘
𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /home/builxejc/public_html/wp-content/plugins/woocommerce/src/Utilities//FeaturesUtil.php
<?php
/**
 * FeaturesUtil class file.
 */

namespace Automattic\WooCommerce\Utilities;

use Automattic\WooCommerce\Internal\Features\FeaturesController;

/**
 * Class with methods that allow to retrieve information about the existing WooCommerce features,
 * also has methods for WooCommerce plugins to declare (in)compatibility with the features.
 */
class FeaturesUtil {

	/**
	 * Get all the existing WooCommerce features.
	 *
	 * Returns an associative array where keys are unique feature ids
	 * and values are arrays with these keys:
	 *
	 * - name
	 * - description
	 * - is_experimental
	 * - is_enabled (if $include_enabled_info is passed as true)
	 *
	 * @param bool $include_experimental Include also experimental/work in progress features in the list.
	 * @param bool $include_enabled_info True to include the 'is_enabled' field in the returned features info.
	 * @returns array An array of information about existing features.
	 */
	public static function get_features( bool $include_experimental = false, bool $include_enabled_info = false ): array {
		return wc_get_container()->get( FeaturesController::class )->get_features( $include_experimental, $include_enabled_info );
	}

	/**
	 * Check if a given feature is currently enabled.
	 *
	 * @param  string $feature_id Unique feature id.
	 * @return bool True if the feature is enabled, false if not or if the feature doesn't exist.
	 */
	public static function feature_is_enabled( string $feature_id ): bool {
		$features_controller = wc_get_container()->get( FeaturesController::class );
		$feature             = $features_controller->get_feature_definition( $feature_id );

		// Log deprecation notice for deprecated features (only from the public API).
		if ( ! empty( $feature['deprecated_since'] ) ) {
			self::log_deprecated_feature_usage( $feature_id, $feature['deprecated_since'] );
		}

		return $features_controller->feature_is_enabled( $feature_id );
	}

	/**
	 * Log usage of a deprecated feature.
	 *
	 * This method ensures logging only happens once per request to avoid spam.
	 *
	 * @param string $feature_id       The feature id being checked.
	 * @param string $deprecated_since The version since which the feature is deprecated.
	 */
	private static function log_deprecated_feature_usage( string $feature_id, string $deprecated_since ): void {
		static $logged = array();

		if ( isset( $logged[ $feature_id ] ) ) {
			return;
		}
		$logged[ $feature_id ] = true;

		wc_deprecated_function(
			"FeaturesUtil::feature_is_enabled('{$feature_id}')",
			$deprecated_since
		);
	}

	/**
	 * Declare (in)compatibility with a given feature for a given plugin.
	 *
	 * This method MUST be executed from inside a handler for the 'before_woocommerce_init' hook and
	 * SHOULD be executed from the main plugin file passing __FILE__ or 'my-plugin/my-plugin.php' for the
	 * $plugin_file argument.
	 *
	 * @param string $feature_id Unique feature id.
	 * @param string $plugin_file The full plugin file path.
	 * @param bool   $positive_compatibility True if the plugin declares being compatible with the feature, false if it declares being incompatible.
	 * @return bool True on success, false on error (feature doesn't exist or not inside the required hook).
	 */
	public static function declare_compatibility( string $feature_id, string $plugin_file, bool $positive_compatibility = true ): bool {
		return wc_get_container()->get( FeaturesController::class )->declare_compatibility(
			$feature_id,
			$plugin_file,
			$positive_compatibility
		);
	}

	/**
	 * Get the ids of the features that a certain plugin has declared compatibility for.
	 *
	 * This method can't be called before the 'woocommerce_init' hook is fired.
	 *
	 * @param string $plugin_name Plugin name, in the form 'directory/file.php'.
	 * @return array An array having a 'compatible' and an 'incompatible' key, each holding an array of plugin ids.
	 */
	public static function get_compatible_features_for_plugin( string $plugin_name ): array {
		return wc_get_container()->get( FeaturesController::class )->get_compatible_features_for_plugin( $plugin_name );
	}

	/**
	 * Get the names of the plugins that have been declared compatible or incompatible with a given feature.
	 *
	 * @param string $feature_id Feature id.
	 * @return array An array having a 'compatible' and an 'incompatible' key, each holding an array of plugin names.
	 */
	public static function get_compatible_plugins_for_feature( string $feature_id ): array {
		return wc_get_container()->get( FeaturesController::class )->get_compatible_plugins_for_feature( $feature_id );
	}

	/**
	 * Sets a flag indicating that it's allowed to enable features for which incompatible plugins are active
	 * from the WooCommerce feature settings page.
	 */
	public static function allow_enabling_features_with_incompatible_plugins(): void {
		wc_get_container()->get( FeaturesController::class )->allow_enabling_features_with_incompatible_plugins();
	}

	/**
	 * Sets a flag indicating that it's allowed to activate plugins for which incompatible features are enabled
	 * from the WordPress plugins page.
	 */
	public static function allow_activating_plugins_with_incompatible_features(): void {
		wc_get_container()->get( FeaturesController::class )->allow_activating_plugins_with_incompatible_features();
	}
}


Current_dir [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]


[ Back ]
𝗡𝗔𝗠𝗘
𝗦𝗜𝗭𝗘
𝗟𝗔𝗦𝗧 𝗧𝗢𝗨𝗖𝗛
𝗨𝗦𝗘𝗥
𝗦𝗧𝗔𝗧𝗨𝗦
𝗙𝗨𝗡𝗖𝗧𝗜𝗢𝗡𝗦
..
--
9 Jun 2026 8.39 AM
builxejc / builxejc
0755
ArrayUtil.php
12.987 KB
12 May 2025 9.07 PM
builxejc / builxejc
0644
CallbackUtil.php
4.398 KB
19 Jan 2026 2.46 PM
builxejc / builxejc
0644
DiscountsUtil.php
1.104 KB
30 May 2024 6.23 PM
builxejc / builxejc
0644
FeaturesUtil.php
5.189 KB
26 Jan 2026 10.40 AM
builxejc / builxejc
0644
I18nUtil.php
1.687 KB
22 Feb 2023 7.17 AM
builxejc / builxejc
0644
LoggingUtil.php
3.183 KB
27 Aug 2024 11.04 PM
builxejc / builxejc
0644
MetaDataUtil.php
1.87 KB
5 May 2026 2.26 PM
builxejc / builxejc
0644
NumberUtil.php
7.114 KB
29 Jul 2025 12.34 PM
builxejc / builxejc
0644
OrderUtil.php
9.194 KB
24 Nov 2025 11.10 PM
builxejc / builxejc
0644
PluginUtil.php
12.985 KB
6 Oct 2025 5.56 PM
builxejc / builxejc
0644
RestApiUtil.php
5.01 KB
24 Nov 2025 11.10 PM
builxejc / builxejc
0644
ShippingUtil.php
0.996 KB
12 May 2025 9.07 PM
builxejc / builxejc
0644
StringUtil.php
5.09 KB
4 Jun 2024 3.20 PM
builxejc / builxejc
0644
TimeUtil.php
1.158 KB
30 Jan 2024 11.24 PM
builxejc / builxejc
0644

✘✘ GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME ✘✘
Static GIF Static GIF