# ablocks/2.11.1/includes/blocks/storeengine-order-info/attributes.php

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

- Page: https://pluginprobe.com/plugins/ablocks/2.11.1/code/includes/blocks/storeengine-order-info/attributes.php
- Raw: https://pluginprobe.com/plugins/ablocks/2.11.1/raw/includes/blocks/storeengine-order-info/attributes.php
- Modified: 2025-08-05T15:00:28+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.11.1/code/includes/blocks/storeengine-order-info/attributes.php#L10-L20`.

```php
<?php

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

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

$attributes = [
	'block_id' => array(
		'type' => 'string',
		'default' => '',
	),
	'blockVersion' => array(
		'type' => 'number',
		'default' => 2,
	),
	'titleContentColor' => array(
		'type' => 'string',
		'default' => '',
	),
	'titleContentColorH' => array(
		'type' => 'string',
		'default' => '',
	),
	'detailsColor' => array(
		'type' => 'string',
		'default' => '',
	),
	'detailsColorH' => array(
		'type' => 'string',
		'default' => '',
	),
	'titleContentColor' => array(
		'type' => 'string',
		'default' => '',
	),
	'titleContentColorH' => array(
		'type' => 'string',
		'default' => '',
	),
	'emailColor' => array(
		'type' => 'string',
		'default' => '',
	),
	'emailColorH' => array(
		'type' => 'string',
		'default' => '',
	),
];

$attributes = array_merge(
	$attributes,
	Typography::get_attribute( 'titleContentTypography', true ),
	Typography::get_attribute( 'detailsTypography', true ),
	Typography::get_attribute( 'emailTypography', true ),
);

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


```
