| 1 |
<?php |
| 2 |
namespace ABlocks\Blocks\AtomicText; |
| 3 |
|
| 4 |
if ( ! defined( 'ABSPATH' ) ) { |
| 5 |
exit; |
| 6 |
} |
| 7 |
|
| 8 |
use ABlocks\Classes\AtomicBlockBase; |
| 9 |
|
| 10 |
/** |
| 11 |
* Atomic Text block. |
| 12 |
* |
| 13 |
* Renders a single semantic tag (no wrapper). All style compilation, per-state |
| 14 |
* and per-breakpoint variants, and interaction animations come from |
| 15 |
* AtomicBlockBase — this block adds nothing of its own. |
| 16 |
*/ |
| 17 |
class Block extends AtomicBlockBase { |
| 18 |
protected $block_name = 'atomic-text'; |
| 19 |
} |
| 20 |
|