|
1
|
<?php |
|
2
|
|
|
3
|
namespace Kubio\Blocks; |
|
4
|
|
|
5
|
use Kubio\Core\Registry; |
|
6
|
|
|
7
|
class QueryLayout extends SectionBlock {} |
|
8
|
|
|
9
|
Registry::registerBlock( |
|
10
|
__DIR__, |
|
11
|
QueryLayout::class, |
|
12
|
array( |
|
13
|
'metadata' => '../section/block.json', |
|
14
|
'metadata_mixins' => array( 'block.json' ), |
|
15
|
) |
|
16
|
); |
|
17
|
|