✘✘ GRAYBYTE WORDPRESS FILE MANAGER ✘✘

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

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

𝗛𝗢𝗠𝗘
𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /home/tdhomesa/public_html/wp-content/plugins/woocommerce/src/Blocks//Package.php
<?php

namespace Automattic\WooCommerce\Blocks;

use Automattic\WooCommerce\Blocks\Domain\Package as NewPackage;
use Automattic\WooCommerce\Blocks\Domain\Bootstrap;
use Automattic\WooCommerce\Blocks\Registry\Container;
use Automattic\WooCommerce\Blocks\Domain\Services\FeatureGating;

/**
 * Main package class.
 *
 * Returns information about the package and handles init.
 *
 * In the context of this plugin, it handles init and is called from the main
 * plugin file (woocommerce-gutenberg-products-block.php).
 *
 * In the context of WooCommerce core, it handles init and is called from
 * WooCommerce's package loader. The main plugin file is _not_ loaded.
 *
 * @since 2.5.0
 */
class Package {


	/**
	 * For back compat this is provided. Ideally, you should register your
	 * class with Automattic\Woocommerce\Blocks\Container and make Package a
	 * dependency.
	 *
	 * @since 2.5.0
	 * @return Package  The Package instance class
	 */
	protected static function get_package() {
		return self::container()->get( NewPackage::class );
	}

	/**
	 * Init the package - load the blocks library and define constants.
	 *
	 * @since 2.5.0 Handled by new NewPackage.
	 */
	public static function init() {
		self::container()->get( Bootstrap::class );
	}

	/**
	 * Return the version of the package.
	 *
	 * @return string
	 */
	public static function get_version() {
		return self::get_package()->get_version();
	}

	/**
	 * Return the path to the package.
	 *
	 * @return string
	 */
	public static function get_path() {
		return self::get_package()->get_path();
	}

	/**
	 * Returns an instance of the FeatureGating class.
	 *
	 * @return FeatureGating
	 * @deprecated since 9.6, use wp_get_environment_type() instead.
	 */
	public static function feature() {
		wc_deprecated_function( 'Package::feature', '9.6', 'wp_get_environment_type' );
		return new FeatureGating();
	}

	/**
	 * Loads the dependency injection container for woocommerce blocks.
	 *
	 * @param boolean $reset Used to reset the container to a fresh instance.
	 *                       Note: this means all dependencies will be
	 *                       reconstructed.
	 */
	public static function container( $reset = false ) {
		static $container;
		if (
			! $container instanceof Container
			|| $reset
		) {
			$container = new Container();
			// register Package.
			$container->register(
				NewPackage::class,
				function ( $container ) {
					// leave for automated version bumping.
					$version = '11.8.0-dev';
					return new NewPackage(
						$version,
						dirname( __DIR__, 2 )
					);
				}
			);
			// register Bootstrap.
			$container->register(
				Bootstrap::class,
				function ( $container ) {
					return new Bootstrap(
						$container
					);
				}
			);
		}
		return $container;
	}
}


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


[ Back ]
𝗡𝗔𝗠𝗘
𝗦𝗜𝗭𝗘
𝗟𝗔𝗦𝗧 𝗧𝗢𝗨𝗖𝗛
𝗨𝗦𝗘𝗥
𝗦𝗧𝗔𝗧𝗨𝗦
𝗙𝗨𝗡𝗖𝗧𝗜𝗢𝗡𝗦
..
--
28 May 2026 10.38 AM
tdhomesa / tdhomesa
0755
AI
--
28 May 2026 10.38 AM
tdhomesa / tdhomesa
0755
AIContent
--
28 May 2026 10.38 AM
tdhomesa / tdhomesa
0755
Assets
--
28 May 2026 10.38 AM
tdhomesa / tdhomesa
0755
BlockTypes
--
28 May 2026 10.38 AM
tdhomesa / tdhomesa
0755
Domain
--
28 May 2026 10.38 AM
tdhomesa / tdhomesa
0755
Images
--
28 May 2026 10.38 AM
tdhomesa / tdhomesa
0755
Integrations
--
28 May 2026 10.38 AM
tdhomesa / tdhomesa
0755
Patterns
--
28 May 2026 10.38 AM
tdhomesa / tdhomesa
0755
Payments
--
28 May 2026 10.38 AM
tdhomesa / tdhomesa
0755
Registry
--
28 May 2026 10.38 AM
tdhomesa / tdhomesa
0755
SharedStores
--
28 May 2026 10.38 AM
tdhomesa / tdhomesa
0755
Shipping
--
28 May 2026 10.38 AM
tdhomesa / tdhomesa
0755
Templates
--
28 May 2026 10.38 AM
tdhomesa / tdhomesa
0755
Utils
--
28 May 2026 10.38 AM
tdhomesa / tdhomesa
0755
Assets.php
2.772 KB
27 Dec 2023 12.45 AM
tdhomesa / tdhomesa
0644
AssetsController.php
19.673 KB
19 Jan 2026 2.46 PM
tdhomesa / tdhomesa
0644
BlockPatterns.php
7.919 KB
24 Nov 2025 11.10 PM
tdhomesa / tdhomesa
0644
BlockTemplatesController.php
17.979 KB
24 Nov 2025 11.10 PM
tdhomesa / tdhomesa
0644
BlockTemplatesRegistry.php
6.297 KB
1 Sep 2025 11.44 PM
tdhomesa / tdhomesa
0644
BlockTypesController.php
25.031 KB
23 Feb 2026 5.58 PM
tdhomesa / tdhomesa
0644
DependencyDetection.php
10.659 KB
19 Jan 2026 2.46 PM
tdhomesa / tdhomesa
0644
InboxNotifications.php
0.569 KB
27 Dec 2023 12.45 AM
tdhomesa / tdhomesa
0644
Installer.php
4.131 KB
5 May 2026 2.26 PM
tdhomesa / tdhomesa
0644
Library.php
1.061 KB
27 Dec 2023 12.45 AM
tdhomesa / tdhomesa
0644
Options.php
0.328 KB
27 Dec 2023 12.45 AM
tdhomesa / tdhomesa
0644
Package.php
2.717 KB
12 May 2025 9.07 PM
tdhomesa / tdhomesa
0644
QueryFilters.php
17.8 KB
24 Nov 2025 11.10 PM
tdhomesa / tdhomesa
0644
TemplateOptions.php
1.206 KB
12 May 2025 9.07 PM
tdhomesa / tdhomesa
0644

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