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