# ablocks/2.9.1/includes/blocks/advance-lists/attributes.php

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

- Page: https://pluginprobe.com/plugins/ablocks/2.9.1/code/includes/blocks/advance-lists/attributes.php
- Raw: https://pluginprobe.com/plugins/ablocks/2.9.1/raw/includes/blocks/advance-lists/attributes.php
- Modified: 2025-04-22T12:59:06+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.1/code/includes/blocks/advance-lists/attributes.php#L10-L20`.

```php
<?php

use ABlocks\Controls\Alignment;
use ABlocks\Controls\Dimensions;
use ABlocks\Controls\Typography;
use ABlocks\Controls\TextShadow;
use ABlocks\Controls\TextStroke;
use ABlocks\Controls\Border;
use ABlocks\Controls\GroupButton;
use ABlocks\Controls\Icon;
use ABlocks\Controls\Range;
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

$attributes = [
	'block_id' => [
		'type' => 'string',
		'default' => '',
	],
	'markerType'    => [
		'type'          => 'string',
		'default'       => 'Icon',
	],
	'shapeType'     => [
		'type'          => 'string',
		'default'       => 'dotted',
	],
	'shapeColor'    => [
		'type'          => 'string',
		'default'       => 'black',
	],
	'emoji'     => [
		'type'          => 'string',
		'default'       => '👍',
	],
	'allowDivider'  => [
		'type'          => 'boolean',
		'default'       => false,
	],
	// Text
	'advanceListItemTextTag'    => [
		'type'          => 'string',
		'default'       => 'p',
	],
	'dropCaps'          => [
		'type'          => 'boolean',
		'default'       => false,
	],
	'dropCapsTextColor' => [
		'type'          => 'string',
		'default'       => '#0f2aff',
	],
	'advanceListItemTextSize'     => [
		'type'          => 'string',
		'default'       => 'md',
	],
	'textColor'         => [
		'type'          => 'string',
		'default'       => '#000000',
	],
	// divider related attributes
	'dividerPatternUrl' => [
		'type' => 'string',
		'default' => 'solid',
	],
	'dividerType' => [
		'type' => 'string',
		'default' => 'css-style',
	],
	'color' => [
		'type' => 'string',
		'default' => 'black',
	],
];

$attributes = array_merge(
	$attributes,
	Alignment::get_attribute( 'alignment', true, [ 'value' => 'flex-start' ] ),
	Icon::get_attribute( 'icon', [
		'className' => 'fas fa-check',
		'path' => 'M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z',
		'viewBox' => '0 0 512 512',
		'size' => '20',
		'color' => '#000',
	] ),
	Alignment::get_attribute( 'iconAlignment', true, [ 'value' => 'row' ] ),
	GroupButton::get_attribute( 'listsDirection', true, [
		'value' => 'column',
	] ),
	Typography::get_attribute( 'listTypography', true ),
	TextShadow::get_attribute( 'listTextShadow' ),
	TextStroke::get_attribute( 'listTextStroke', true ),
	Range::get_attribute([
		'attributeName' => 'columnGap',
		'attributeObjectKey' => 'value',
		'isResponsive' => true,
		'defaultValue' => 6,
		'hasUnit' => true,
		'unitDefaultValue' => 'px',
	]),
	Range::get_attribute([
		'attributeName' => 'innerGap',
		'attributeObjectKey' => 'value',
		'isResponsive' => true,
		'defaultValue' => 6,
		'hasUnit' => true,
		'unitDefaultValue' => 'px',
	]),
	Range::get_attribute( [
		'attributeName' => 'width',
		'attributeObjectKey' => 'value',
		'isResponsive' => true,
		'defaultValue' => 100,
		'unitDefaultValue' => '%',
		'hasUnit' => false,
	] ),
	Range::get_attribute( [
		'attributeName' => 'weight',
		'isResponsive' => false,
		'defaultValue' => 4,
	] ),
	Range::get_attribute( [
		'attributeName' => 'size',
		'isResponsive' => false,
		'defaultValue' => 20,
	] ),
	Range::get_attribute( [
		'attributeName' => 'shapeSize',
		'isResponsive' => true,
		'defaultValue' => 14,
	] ),
);
return array_merge( $attributes, \ABlocks\Classes\BlockGlobal::get_attributes() );


```
