# ablocks/2.14.0/includes/blocks/storeengine-cart-list/block.php

aBlocks – Gutenberg Blocks, User Dashboard Builder, Popup Builder, Form Builder &amp; Animation Builder, version 2.14.0. 214 lines.

- Page: https://pluginprobe.com/plugins/ablocks/2.14.0/code/includes/blocks/storeengine-cart-list/block.php
- Raw: https://pluginprobe.com/plugins/ablocks/2.14.0/raw/includes/blocks/storeengine-cart-list/block.php
- Modified: 2026-09-24T15:27:38+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/ablocks/2.14.0/code/includes/blocks/storeengine-cart-list/block.php#L10-L20`.

```php
<?php

namespace ABlocks\Blocks\StoreengineCartList;

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

use ABlocks\Classes\BlockBaseAbstract;
use ABlocks\Classes\CssGenerator;
use ABlocks\Helper;
use ABlocks\Controls\Typography;
use ABlocks\Controls\Background;
use ABlocks\Controls\Border;
use ABlocks\Controls\Dimensions;
use ABlocks\Controls\Range;
use ABlocks\Controls\Color;

class Block extends BlockBaseAbstract {
	protected $block_name = 'storeengine-cart-list';

	public function build_css( $attributes ) {
		$css_generator = new CssGenerator( $attributes, $this->block_name );

		$css_generator->add_class_styles(
			'{{WRAPPER}} .storeengine-cart-table',
			$this->get_cart_list_table_css( $attributes ),
			$this->get_cart_list_table_css( $attributes, 'Tablet' ),
			$this->get_cart_list_table_css( $attributes, 'Mobile' ),
			$css_generator->custom_device_map( function ( $device ) use ( $attributes ) { return $this->get_cart_list_table_css( $attributes, $device ); } )
		);
		$css_generator->add_class_styles(
			'{{WRAPPER}} .storeengine-cart-table:hover',
			$this->get_cart_list_table_hover_css( $attributes ),
			$this->get_cart_list_table_hover_css( $attributes, 'Tablet' ),
			$this->get_cart_list_table_hover_css( $attributes, 'Mobile' ),
			$css_generator->custom_device_map( function ( $device ) use ( $attributes ) { return $this->get_cart_list_table_hover_css( $attributes, $device ); } )
		);
		$css_generator->add_class_styles(
			'{{WRAPPER}} .storeengine-cart-table .storeengine-cart-table__head tr',
			$this->get_cart_list_table_header_css( $attributes ),
			$this->get_cart_list_table_header_css( $attributes, 'Tablet' ),
			$this->get_cart_list_table_header_css( $attributes, 'Mobile' ),
			$css_generator->custom_device_map( function ( $device ) use ( $attributes ) { return $this->get_cart_list_table_header_css( $attributes, $device ); } )
		);
		$css_generator->add_class_styles(
			'{{WRAPPER}} .storeengine-cart-table .storeengine-cart-table__head tr:hover',
			$this->get_cart_list_table_header_hover_css( $attributes ),
			$this->get_cart_list_table_header_hover_css( $attributes, 'Tablet' ),
			$this->get_cart_list_table_header_hover_css( $attributes, 'Mobile' ),
			$css_generator->custom_device_map( function ( $device ) use ( $attributes ) { return $this->get_cart_list_table_header_hover_css( $attributes, $device ); } )
		);
		$css_generator->add_class_styles(
			'{{WRAPPER}} .storeengine-cart-list-table-shortcode .storeengine-cart-table__head tr th',
			$this->get_cart_list_table_header_text_css( $attributes ),
			$this->get_cart_list_table_header_text_css( $attributes, 'Tablet' ),
			$this->get_cart_list_table_header_text_css( $attributes, 'Mobile' ),
			$css_generator->custom_device_map( function ( $device ) use ( $attributes ) { return $this->get_cart_list_table_header_text_css( $attributes, $device ); } )
		);
		$css_generator->add_class_styles(
			'{{WRAPPER}} .storeengine-cart-product .storeengine-cart-product__content .storeengine-cart-product-title a',
			$this->get_cart_list_product_title( $attributes ),
			$this->get_cart_list_product_title( $attributes, 'Tablet' ),
			$this->get_cart_list_product_title( $attributes, 'Mobile' ),
			$css_generator->custom_device_map( function ( $device ) use ( $attributes ) { return $this->get_cart_list_product_title( $attributes, $device ); } )
		);
		$css_generator->add_class_styles(
			'{{WRAPPER}} .storeengine-cart-product .storeengine-cart-product__content .storeengine-cart-product-title a:hover',
			$this->get_cart_list_product_title_hover_css( $attributes ),
			$this->get_cart_list_product_title_hover_css( $attributes, 'Tablet' ),
			$this->get_cart_list_product_title_hover_css( $attributes, 'Mobile' ),
			$css_generator->custom_device_map( function ( $device ) use ( $attributes ) { return $this->get_cart_list_product_title_hover_css( $attributes, $device ); } )
		);
		$css_generator->add_class_styles(
			'{{WRAPPER}} .storeengine-cart-product__content .storeengine-cart-product-price',
			$this->get_cart_list_subtitle_css( $attributes ),
			$this->get_cart_list_subtitle_css( $attributes, 'Tablet' ),
			$this->get_cart_list_subtitle_css( $attributes, 'Mobile' ),
			$css_generator->custom_device_map( function ( $device ) use ( $attributes ) { return $this->get_cart_list_subtitle_css( $attributes, $device ); } )
		);
		$css_generator->add_class_styles(
			'{{WRAPPER}} .storeengine-cart-product__content .storeengine-cart-product-price:hover',
			$this->get_cart_list_subtitle_hover_css( $attributes ),
			$this->get_cart_list_subtitle_hover_css( $attributes, 'Tablet' ),
			$this->get_cart_list_subtitle_hover_css( $attributes, 'Mobile' ),
			$css_generator->custom_device_map( function ( $device ) use ( $attributes ) { return $this->get_cart_list_subtitle_hover_css( $attributes, $device ); } )
		);
		$css_generator->add_class_styles(
			'{{WRAPPER}} .storeengine-cart-list-table-shortcode .storeengine-cart-table__body-td .storeengine-price bdi',
			$this->get_cart_list_product_price_css( $attributes ),
			$this->get_cart_list_product_price_css( $attributes, 'Tablet' ),
			$this->get_cart_list_product_price_css( $attributes, 'Mobile' ),
			$css_generator->custom_device_map( function ( $device ) use ( $attributes ) { return $this->get_cart_list_product_price_css( $attributes, $device ); } )
		);
		$css_generator->add_class_styles(
			'{{WRAPPER}} .storeengine-cart-list-table-shortcode .storeengine-cart-table__body-td .storeengine-price bdi:hover',
			$this->get_cart_list_product_price_hover_css( $attributes ),
			$this->get_cart_list_product_price_hover_css( $attributes, 'Tablet' ),
			$this->get_cart_list_product_price_hover_css( $attributes, 'Mobile' ),
			$css_generator->custom_device_map( function ( $device ) use ( $attributes ) { return $this->get_cart_list_product_price_hover_css( $attributes, $device ); } )
		);

		return $css_generator->generate_css();
	}

	public function get_cart_list_table_css( $attributes, $device = '' ) {
		return [ 'background' => Color::get_css( isset( $attributes['tableBackground'] ) ? $attributes['tableBackground'] : '' ) ];

	}
	public function get_cart_list_table_hover_css( $attributes, $device = '' ) {
		return array_merge(
			[ 'background' => Color::get_css( isset( $attributes['tableBackgroundH'] ) ? $attributes['tableBackgroundH'] : '' ) ],
			Range::get_css( [
				'attributeValue'       => isset( $attributes['tableTransition'] ) ? $attributes['tableTransition'] : '',
				'attribute_object_key' => 'value',
				'defaultValue'         => 0,
				'unitDefaultValue'     => 's',
				'property'             => 'transition-duration',
				'device'               => $device,
			] ),
		);
	}

	public function get_cart_list_table_header_css( $attributes, $device = '' ) {
		return [ 'background' => Color::get_css( isset( $attributes['tableHeaderBackground'] ) ? $attributes['tableHeaderBackground'] : '' ) ];
	}

	public function get_cart_list_table_header_hover_css( $attributes, $device = '' ) {
		return array_merge(
			Range::get_css( [
				'attributeValue'       => isset( $attributes['tableTransition'] ) ? $attributes['tableTransition'] : '',
				'attribute_object_key' => 'value',
				'defaultValue'         => 0,
				'unitDefaultValue'     => 's',
				'property'             => 'transition-duration',
				'device'               => $device,
			] ),
			[ 'background' => Color::get_css( isset( $attributes['tableHeaderBackgroundH'] ) ? $attributes['tableHeaderBackgroundH'] : '' ) ]
		);
	}

	public function get_cart_list_table_header_text_css( $attributes, $device = '' ) {
		$typography = isset( $attributes['tableHeaderTypography'] ) && is_array( $attributes['tableHeaderTypography'] )
			? $attributes['tableHeaderTypography']
			: [];

		$typography_value = array_merge( $typography, [ 'font-weight' => '400' ] );
		$typographyValueGlobal = ( isset( $attributes['tableHeaderTypographyGlobal'] ) ? $attributes['tableHeaderTypographyGlobal'] : '' );

		return array_merge(
			Typography::get_css( $typography_value, '', $device, $typographyValueGlobal ),
		);
	}

	public function get_cart_list_product_title( $attributes, $device = '' ) {
		$typography = isset( $attributes['productTilteTypography'] ) && is_array( $attributes['productTilteTypography'] )
			? $attributes['productTilteTypography']
			: array();

		$typography_value = array_merge( $typography, [ 'font-weight' => '400' ] );
		$typographyValueGlobal = ( isset( $attributes['productTitleTypographyGlobal'] ) ? $attributes['productTitleTypographyGlobal'] : '' );

		return array_merge(
			Typography::get_css( $typography_value, '', $device, $typographyValueGlobal ),
			[ 'color' => Color::get_css( isset( $attributes['productTitleColor'] ) ? $attributes['productTitleColor'] : '' ) ]
		);

	}
	public function get_cart_list_product_title_hover_css( $attributes, $device = '' ) {
		return [ 'color' => Color::get_css( isset( $attributes['productTitleColorH'] ) ? $attributes['productTitleColorH'] : '' ) ];
	}

	public function get_cart_list_subtitle_css( $attributes, $device = '' ) {
		$typography = isset( $attributes['productsubTitleTypography'] ) && is_array( $attributes['productsubTitleTypography'] )
			? $attributes['productsubTitleTypography']
			: [];

		$typography_value = array_merge( $typography, [ 'font-weight' => '400' ] );
		$typographyValueGlobal = ( isset( $attributes['productsubTitleTypographyGlobal'] ) ? $attributes['productsubTitleTypographyGlobal'] : '' );
		return array_merge(
			Typography::get_css( $typography_value, '', $device, $typographyValueGlobal ),
			[ 'color' => Color::get_css( isset( $attributes['productSubTiteColor'] ) ? $attributes['productSubTiteColor'] : '' ) ]
		);

	}

	public function get_cart_list_subtitle_hover_css( $attributes, $device = '' ) {
		return [ 'color' => Color::get_css( isset( $attributes['productSubTiteColorH'] ) ? $attributes['productSubTiteColorH'] : '' ) ];
	}
	public function get_cart_list_product_price_css( $attributes, $device = '' ) {
		$typography = isset( $attributes['productPriceTypography'] ) && is_array( $attributes['productPriceTypography'] )
			? $attributes['productPriceTypography']
			: [];

		$typography_value = array_merge( $typography, [ 'font-weight' => '400' ] );
		$typographyValueGlobal = ( isset( $attributes['productPriceTypographyGlobal'] ) ? $attributes['productPriceTypographyGlobal'] : '' );
		return array_merge(
			Typography::get_css( $typography_value, '', $device, $typographyValueGlobal ),
			[ 'color' => Color::get_css( isset( $attributes['productPriceColor'] ) ? $attributes['productPriceColor'] : '' ) ]
		);

	}
	public function get_cart_list_product_price_hover_css( $attributes, $device = '' ) {
		return [ 'color' => Color::get_css( isset( $attributes['productPriceColorH'] ) ? $attributes['productPriceColorH'] : '' ) ];
	}

	public function render_block_content( $attributes, $content, $block_instance ) {
		$attr_array = [];
		$shortcode = '[storeengine_cart_list_table ' . Helper::attr_shortcode( $attr_array ) . ']';
		echo do_shortcode( $shortcode );
	}

}

```
