GRAYBYTE WORDPRESS FILE MANAGER9070

Server IP : 198.54.121.189 / Your IP : 216.73.216.112
System : Linux premium69.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
PHP Version : 7.4.33
Disable Function : NONE
cURL : ON | WGET : ON | Sudo : OFF | Pkexec : OFF
Directory : /home/giriqfky/nioscentre.in/wp-content/plugins/woocommerce/src/Blocks/BlockTypes/
Upload Files :
Current_dir [ Writeable ] Document_root [ Writeable ]

Command :


Current File : /home/giriqfky/nioscentre.in/wp-content/plugins/woocommerce/src/Blocks/BlockTypes//Cart.php
<?php
namespace Automattic\WooCommerce\Blocks\BlockTypes;

use Automattic\WooCommerce\Blocks\Utils\CartCheckoutUtils;
use Automattic\WooCommerce\StoreApi\Utilities\LocalPickupUtils;

/**
 * Cart class.
 *
 * @internal
 */
class Cart extends AbstractBlock {
	/**
	 * Block name.
	 *
	 * @var string
	 */
	protected $block_name = 'cart';

	/**
	 * Chunks build folder.
	 *
	 * @var string
	 */
	protected $chunks_folder = 'cart-blocks';

	/**
	 * Initialize this block type.
	 *
	 * - Hook into WP lifecycle.
	 * - Register the block with WordPress.
	 */
	protected function initialize() {
		parent::initialize();
		add_action( 'wp_loaded', array( $this, 'register_patterns' ) );
	}

	/**
	 * Dequeues the scripts added by WC Core to the Cart page.
	 *
	 * @return void
	 */
	public function dequeue_woocommerce_core_scripts() {
		wp_dequeue_script( 'wc-cart' );
		wp_dequeue_script( 'wc-password-strength-meter' );
		wp_dequeue_script( 'selectWoo' );
		wp_dequeue_style( 'select2' );
	}

	/**
	 * Register block pattern for Empty Cart Message to make it translatable.
	 */
	public function register_patterns() {
		$shop_permalink = wc_get_page_id( 'shop' ) ? get_permalink( wc_get_page_id( 'shop' ) ) : '';

		register_block_pattern(
			'woocommerce/cart-heading',
			array(
				'title'    => '',
				'inserter' => false,
				'content'  => '<!-- wp:heading {"align":"wide", "level":1} --><h1 class="wp-block-heading alignwide">' . esc_html__( 'Cart', 'woocommerce' ) . '</h1><!-- /wp:heading -->',
			)
		);
		register_block_pattern(
			'woocommerce/cart-cross-sells-message',
			array(
				'title'    => '',
				'inserter' => false,
				'content'  => '<!-- wp:heading {"fontSize":"large"} --><h2 class="wp-block-heading has-large-font-size">' . esc_html__( 'You may be interested in…', 'woocommerce' ) . '</h2><!-- /wp:heading -->',
			)
		);
		register_block_pattern(
			'woocommerce/cart-empty-message',
			array(
				'title'    => '',
				'inserter' => false,
				'content'  => '
					<!-- wp:heading {"textAlign":"center","className":"with-empty-cart-icon wc-block-cart__empty-cart__title"} --><h2 class="wp-block-heading has-text-align-center with-empty-cart-icon wc-block-cart__empty-cart__title">' . esc_html__( 'Your cart is currently empty!', 'woocommerce' ) . '</h2><!-- /wp:heading -->
					<!-- wp:paragraph {"align":"center"} --><p class="has-text-align-center"><a href="' . esc_attr( esc_url( $shop_permalink ) ) . '">' . esc_html__( 'Browse store', 'woocommerce' ) . '</a></p><!-- /wp:paragraph -->
				',
			)
		);
		register_block_pattern(
			'woocommerce/cart-new-in-store-message',
			array(
				'title'    => '',
				'inserter' => false,
				'content'  => '<!-- wp:heading {"textAlign":"center"} --><h2 class="wp-block-heading has-text-align-center">' . esc_html__( 'New in store', 'woocommerce' ) . '</h2><!-- /wp:heading -->',
			)
		);
	}

