# ablocks/2.13.1/includes/blocks/atomic-flex/block.php

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

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

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

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

use ABlocks\Classes\AtomicContainerBase;

/**
 * atomic-flex — an atomic container block. All style compilation, per-state/device
 * variants and interaction animations come from AtomicBlockBase; the front-end
 * rewrite of a linked container comes from AtomicContainerBase.
 */
class Block extends AtomicContainerBase {
	protected $block_name = 'atomic-flex';
}

```
