PATH:
home
/
lab2454c
/
mact34.com
/
wp-content
/
plugins
/
woocommerce
/
packages
/
woocommerce-blocks
/
src
/
BlockTypes
<?php namespace Automattic\WooCommerce\Blocks\BlockTypes; /** * AllReviews class. */ class AllReviews extends AbstractBlock { /** * Block name. * * @var string */ protected $block_name = 'all-reviews'; /** * 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-reviews-frontend', 'path' => $this->asset_api->get_block_asset_build_path( 'reviews-frontend' ), 'dependencies' => [], ]; return $key ? $script[ $key ] : $script; } }
[-] ProductCategories.php
[edit]
[-] AtomicBlock.php
[edit]
[-] AbstractProductGrid.php
[edit]
[+]
..
[-] ReviewsByCategory.php
[edit]
[-] AbstractDynamicBlock.php
[edit]
[-] PriceFilter.php
[edit]
[-] FeaturedCategory.php
[edit]
[-] SingleProduct.php
[edit]
[-] ProductTag.php
[edit]
[-] AttributeFilter.php
[edit]
[-] HandpickedProducts.php
[edit]
[-] ReviewsByProduct.php
[edit]
[-] ActiveFilters.php
[edit]
[-] ProductsByAttribute.php
[edit]
[-] ProductNew.php
[edit]
[-] AllReviews.php
[edit]
[-] ProductTopRated.php
[edit]
[-] Checkout.php
[edit]
[-] Cart.php
[edit]
[-] AbstractBlock.php
[edit]
[-] ProductSearch.php
[edit]
[-] AllProducts.php
[edit]
[-] ProductOnSale.php
[edit]
[-] ProductBestSellers.php
[edit]
[-] ProductCategory.php
[edit]
[-] FeaturedProduct.php
[edit]