	/**
	 * Get the editor script handle for this block type.
	 *
	 * @param string $key Data to get, or default to everything.
	 * @return array|string;
	 */
	protected function get_block_type_editor_script( $key = null ) {
		$script = [
			'handle'       => 'wc-' . $this->block_name . '-block',
			'path'         => $this->asset_api->get_block_asset_build_path( $this->block_name ),
			'dependencies' => [ 'wc-blocks' ],
		];
		return $key ? $script[ $key ] : $script;
	}

	/**
	 * Get the frontend script handle for this block type.
	 *
	 * @see $this->register_block_type()
	 * @param string $key Data to get, or default to everything.
	 * @return array|string
	 */
	protected function get_block_type_script( $key = null ) {
		$script = [
			'handle'       => 'wc-' . $this->block_name . '-block-frontend',
			'path'         => $this->asset_api->get_block_asset_build_path( $this->block_name . '-frontend' ),
			'dependencies' => [],
		];
		return $key ? $script[ $key ] : $script;
	}

	/**
	 * Get the frontend style handle for this block type.
	 *
	 * @return string[]
	 */
	protected function get_block_type_style() {
		return array_merge( parent::get_block_type_style(), [ 'wc-blocks-packages-style' ] );
	}

	/**
	 * Enqueue frontend assets for this block, just in time for rendering.
	 *
	 * @param array    $attributes  Any attributes that currently are available from the block.
	 * @param string   $content    The block content.
	 * @param WP_Block $block    The block object.
	 */
	protected function enqueue_assets( array $attributes, $content, $block ) {
		/**
		 * Fires before cart block scripts are enqueued.
		 *
		 * @since 2.6.0
		 */
		do_action( 'woocommerce_blocks_enqueue_cart_block_scripts_before' );
		parent::enqueue_assets( $attributes, $content, $block );
		/**
		 * Fires after cart block scripts are enqueued.
		 *
		 * @since 2.6.0
		 */
		do_action( 'woocommerce_blocks_enqueue_cart_block_scripts_after' );
	}

