File "Column.php"
Full Path: /home/bettaeza/flyinsyria.com/Template/Blocks/Column.php
File size: 541 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Modules\Template\Blocks;
class Column extends BaseBlock
{
public function getName()
{
return __('Column');
}
public function getOptions()
{
return [
'child_of' => ['row'],
'is_container' => true,
'component' => 'ColumnBlock',
'settings' => [
[
'size' => [
'type' => 'size'
]
]
]
];
}
}