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

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

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

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

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

use ABlocks\Classes\AtomicBlockBase;

/**
 * Atomic Text block.
 *
 * Renders a single semantic tag (no wrapper). All style compilation, per-state
 * and per-breakpoint variants, and interaction animations come from
 * AtomicBlockBase — this block adds nothing of its own.
 */
class Block extends AtomicBlockBase {
	protected $block_name = 'atomic-text';
}

```
