# ablocks/2.9.0/includes/blocks/table/attributes.php

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

- Page: https://pluginprobe.com/plugins/ablocks/2.9.0/code/includes/blocks/table/attributes.php
- Raw: https://pluginprobe.com/plugins/ablocks/2.9.0/raw/includes/blocks/table/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/table/attributes.php#L10-L20`.

```php
<?php

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}
use ABlocks\Controls\Border;
$attributes = [
	'block_id' => [
		'type' => 'string',
	],
	'blockVersion' => array(
		'type' => 'number',
		'default' => '',
	),
	'tableCreated' => [
		'type' => 'boolean',
		'default' => false,
	],
	'isHeader' => [
		'type' => 'boolean',
		'default' => '',
	],
	'isFooter' => [
		'type' => 'boolean',
		'default' => '',
	],
	'rowOddColor' => [
		'type' => 'string',
		'default' => ''
	],
	'rowOddColorH' => [
		'type' => 'string',
		'default' => ''
	],
	'rowEvenColor' => [
		'type' => 'string',
		'default' => ''
	],
	'rowEvenColorH' => [
		'type' => 'string',
		'default' => ''
	],
	'bodyBg' => [
		'type' => 'string',
	],
	'bodyBgH' => [
		'type' => 'string',
	],
	'headerColor' => [
		'type' => 'string',

		'default' => '',
	],
	'headerColorH' => [
		'type' => 'string',
		'default' => ''
	],
	'footerColor' => [
		'type' => 'string',

		'default' => '',
	],
	'footerColorH' => [
		'type' => 'string',
		'default' => ''
	],
	'borderCollapse' => [
		'type' => 'string',
		'default' => 'collapse'
	]
];
$attributes = array_merge(
	$attributes,
	Border::get_attribute( 'border', true ),
);

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


```
