PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
plugins1
/
woocommerce
/
packages
/
woocommerce-blocks
/
src
/
BlockTypes
<?php /** * Abstract block class. * * @package WooCommerce/Blocks */ namespace Automattic\WooCommerce\Blocks\BlockTypes; defined( 'ABSPATH' ) || exit; /** * AbstractBlock class. */ abstract class AbstractBlock { /** * Block namespace. * * @var string */ protected $namespace = 'woocommerce'; /** * Block namespace. * * @var string */ protected $block_name = ''; /** * Registers the block type with WordPress. */ public function register_block_type() { register_block_type( $this->namespace . '/' . $this->block_name, array( 'editor_script' => 'wc-' . $this->block_name, 'editor_style' => 'wc-block-editor', 'style' => 'wc-block-style', ) ); } }
[+]
..
[-] ProductsByAttribute.php
[edit]
[-] AttributeFilter.php
[edit]
[-] ProductCategories.php
[edit]
[-] ProductTopRated.php
[edit]
[-] FeaturedCategory.php
[edit]
[-] ProductSearch.php
[edit]
[-] ProductCategory.php
[edit]
[-] .BlockTypes.php
[edit]
[-] AbstractDynamicBlock.php
[edit]
[-] ProductNew.php
[edit]
[-] PriceFilter.php
[edit]
[-] AbstractProductGrid.php
[edit]
[-] FeaturedProduct.php
[edit]
[-] ProductTag.php
[edit]
[-] ActiveFilters.php
[edit]
[-] ProductOnSale.php
[edit]
[-] AllReviews.php
[edit]
[-] HandpickedProducts.php
[edit]
[-] ProductBestSellers.php
[edit]
[-] AbstractBlock.php
[edit]
[-] AllProducts.php
[edit]
[-] ReviewsByCategory.php
[edit]
[-] ReviewsByProduct.php
[edit]