PATH:
home
/
lab2454c
/
caimegroup.com
/
wp-content
/
plugins
/
mailpoet
/
lib
/
Newsletter
/
Editor
<?php // phpcs:ignore SlevomatCodingStandard.TypeHints.DeclareStrictTypes.DeclareStrictTypesMissing namespace MailPoet\Newsletter\Editor; if (!defined('ABSPATH')) exit; class LayoutHelper { public static function row($blocks, $styles = []) { if (empty($styles['backgroundColor'])) { $styles['backgroundColor'] = 'transparent'; } return [ 'type' => 'container', 'orientation' => 'horizontal', 'styles' => ['block' => $styles], 'blocks' => $blocks, ]; } public static function col($blocks, $styles = []) { if (empty($styles['backgroundColor'])) { $styles['backgroundColor'] = 'transparent'; } return [ 'type' => 'container', 'orientation' => 'vertical', 'styles' => ['block' => $styles], 'blocks' => $blocks, ]; } }
[-] index.php
[edit]
[+]
..
[-] PostContentManager.php
[edit]
[-] PostListTransformer.php
[edit]
[-] Transformer.php
[edit]
[-] PostTransformer.php
[edit]
[-] StructureTransformer.php
[edit]
[-] LayoutHelper.php
[edit]
[-] PostTransformerContentsExtractor.php
[edit]
[-] TitleListTransformer.php
[edit]
[-] MetaInformationManager.php
[edit]