	/**
	 * Append frontend scripts when rendering the Cart block.
	 *
	 * @param array    $attributes Block attributes.
	 * @param string   $content    Block content.
	 * @param WP_Block $block      Block instance.
	 * @return string Rendered block type output.
	 */
	protected function render( $attributes, $content, $block ) {
		// Dequeue the core scripts when rendering this block.
		add_action( 'wp_enqueue_scripts', array( $this, 'dequeue_woocommerce_core_scripts' ), 20 );

		/**
		 * We need to check if $content has any templates from prior iterations of the block, in order to update to the latest iteration.
		 * We test the iteration version by searching for new blocks brought in by it.
		 * The blocks used for testing should be always available in the block (not removable by the user).
		 */

		$regex_for_filled_cart_block = '/<div[^<]*?data-block-name="woocommerce\/filled-cart-block"[^>]*?>/mi';
		// Filled Cart block was added in i2, so we search for it to see if we have a Cart i1 template.
		$has_i1_template = ! preg_match( $regex_for_filled_cart_block, $content );

		if ( $has_i1_template ) {
			/**
			 * This fallback structure needs to match the defaultTemplate variables defined in the block's edit.tsx files,
			 * starting from the parent block and going down each inner block, in the order the blocks were registered.
			 */
			$inner_blocks_html = '$0
			<div data-block-name="woocommerce/filled-cart-block" class="wp-block-woocommerce-filled-cart-block">
				<div data-block-name="woocommerce/cart-items-block" class="wp-block-woocommerce-cart-items-block">
					<div data-block-name="woocommerce/cart-line-items-block" class="wp-block-woocommerce-cart-line-items-block"></div>
				</div>
				<div data-block-name="woocommerce/cart-totals-block" class="wp-block-woocommerce-cart-totals-block">
					<div data-block-name="woocommerce/cart-order-summary-block" class="wp-block-woocommerce-cart-order-summary-block"></div>
					<div data-block-name="woocommerce/cart-express-payment-block" class="wp-block-woocommerce-cart-express-payment-block"></div>
					<div data-block-name="woocommerce/proceed-to-checkout-block" class="wp-block-woocommerce-proceed-to-checkout-block"></div>
					<div data-block-name="woocommerce/cart-accepted-payment-methods-block" class="wp-block-woocommerce-cart-accepted-payment-methods-block"></div>
				</div>
			</div>
			<div data-block-name="woocommerce/empty-cart-block" class="wp-block-woocommerce-empty-cart-block">
			';

			$content = preg_replace( '/<div class="[a-zA-Z0-9_\- ]*wp-block-woocommerce-cart[a-zA-Z0-9_\- ]*">/mi', $inner_blocks_html, $content );
			$content = $content . '</div>';
		}

		/**
		 * Cart i3 added inner blocks for Order summary. We need to add them to Cart i2 templates.
		 * The order needs to match the order in which these blocks were registered.
		 */
		$order_summary_with_inner_blocks = '$0
			<div data-block-name="woocommerce/cart-order-summary-heading-block" class="wp-block-woocommerce-cart-order-summary-heading-block"></div>
			<div data-block-name="woocommerce/cart-order-summary-subtotal-block" class="wp-block-woocommerce-cart-order-summary-subtotal-block"></div>
			<div data-block-name="woocommerce/cart-order-summary-fee-block" class="wp-block-woocommerce-cart-order-summary-fee-block"></div>
			<div data-block-name="woocommerce/cart-order-summary-discount-block" class="wp-block-woocommerce-cart-order-summary-discount-block"></div>
			<div data-block-name="woocommerce/cart-order-summary-coupon-form-block" class="wp-block-woocommerce-cart-order-summary-coupon-form-block"></div>
			<div data-block-name="woocommerce/cart-order-summary-shipping-form-block" class="wp-block-woocommerce-cart-order-summary-shipping-block"></div>
			<div data-block-name="woocommerce/cart-order-summary-taxes-block" class="wp-block-woocommerce-cart-order-summary-taxes-block"></div>
		';
		// Order summary subtotal block was added in i3, so we search for it to see if we have a Cart i2 template.
		$regex_for_order_summary_subtotal = '/<div[^<]*?data-block-name="woocommerce\/cart-order-summary-subtotal-block"[^>]*?>/mi';
		$regex_for_order_summary          = '/<div[^<]*?data-block-name="woocommerce\/cart-order-summary-block"[^>]*?>/mi';
		$has_i2_template                  = ! preg_match( $regex_for_order_summary_subtotal, $content );

		if ( $has_i2_template ) {
			$content = preg_replace( $regex_for_order_summary, $order_summary_with_inner_blocks, $content );
		}

		return $content;
	}

