| 1 |
<?php |
| 2 |
namespace ABlocks\Blocks\AtomicImage; |
| 3 |
|
| 4 |
if ( ! defined( 'ABSPATH' ) ) { |
| 5 |
exit; |
| 6 |
} |
| 7 |
|
| 8 |
use ABlocks\Classes\AtomicBlockBase; |
| 9 |
|
| 10 |
/** |
| 11 |
* atomic-image — a single <img> with the atomic style system (object-fit, |
| 12 |
* sizing, border, spacing). Static markup; only the scoped CSS is rendered here. |
| 13 |
*/ |
| 14 |
class Block extends AtomicBlockBase { |
| 15 |
protected $block_name = 'atomic-image'; |
| 16 |
} |
| 17 |
|