# ablocks/2.13.0/includes/blocks/atomic-image/attributes.php

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

- Page: https://pluginprobe.com/plugins/ablocks/2.13.0/code/includes/blocks/atomic-image/attributes.php
- Raw: https://pluginprobe.com/plugins/ablocks/2.13.0/raw/includes/blocks/atomic-image/attributes.php
- Modified: 2026-09-08T12:29: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.13.0/code/includes/blocks/atomic-image/attributes.php#L10-L20`.

```php
<?php

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

$attributes = include __DIR__ . '/../atomic-shared/attributes.php';
$attributes['src']      = [ 'type' => 'string', 'default' => '' ];
$attributes['alt']      = [ 'type' => 'string', 'default' => '' ];
$attributes['imageId']  = [ 'type' => 'number', 'default' => 0 ];
$attributes['sizeSlug'] = [ 'type' => 'string', 'default' => '' ];
$attributes['link']     = [ 'type' => 'object', 'default' => [ 'url' => '', 'newTab' => false, 'noFollow' => false ] ];

return $attributes;

```