	/**
	 * Extra data passed through from server to client for block.
	 *
	 * @param array $attributes  Any attributes that currently are available from the block.
	 *                           Note, this will be empty in the editor context when the block is
	 *                           not in the post content on editor load.
	 */
	protected function enqueue_data( array $attributes = [] ) {
		parent::enqueue_data( $attributes );

		$this->asset_data_registry->add( 'countryData', CartCheckoutUtils::get_country_data() );
		$this->asset_data_registry->add( 'isShippingCalculatorEnabled', filter_var( get_option( 'woocommerce_enable_shipping_calc' ), FILTER_VALIDATE_BOOLEAN ) );
		$this->asset_data_registry->add( 'displayItemizedTaxes', 'itemized' === get_option( 'woocommerce_tax_total_display' ) );
		$this->asset_data_registry->add( 'displayCartPricesIncludingTax', 'incl' === get_option( 'woocommerce_tax_display_cart' ) );
		$this->asset_data_registry->add( 'taxesEnabled', wc_tax_enabled() );
		$this->asset_data_registry->add( 'couponsEnabled', wc_coupons_enabled() );
		$this->asset_data_registry->add( 'shippingEnabled', wc_shipping_enabled() );
		$this->asset_data_registry->add( 'hasDarkEditorStyleSupport', current_theme_supports( 'dark-editor-style' ) );
		$this->asset_data_registry->register_page_id( isset( $attributes['checkoutPageId'] ) ? $attributes['checkoutPageId'] : 0 );
		$this->asset_data_registry->add( 'isBlockTheme', wp_is_block_theme() );

		$pickup_location_settings = LocalPickupUtils::get_local_pickup_settings();
		$local_pickup_method_ids  = LocalPickupUtils::get_local_pickup_method_ids();

		$this->asset_data_registry->add( 'localPickupEnabled', $pickup_location_settings['enabled'] );
		$this->asset_data_registry->add( 'collectableMethodIds', $local_pickup_method_ids );
		$this->asset_data_registry->add( 'shippingMethodsExist', CartCheckoutUtils::shipping_methods_exist() > 0 );

		$is_block_editor = $this->is_block_editor();

		if ( $is_block_editor && ! $this->asset_data_registry->exists( 'localPickupLocations' ) ) {
			// Locations are passed to the client in admin to show a realistic preview in the editor.
			$this->asset_data_registry->add(
				'localPickupLocations',
				array_filter(
					array_map(
						function ( $location ) {
							if ( ! $location['enabled'] ) {
								return null;
							}
							$location['formatted_address'] = wc()->countries->get_formatted_address( $location['address'], ', ' );
							return $location;
						},
						get_option( 'pickup_location_pickup_locations', array() )
					)
				)
			);
		}

		// Hydrate the following data depending on admin or frontend context.
		if ( ! is_admin() && ! WC()->is_rest_api_request() ) {
			$this->asset_data_registry->hydrate_api_request( '/wc/store/v1/cart' );
		}

		/**
		 * Fires after cart block data is registered.
		 *
		 * @since 2.6.0
		 */
		do_action( 'woocommerce_blocks_cart_enqueue_data' );
	}

	/**
	 * Register script and style assets for the block type before it is registered.
	 *
	 * This registers the scripts; it does not enqueue them.
	 */
	protected function register_block_type_assets() {
		parent::register_block_type_assets();
		$chunks        = $this->get_chunks_paths( $this->chunks_folder );
		$vendor_chunks = $this->get_chunks_paths( 'vendors--cart-blocks' );
		$shared_chunks = [];
		$this->register_chunk_translations( array_merge( $chunks, $vendor_chunks, $shared_chunks ) );
	}

	/**
	 * Get list of Cart block & its inner-block types.
	 *
	 * @return array;
	 */
	public static function get_cart_block_types() {
		return [
			'Cart',
			'CartOrderSummaryTaxesBlock',
			'CartOrderSummarySubtotalBlock',
			'CartOrderSummaryTotalsBlock',
			'FilledCartBlock',
			'EmptyCartBlock',
			'CartTotalsBlock',
			'CartItemsBlock',
			'CartLineItemsBlock',
			'CartOrderSummaryBlock',
			'CartExpressPaymentBlock',
			'ProceedToCheckoutBlock',
			'CartAcceptedPaymentMethodsBlock',
			'CartOrderSummaryCouponFormBlock',
			'CartOrderSummaryDiscountBlock',
			'CartOrderSummaryFeeBlock',
			'CartOrderSummaryHeadingBlock',
			'CartOrderSummaryShippingBlock',
			'CartCrossSellsBlock',
			'CartCrossSellsProductsBlock',
		];
	}
}

