Files
piratepoet/lib/Newsletter/Editor/LayoutHelper.php
2018-05-23 10:39:08 +00:00

30 lines
604 B
PHP

<?php
namespace MailPoet\Newsletter\Editor;
class LayoutHelper {
static function row($blocks) {
return array(
'type' => 'container',
'orientation' => 'horizontal',
'styles' => array(
'block' => array(
'backgroundColor' => 'transparent'
)
),
'blocks' => $blocks
);
}
static function col($blocks) {
return array(
'type' => 'container',
'orientation' => 'vertical',
'styles' => array(
'block' => array(
'backgroundColor' => 'transparent'
)
),
'blocks' => $blocks
);
}
}