# ablocks/2.14.0/includes/blocks/atomic-image/block.php

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

- Page: https://pluginprobe.com/plugins/ablocks/2.14.0/code/includes/blocks/atomic-image/block.php
- Raw: https://pluginprobe.com/plugins/ablocks/2.14.0/raw/includes/blocks/atomic-image/block.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.14.0/code/includes/blocks/atomic-image/block.php#L10-L20`.

```php
<?php
namespace ABlocks\Blocks\AtomicImage;

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

use ABlocks\Classes\AtomicBlockBase;

/**
 * atomic-image — a single <img> with the atomic style system (object-fit,
 * sizing, border, spacing). Static markup; only the scoped CSS is rendered here.
 */
class Block extends AtomicBlockBase {
	protected $block_name = 'atomic-image';
}

```
