# ablocks/2.9.0/includes/blocks/storeengine-cart-list/attributes.php

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

- Page: https://pluginprobe.com/plugins/ablocks/2.9.0/code/includes/blocks/storeengine-cart-list/attributes.php
- Raw: https://pluginprobe.com/plugins/ablocks/2.9.0/raw/includes/blocks/storeengine-cart-list/attributes.php
- Modified: 2025-07-14T14:48:20+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.9.0/code/includes/blocks/storeengine-cart-list/attributes.php#L10-L20`.

```php
<?php

use ABlocks\Controls\Typography;
use ABlocks\Controls\Background;
use ABlocks\Controls\Border;
use ABlocks\Controls\Dimensions;

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

$attributes = [
	'block_id' => [
		'type' => 'string',
		'default' => '',
	],
	'blockVersion' => [
		'type' => 'number',
		'default' => 2,
	],
	'tableBackground' => [
		'type' => 'string',
		'default' => ''
	],
	'tableTransition' => [
		'type' => 'number',
		'default' => 0,
	],
	'tableBackgroundH' => [
		'type' => 'string',
		'default' => ''
	],
	'tableHeaderBackground' => [
		'type' => 'string',
		'default' => ''
	],
	'tableHeaderBackgroundH' => [
		'type' => 'string',
		'default' => ''
	],
	'thumbImage' => [
		'type' => 'number',
		'default' => 120
	],
	'productTitleColor' => [
		'type' => 'string',
		'default' => ''
	],
	'productTitleColorH' => [
		'type' => 'string',
		'default' => ''
	],
	'productSubTiteColor' => [
		'type'    => 'string',
		'default' => '',
	],
	'productSubTiteColorH' => [
		'type'    => 'string',
		'default' => '',
	],
	'productPriceColor' => [
		'type'    => 'string',
		'default' => '',
	],
	'productPriceColorH' => [
		'type'    => 'string',
		'default' => '',
	],
];

$attributes = array_merge(
	$attributes,
	Typography::get_attribute( 'tableHeaderTypography', true ),
	Typography::get_attribute( 'productTilteTypography', true ),
	Typography::get_attribute( 'productsubTitleTypography', true ),
	Typography::get_attribute( 'productPriceTypography', true ),
);

return array_merge( $attributes, \ABlocks\Classes\BlockGlobal::get_attributes() );


```