[ Back ]
Name
Size
Last Modified
Owner / Group
Permissions
Options
..
--
June 24 2025 08:34:22
giriqfky / giriqfky
0755
Accordion
--
June 24 2025 08:34:22
giriqfky / giriqfky
0755
AddToCartWithOptions
--
June 24 2025 08:34:22
giriqfky / giriqfky
0755
OrderConfirmation
--
June 24 2025 08:34:22
giriqfky / giriqfky
0755
ProductCollection
--
June 24 2025 08:34:22
giriqfky / giriqfky
0755
Reviews
--
June 24 2025 08:34:22
giriqfky / giriqfky
0755
AbstractBlock.php
15.604 KB
June 23 2025 15:50:22
giriqfky / giriqfky
0644
AbstractDynamicBlock.php
1.848 KB
December 27 2023 00:45:02
giriqfky / giriqfky
0644
AbstractInnerBlock.php
1.743 KB
December 18 2024 22:19:16
giriqfky / giriqfky
0644
AbstractProductGrid.php
22.102 KB
March 03 2025 22:28:12
giriqfky / giriqfky
0644
ActiveFilters.php
0.221 KB
December 27 2023 00:45:02
giriqfky / giriqfky
0644
AddToCartForm.php
7.707 KB
May 12 2025 21:07:28
giriqfky / giriqfky
0644
AllProducts.php
1.992 KB
April 10 2024 16:54:10
giriqfky / giriqfky
0644
AllReviews.php
1.286 KB
April 10 2024 16:54:10
giriqfky / giriqfky
0644
AtomicBlock.php
0.889 KB
December 27 2023 00:45:02
giriqfky / giriqfky
0644
AttributeFilter.php
1.5 KB
November 14 2024 01:17:00
giriqfky / giriqfky
0644
BlockifiedProductDetails.php
2.787 KB
May 12 2025 21:07:28
giriqfky / giriqfky
0644
Breadcrumbs.php
2.696 KB
May 12 2025 21:07:28
giriqfky / giriqfky
0644
Cart.php
13.174 KB
May 12 2025 21:07:28
giriqfky / giriqfky
0644
CartAcceptedPaymentMethodsBlock.php
0.281 KB
December 27 2023 00:45:02
giriqfky / giriqfky
0644
CartCrossSellsBlock.php
0.245 KB
December 27 2023 00:45:02
giriqfky / giriqfky
0644
CartCrossSellsProductsBlock.php
0.27 KB
December 27 2023 00:45:02
giriqfky / giriqfky
0644
CartExpressPaymentBlock.php
0.495 KB
September 23 2024 20:44:04
giriqfky / giriqfky
0644
CartItemsBlock.php
0.229 KB
December 27 2023 00:45:02
giriqfky / giriqfky
0644
CartLineItemsBlock.php
0.242 KB
December 27 2023 00:45:02
giriqfky / giriqfky
0644
CartLink.php
1.551 KB
November 14 2024 01:17:00
giriqfky / giriqfky
0644
CartOrderSummaryBlock.php
2.672 KB
April 30 2024 19:35:34
giriqfky / giriqfky
0644
CartOrderSummaryCouponFormBlock.php
0.282 KB
December 27 2023 00:45:02
giriqfky / giriqfky
0644
CartOrderSummaryDiscountBlock.php
0.275 KB
December 27 2023 00:45:02
giriqfky / giriqfky
0644
CartOrderSummaryFeeBlock.php
0.261 KB
December 27 2023 00:45:02
giriqfky / giriqfky
0644
CartOrderSummaryHeadingBlock.php
0.272 KB
December 27 2023 00:45:02
giriqfky / giriqfky
0644
CartOrderSummaryShippingBlock.php
0.275 KB
December 27 2023 00:45:02
giriqfky / giriqfky
0644
CartOrderSummarySubtotalBlock.php
0.275 KB
December 27 2023 00:45:02
giriqfky / giriqfky
0644
CartOrderSummaryTaxesBlock.php
0.267 KB
December 27 2023 00:45:02
giriqfky / giriqfky
0644
CartOrderSummaryTotalsBlock.php
0.27 KB
April 30 2024 19:35:34
giriqfky / giriqfky
0644
CartTotalsBlock.php
0.232 KB
December 27 2023 00:45:02
giriqfky / giriqfky
0644
CatalogSorting.php
1.482 KB
January 21 2025 18:53:44
giriqfky / giriqfky
0644
Checkout.php
25.364 KB
May 12 2025 21:07:28
giriqfky / giriqfky
0644
CheckoutActionsBlock.php
0.979 KB
November 14 2024 01:17:00
giriqfky / giriqfky
0644
CheckoutAdditionalInformationBlock.php
0.289 KB
January 30 2024 23:24:56
giriqfky / giriqfky
0644
CheckoutBillingAddressBlock.php
0.269 KB
December 27 2023 00:45:02
giriqfky / giriqfky
0644
CheckoutContactInformationBlock.php
0.28 KB
December 27 2023 00:45:02
giriqfky / giriqfky
0644
CheckoutExpressPaymentBlock.php
4.171 KB
September 23 2024 20:44:04
giriqfky / giriqfky
0644
CheckoutFieldsBlock.php
0.244 KB
December 27 2023 00:45:02
giriqfky / giriqfky
0644
CheckoutOrderNoteBlock.php
0.254 KB
December 27 2023 00:45:02
giriqfky / giriqfky
0644
CheckoutOrderSummaryBlock.php
2.741 KB
April 30 2024 19:35:34
giriqfky / giriqfky
0644
CheckoutOrderSummaryCartItemsBlock.php
0.291 KB
December 27 2023 00:45:02
giriqfky / giriqfky
0644
CheckoutOrderSummaryCouponFormBlock.php
0.294 KB
December 27 2023 00:45:02
giriqfky / giriqfky
0644
CheckoutOrderSummaryDiscountBlock.php
0.287 KB
December 27 2023 00:45:02
giriqfky / giriqfky
0644
CheckoutOrderSummaryFeeBlock.php
0.272 KB
December 27 2023 00:45:02
giriqfky / giriqfky
0644
CheckoutOrderSummaryShippingBlock.php
0.287 KB
December 27 2023 00:45:02
giriqfky / giriqfky
0644
CheckoutOrderSummarySubtotalBlock.php
0.287 KB
December 27 2023 00:45:02
giriqfky / giriqfky
0644
CheckoutOrderSummaryTaxesBlock.php
0.278 KB
December 27 2023 00:45:02
giriqfky / giriqfky
0644
CheckoutOrderSummaryTotalsBlock.php
0.281 KB
April 30 2024 19:35:34
giriqfky / giriqfky
0644
CheckoutPaymentBlock.php
0.247 KB
December 27 2023 00:45:02
giriqfky / giriqfky
0644
CheckoutPickupOptionsBlock.php
0.266 KB
December 27 2023 00:45:02
giriqfky / giriqfky
0644
CheckoutShippingAddressBlock.php
0.271 KB
December 27 2023 00:45:02
giriqfky / giriqfky
0644
CheckoutShippingMethodBlock.php
0.269 KB
December 27 2023 00:45:02
giriqfky / giriqfky
0644
CheckoutShippingMethodsBlock.php
0.271 KB
December 27 2023 00:45:02
giriqfky / giriqfky
0644
CheckoutTermsBlock.php
0.241 KB
December 27 2023 00:45:02
giriqfky / giriqfky
0644
CheckoutTotalsBlock.php
0.244 KB
December 27 2023 00:45:02
giriqfky / giriqfky
0644
ClassicShortcode.php
3.032 KB
December 18 2024 22:19:16
giriqfky / giriqfky
0644
ClassicTemplate.php
11.104 KB
December 18 2024 22:19:16
giriqfky / giriqfky
0644
ComingSoon.php
3.584 KB
May 12 2025 21:07:28
giriqfky / giriqfky
0644
CustomerAccount.php
8.584 KB
January 21 2025 18:53:44
giriqfky / giriqfky
0644
EmptyCartBlock.php
0.229 KB
December 27 2023 00:45:02
giriqfky / giriqfky
0644
EmptyMiniCartContentsBlock.php
0.267 KB
December 27 2023 00:45:02
giriqfky / giriqfky
0644
EnableBlockJsonAssetsTrait.php
0.757 KB
May 12 2025 21:07:28
giriqfky / giriqfky
0644
FeaturedCategory.php
2.25 KB
December 27 2023 00:45:02
giriqfky / giriqfky
0644
FeaturedItem.php
9.434 KB
May 12 2025 21:07:28
giriqfky / giriqfky
0644
FeaturedProduct.php
2.737 KB
January 21 2025 18:53:44
giriqfky / giriqfky
0644
FilledCartBlock.php
0.232 KB
December 27 2023 00:45:02
giriqfky / giriqfky
0644
FilledMiniCartContentsBlock.php
0.27 KB
December 27 2023 00:45:02
giriqfky / giriqfky
0644
FilterWrapper.php
0.367 KB
January 30 2024 23:24:56
giriqfky / giriqfky
0644
HandpickedProducts.php
1.891 KB
March 03 2025 22:28:12
giriqfky / giriqfky
0644
MiniCart.php
20.61 KB
May 12 2025 21:07:28
giriqfky / giriqfky
0644
MiniCartCartButtonBlock.php
0.258 KB
December 27 2023 00:45:02
giriqfky / giriqfky
0644
MiniCartCheckoutButtonBlock.php
0.27 KB
December 27 2023 00:45:02
giriqfky / giriqfky
0644
MiniCartContents.php
5.027 KB
December 27 2023 00:45:02
giriqfky / giriqfky
0644
MiniCartFooterBlock.php
0.245 KB
December 27 2023 00:45:02
giriqfky / giriqfky
0644
MiniCartItemsBlock.php
0.242 KB
December 27 2023 00:45:02
giriqfky / giriqfky
0644
MiniCartProductsTableBlock.php
0.268 KB
May 12 2025 21:07:28
giriqfky / giriqfky
0644
MiniCartShoppingButtonBlock.php
0.27 KB
December 27 2023 00:45:02
giriqfky / giriqfky
0644
MiniCartTitleBlock.php
0.242 KB
December 27 2023 00:45:02
giriqfky / giriqfky
0644
MiniCartTitleItemsCounterBlock.php
0.279 KB
December 27 2023 00:45:02
giriqfky / giriqfky
0644
MiniCartTitleLabelBlock.php
0.258 KB
December 27 2023 00:45:02
giriqfky / giriqfky
0644
PageContentWrapper.php
0.688 KB
December 27 2023 00:45:02
giriqfky / giriqfky
0644
PriceFilter.php
1.245 KB
November 14 2024 01:17:00
giriqfky / giriqfky
0644
ProceedToCheckoutBlock.php
0.765 KB
December 27 2023 00:45:02
giriqfky / giriqfky
0644
ProductAverageRating.php
2.08 KB
May 12 2025 21:07:28
giriqfky / giriqfky
0644
ProductBestSellers.php
0.434 KB
December 27 2023 00:45:02
giriqfky / giriqfky
0644
ProductButton.php
10.861 KB
May 12 2025 21:07:28
giriqfky / giriqfky
0644
ProductCategories.php
12.753 KB
November 14 2024 01:17:00
giriqfky / giriqfky
0644
ProductCategory.php
0.716 KB
December 27 2023 00:45:02
giriqfky / giriqfky
0644
ProductDescription.php
2.189 KB
May 12 2025 21:07:28
giriqfky / giriqfky
0644
ProductDetails.php
2.865 KB
November 14 2024 01:17:00
giriqfky / giriqfky
0644
ProductFilterActive.php
2.507 KB
May 26 2025 19:11:58
giriqfky / giriqfky
0644
ProductFilterAttribute.php
13.112 KB
May 26 2025 19:11:58
giriqfky / giriqfky
0644
ProductFilterCheckboxList.php
4.595 KB
May 12 2025 21:07:28
giriqfky / giriqfky
0644
ProductFilterChips.php
3.688 KB
May 12 2025 21:07:28
giriqfky / giriqfky
0644
ProductFilterClearButton.php
1.553 KB
May 12 2025 21:07:28
giriqfky / giriqfky
0644
ProductFilterPrice.php
7.514 KB
May 26 2025 19:11:58
giriqfky / giriqfky
0644
ProductFilterPriceSlider.php
4.825 KB
May 12 2025 21:07:28
giriqfky / giriqfky
0644
ProductFilterRating.php
7.149 KB
May 26 2025 19:11:58
giriqfky / giriqfky
0644
ProductFilterRemovableChips.php
3.788 KB
May 12 2025 21:07:28
giriqfky / giriqfky
0644
ProductFilterStatus.php
7.13 KB
May 26 2025 19:11:58
giriqfky / giriqfky
0644
ProductFilters.php
8.702 KB
May 12 2025 21:07:28
giriqfky / giriqfky
0644
ProductGallery.php
5.035 KB
May 12 2025 21:07:28
giriqfky / giriqfky
0644
ProductGalleryLargeImage.php
5.101 KB
May 12 2025 21:07:28
giriqfky / giriqfky
0644
ProductGalleryLargeImageNextPrevious.php
3.482 KB
May 12 2025 21:07:28
giriqfky / giriqfky
0644
ProductGalleryThumbnails.php
3.655 KB
May 12 2025 21:07:28
giriqfky / giriqfky
0644
ProductImage.php
6.741 KB
May 12 2025 21:07:28
giriqfky / giriqfky
0644
ProductImageGallery.php
1.883 KB
November 14 2024 01:17:00
giriqfky / giriqfky
0644
ProductMeta.php
0.985 KB
August 27 2024 23:04:44
giriqfky / giriqfky
0644
ProductNew.php
0.438 KB
December 27 2023 00:45:02
giriqfky / giriqfky
0644
ProductOnSale.php
0.743 KB
December 27 2023 00:45:02
giriqfky / giriqfky
0644
ProductPrice.php
2.171 KB
May 12 2025 21:07:28
giriqfky / giriqfky
0644
ProductQuery.php
27.782 KB
March 03 2025 22:28:12
giriqfky / giriqfky
0644
ProductRating.php
6.094 KB
May 12 2025 21:07:28
giriqfky / giriqfky
0644
ProductRatingCounter.php
5.462 KB
May 12 2025 21:07:28
giriqfky / giriqfky
0644
ProductRatingStars.php
3.765 KB
May 12 2025 21:07:28
giriqfky / giriqfky
0644
ProductResultsCount.php
1.77 KB
March 03 2025 22:28:12
giriqfky / giriqfky
0644
ProductReviews.php
1.056 KB
November 14 2024 01:17:00
giriqfky / giriqfky
0644
ProductSKU.php
2.436 KB
December 18 2024 22:19:16
giriqfky / giriqfky
0644
ProductSaleBadge.php
2.481 KB
May 12 2025 21:07:28
giriqfky / giriqfky
0644
ProductSearch.php
4.493 KB
December 27 2023 00:45:02
giriqfky / giriqfky
0644
ProductSpecifications.php
3.769 KB
May 12 2025 21:07:28
giriqfky / giriqfky
0644
ProductStockIndicator.php
4.133 KB
May 12 2025 21:07:28
giriqfky / giriqfky
0644
ProductSummary.php
7.493 KB
May 12 2025 21:07:28
giriqfky / giriqfky
0644
ProductTag.php
2.23 KB
April 10 2024 16:54:10
giriqfky / giriqfky
0644
ProductTemplate.php
5.656 KB
May 12 2025 21:07:28
giriqfky / giriqfky
0644
ProductTitle.php
0.604 KB
May 12 2025 21:07:28
giriqfky / giriqfky
0644
ProductTopRated.php
0.414 KB
December 27 2023 00:45:02
giriqfky / giriqfky
0644
ProductsByAttribute.php
2.055 KB
December 27 2023 00:45:02
giriqfky / giriqfky
0644
RatingFilter.php
0.688 KB
December 27 2023 00:45:02
giriqfky / giriqfky
0644
RelatedProducts.php
4.764 KB
May 12 2025 21:07:28
giriqfky / giriqfky
0644
ReviewsByCategory.php
1.308 KB
April 10 2024 16:54:10
giriqfky / giriqfky
0644
ReviewsByProduct.php
1.305 KB
April 10 2024 16:54:10
giriqfky / giriqfky
0644
SingleProduct.php
5.497 KB
January 21 2025 18:53:44
giriqfky / giriqfky
0644
StockFilter.php
1.338 KB
April 10 2024 16:54:10
giriqfky / giriqfky
0644
StoreNotices.php
1.701 KB
March 03 2025 22:28:12
giriqfky / giriqfky
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025
CONTACT ME
Static GIF