| 1 |
<?php |
| 2 |
namespace ABlocks\Blocks\AtomicFlex; |
| 3 |
|
| 4 |
if ( ! defined( 'ABSPATH' ) ) { |
| 5 |
exit; |
| 6 |
} |
| 7 |
|
| 8 |
use ABlocks\Classes\AtomicContainerBase; |
| 9 |
|
| 10 |
/** |
| 11 |
* atomic-flex — an atomic container block. All style compilation, per-state/device |
| 12 |
* variants and interaction animations come from AtomicBlockBase; the front-end |
| 13 |
* rewrite of a linked container comes from AtomicContainerBase. |
| 14 |
*/ |
| 15 |
class Block extends AtomicContainerBase { |
| 16 |
protected $block_name = 'atomic-flex'; |
| 17 |
} |
| 18 |
|