# ablocks/2.11.1/includes/blocks/form-multi-step/attributes.php

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

- Page: https://pluginprobe.com/plugins/ablocks/2.11.1/code/includes/blocks/form-multi-step/attributes.php
- Raw: https://pluginprobe.com/plugins/ablocks/2.11.1/raw/includes/blocks/form-multi-step/attributes.php
- Modified: 2026-07-19T14:51:02+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/form-multi-step/attributes.php#L10-L20`.

```php
<?php

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

$attributes = [
	'block_id' => array(
		'type' => 'string',
		'default' => ''
	),
	'steps' => [
		'type' => 'array',
		'default' => [
			[
				'id' => 1,
				'value' => 'Step One'
			]
		]
	],
	'submitButtonText' => array(
		'type' => 'string',
		'default' => 'Submit'
	),
	'submitButtonSize' => array(
		'type' => 'string',
		'default' => 'default'
	)
];

$attributes = array_merge(
	$attributes,
);

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


```
