# ablocks/2.10.0/includes/blocks/academy-instructor-registration-form/attributes.php

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

- Page: https://pluginprobe.com/plugins/ablocks/2.10.0/code/includes/blocks/academy-instructor-registration-form/attributes.php
- Raw: https://pluginprobe.com/plugins/ablocks/2.10.0/raw/includes/blocks/academy-instructor-registration-form/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.10.0/code/includes/blocks/academy-instructor-registration-form/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' => array(
		'type' => 'string',
		'default' => '',
	),
	'blockVersion' => [
		'type' => 'number',
		'default' => 2,
	],
	'input_label_color' => array(
		'type' => 'string',
		'default' => '#333',
	),
	'input_field_color' => array(
		'type' => 'string',
		'default' => '#333',
	),
	'input_field_placeholder_color' => array(
		'type' => 'string',
		'default' => '#333',
	),
	'input_field_bg_color' => array(
		'type' => 'string',
		'default' => '#fff',
	),
	'form_button_color' => array(
		'type' => 'string',
		'default' => '#fff',
	),
	'form_button_hover_color' => array(
		'type' => 'string',
		'default' => '#fff',
	),
	'form_button_background' => array(
		'type' => 'string',
		'default' => '#7B68EE',
	),
	'form_button_hover_background' => array(
		'type' => 'string',
		'default' => '#6F5DD6',
	),



];

$attributes = array_merge(
	$attributes,
	Typography::get_attribute( 'input_label_typhography', true ),
	Typography::get_attribute( 'form_button_typhography', true ),
	Border::get_attribute( 'form_field_border', true ),
	Border::get_attribute( 'form_button_border', true ),
	Dimensions::get_attribute( 'form_button_padding', true ),
	Dimensions::get_attribute( 'form_padding', true ),
	Background::get_attribute( 'form_background', true ),
	Border::get_attribute( 'form_border', true ),
	Dimensions::get_attribute( 'card_hover_padding', true ),
	Dimensions::get_attribute( 'card_hover_margin', true ),
);

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


```
