Automattic\WooCommerce\Blocks\BlockTypes
AllReviews{} WC 1.0
AllReviews class.
Хуков нет.
Возвращает
Null. Ничего.
Использование
$AllReviews = new AllReviews(); // use class methods
Методы
Код AllReviews{} AllReviews{} WC 5.0.0
class AllReviews extends AbstractBlock {
/**
* Block name.
*
* @var string
*/
protected $block_name = 'all-reviews';
/**
* Registers the block type with WordPress.
*/
public function register_block_type() {
register_block_type(
$this->namespace . '/' . $this->block_name,
array(
'render_callback' => array( $this, 'render' ),
'editor_script' => 'wc-' . $this->block_name,
'editor_style' => 'wc-block-editor',
'style' => 'wc-block-style',
'script' => 'wc-' . $this->block_name . '-frontend',
'supports' => [],
)
);
}
/**
* Register/enqueue scripts used for this block.
*
* @param array $attributes Any attributes that currently are available from the block.
*/
protected function enqueue_scripts( array $attributes = [] ) {
Assets::register_block_script( 'reviews-frontend' );
}
}