724 lines
21 KiB
PHP
724 lines
21 KiB
PHP
|
<?php // phpcs:ignore SlevomatCodingStandard.TypeHints.DeclareStrictTypes.DeclareStrictTypesMissing
|
||
|
|
||
|
namespace MailPoet\WooCommerce\TransactionalEmails;
|
||
|
|
||
|
if (!defined('ABSPATH')) exit;
|
||
|
|
||
|
|
||
|
use MailPoet\Config\Env;
|
||
|
|
||
|
class Template {
|
||
|
public function create($wcEmailSettings) {
|
||
|
$socialIconUrl = Env::$assetsUrl . '/img/newsletter_editor/social-icons';
|
||
|
return [
|
||
|
'content' =>
|
||
|
[
|
||
|
'type' => 'container',
|
||
|
'columnLayout' => false,
|
||
|
'orientation' => 'vertical',
|
||
|
'image' =>
|
||
|
[
|
||
|
'src' => null,
|
||
|
'display' => 'scale',
|
||
|
],
|
||
|
'styles' =>
|
||
|
[
|
||
|
'block' =>
|
||
|
[
|
||
|
'backgroundColor' => 'transparent',
|
||
|
],
|
||
|
],
|
||
|
'blocks' =>
|
||
|
[
|
||
|
0 =>
|
||
|
[
|
||
|
'type' => 'container',
|
||
|
'columnLayout' => false,
|
||
|
'orientation' => 'horizontal',
|
||
|
'image' =>
|
||
|
[
|
||
|
'src' => null,
|
||
|
'display' => 'scale',
|
||
|
],
|
||
|
'styles' =>
|
||
|
[
|
||
|
'block' =>
|
||
|
[
|
||
|
'backgroundColor' => 'transparent',
|
||
|
],
|
||
|
],
|
||
|
'blocks' =>
|
||
|
[
|
||
|
0 =>
|
||
|
[
|
||
|
'type' => 'container',
|
||
|
'columnLayout' => false,
|
||
|
'orientation' => 'vertical',
|
||
|
'image' =>
|
||
|
[
|
||
|
'src' => null,
|
||
|
'display' => 'scale',
|
||
|
],
|
||
|
'styles' =>
|
||
|
[
|
||
|
'block' =>
|
||
|
[
|
||
|
'backgroundColor' => 'transparent',
|
||
|
],
|
||
|
],
|
||
|
'blocks' =>
|
||
|
[
|
||
|
0 =>
|
||
|
[
|
||
|
'type' => 'spacer',
|
||
|
'styles' =>
|
||
|
[
|
||
|
'block' =>
|
||
|
[
|
||
|
'backgroundColor' => 'transparent',
|
||
|
'height' => '20px',
|
||
|
],
|
||
|
],
|
||
|
],
|
||
|
1 =>
|
||
|
[
|
||
|
'type' => 'image',
|
||
|
'link' => '',
|
||
|
'src' => $wcEmailSettings['header_image'],
|
||
|
'alt' => '',
|
||
|
'fullWidth' => false,
|
||
|
'width' => '180px',
|
||
|
'height' => '362px',
|
||
|
'styles' =>
|
||
|
[
|
||
|
'block' =>
|
||
|
[
|
||
|
'textAlign' => 'center',
|
||
|
],
|
||
|
],
|
||
|
],
|
||
|
2 =>
|
||
|
[
|
||
|
'type' => 'spacer',
|
||
|
'styles' =>
|
||
|
[
|
||
|
'block' =>
|
||
|
[
|
||
|
'backgroundColor' => 'transparent',
|
||
|
'height' => '20px',
|
||
|
],
|
||
|
],
|
||
|
],
|
||
|
],
|
||
|
],
|
||
|
],
|
||
|
],
|
||
|
1 =>
|
||
|
[
|
||
|
'type' => 'woocommerceHeading',
|
||
|
],
|
||
|
2 =>
|
||
|
[
|
||
|
'type' => 'container',
|
||
|
'columnLayout' => false,
|
||
|
'orientation' => 'horizontal',
|
||
|
'image' =>
|
||
|
[
|
||
|
'src' => null,
|
||
|
'display' => 'scale',
|
||
|
],
|
||
|
'styles' =>
|
||
|
[
|
||
|
'block' =>
|
||
|
[
|
||
|
'backgroundColor' => 'transparent',
|
||
|
],
|
||
|
],
|
||
|
'blocks' =>
|
||
|
[
|
||
|
0 =>
|
||
|
[
|
||
|
'type' => 'container',
|
||
|
'columnLayout' => false,
|
||
|
'orientation' => 'vertical',
|
||
|
'image' =>
|
||
|
[
|
||
|
'src' => null,
|
||
|
'display' => 'scale',
|
||
|
],
|
||
|
'styles' =>
|
||
|
[
|
||
|
'block' =>
|
||
|
[
|
||
|
'backgroundColor' => 'transparent',
|
||
|
],
|
||
|
],
|
||
|
'blocks' =>
|
||
|
[
|
||
|
0 =>
|
||
|
[
|
||
|
'type' => 'spacer',
|
||
|
'styles' =>
|
||
|
[
|
||
|
'block' =>
|
||
|
[
|
||
|
'backgroundColor' => 'transparent',
|
||
|
'height' => '20px',
|
||
|
],
|
||
|
],
|
||
|
],
|
||
|
],
|
||
|
],
|
||
|
],
|
||
|
],
|
||
|
3 =>
|
||
|
[
|
||
|
'type' => 'woocommerceContent',
|
||
|
],
|
||
|
4 =>
|
||
|
[
|
||
|
'type' => 'container',
|
||
|
'columnLayout' => false,
|
||
|
'orientation' => 'horizontal',
|
||
|
'image' =>
|
||
|
[
|
||
|
'src' => null,
|
||
|
'display' => 'scale',
|
||
|
],
|
||
|
'styles' =>
|
||
|
[
|
||
|
'block' =>
|
||
|
[
|
||
|
'backgroundColor' => 'transparent',
|
||
|
],
|
||
|
],
|
||
|
'blocks' =>
|
||
|
[
|
||
|
0 =>
|
||
|
[
|
||
|
'type' => 'container',
|
||
|
'columnLayout' => false,
|
||
|
'orientation' => 'vertical',
|
||
|
'image' =>
|
||
|
[
|
||
|
'src' => null,
|
||
|
'display' => 'scale',
|
||
|
],
|
||
|
'styles' =>
|
||
|
[
|
||
|
'block' =>
|
||
|
[
|
||
|
'backgroundColor' => 'transparent',
|
||
|
],
|
||
|
],
|
||
|
'blocks' =>
|
||
|
[
|
||
|
0 =>
|
||
|
[
|
||
|
'type' => 'spacer',
|
||
|
'styles' =>
|
||
|
[
|
||
|
'block' =>
|
||
|
[
|
||
|
'backgroundColor' => 'transparent',
|
||
|
'height' => '20px',
|
||
|
],
|
||
|
],
|
||
|
],
|
||
|
],
|
||
|
],
|
||
|
],
|
||
|
],
|
||
|
5 =>
|
||
|
[
|
||
|
'type' => 'container',
|
||
|
'columnLayout' => false,
|
||
|
'orientation' => 'horizontal',
|
||
|
'image' =>
|
||
|
[
|
||
|
'src' => null,
|
||
|
'display' => 'scale',
|
||
|
],
|
||
|
'styles' =>
|
||
|
[
|
||
|
'block' =>
|
||
|
[
|
||
|
'backgroundColor' => 'transparent',
|
||
|
],
|
||
|
],
|
||
|
'blocks' =>
|
||
|
[
|
||
|
0 =>
|
||
|
[
|
||
|
'type' => 'container',
|
||
|
'columnLayout' => false,
|
||
|
'orientation' => 'vertical',
|
||
|
'image' =>
|
||
|
[
|
||
|
'src' => null,
|
||
|
'display' => 'scale',
|
||
|
],
|
||
|
'styles' =>
|
||
|
[
|
||
|
'block' =>
|
||
|
[
|
||
|
'backgroundColor' => 'transparent',
|
||
|
],
|
||
|
],
|
||
|
'blocks' =>
|
||
|
[
|
||
|
0 =>
|
||
|
[
|
||
|
'type' => 'spacer',
|
||
|
'styles' =>
|
||
|
[
|
||
|
'block' =>
|
||
|
[
|
||
|
'backgroundColor' => 'transparent',
|
||
|
'height' => '20px',
|
||
|
],
|
||
|
],
|
||
|
],
|
||
|
1 =>
|
||
|
[
|
||
|
'type' => 'text',
|
||
|
'text' => '<p style="text-align: center;">' . $wcEmailSettings['footer_text'] . '</p>',
|
||
|
],
|
||
|
],
|
||
|
],
|
||
|
],
|
||
|
],
|
||
|
],
|
||
|
],
|
||
|
'globalStyles' =>
|
||
|
[
|
||
|
'text' =>
|
||
|
[
|
||
|
'fontColor' => $wcEmailSettings['text_color'],
|
||
|
'fontFamily' => 'Arial',
|
||
|
'fontSize' => '14px',
|
||
|
'lineHeight' => '1.6',
|
||
|
],
|
||
|
'h1' =>
|
||
|
[
|
||
|
'fontColor' => $wcEmailSettings['base_color'],
|
||
|
'fontFamily' => 'Source Sans Pro',
|
||
|
'fontSize' => '36px',
|
||
|
'lineHeight' => '1.6',
|
||
|
],
|
||
|
'h2' =>
|
||
|
[
|
||
|
'fontColor' => $wcEmailSettings['base_color'],
|
||
|
'fontFamily' => 'Verdana',
|
||
|
'fontSize' => '24px',
|
||
|
'lineHeight' => '1.6',
|
||
|
],
|
||
|
'h3' =>
|
||
|
[
|
||
|
'fontColor' => $wcEmailSettings['base_color'],
|
||
|
'fontFamily' => 'Trebuchet MS',
|
||
|
'fontSize' => '22px',
|
||
|
'lineHeight' => '1.6',
|
||
|
],
|
||
|
'link' =>
|
||
|
[
|
||
|
'fontColor' => $wcEmailSettings['link_color'],
|
||
|
'textDecoration' => 'underline',
|
||
|
],
|
||
|
'wrapper' =>
|
||
|
[
|
||
|
'backgroundColor' => $wcEmailSettings['body_background_color'],
|
||
|
],
|
||
|
'body' =>
|
||
|
[
|
||
|
'backgroundColor' => $wcEmailSettings['background_color'],
|
||
|
],
|
||
|
'woocommerce' =>
|
||
|
[
|
||
|
'brandingColor' => $wcEmailSettings['base_color'],
|
||
|
'headingFontColor' => $wcEmailSettings['base_text_color'],
|
||
|
],
|
||
|
],
|
||
|
'blockDefaults' =>
|
||
|
[
|
||
|
'automatedLatestContent' =>
|
||
|
[
|
||
|
'amount' => '5',
|
||
|
'withLayout' => false,
|
||
|
'contentType' => 'post',
|
||
|
'inclusionType' => 'include',
|
||
|
'displayType' => 'excerpt',
|
||
|
'titleFormat' => 'h1',
|
||
|
'titleAlignment' => 'left',
|
||
|
'titleIsLink' => false,
|
||
|
'imageFullWidth' => false,
|
||
|
'featuredImagePosition' => 'belowTitle',
|
||
|
'showAuthor' => 'no',
|
||
|
'authorPrecededBy' => 'Author:',
|
||
|
'showCategories' => 'no',
|
||
|
'categoriesPrecededBy' => 'Categories:',
|
||
|
'readMoreType' => 'button',
|
||
|
'readMoreText' => 'Read more',
|
||
|
'readMoreButton' =>
|
||
|
[
|
||
|
'text' => 'Read more',
|
||
|
'url' => '[postLink]',
|
||
|
'context' => 'automatedLatestContent.readMoreButton',
|
||
|
'styles' =>
|
||
|
[
|
||
|
'block' =>
|
||
|
[
|
||
|
'backgroundColor' => '#2ea1cd',
|
||
|
'borderColor' => '#0074a2',
|
||
|
'borderWidth' => '1px',
|
||
|
'borderRadius' => '5px',
|
||
|
'borderStyle' => 'solid',
|
||
|
'width' => '180px',
|
||
|
'lineHeight' => '40px',
|
||
|
'fontColor' => '#ffffff',
|
||
|
'fontFamily' => 'Verdana',
|
||
|
'fontSize' => '18px',
|
||
|
'fontWeight' => 'normal',
|
||
|
'textAlign' => 'center',
|
||
|
],
|
||
|
],
|
||
|
],
|
||
|
'sortBy' => 'newest',
|
||
|
'showDivider' => true,
|
||
|
'divider' =>
|
||
|
[
|
||
|
'context' => 'automatedLatestContent.divider',
|
||
|
'styles' =>
|
||
|
[
|
||
|
'block' =>
|
||
|
[
|
||
|
'backgroundColor' => 'transparent',
|
||
|
'padding' => '13px',
|
||
|
'borderStyle' => 'solid',
|
||
|
'borderWidth' => '3px',
|
||
|
'borderColor' => '#aaaaaa',
|
||
|
],
|
||
|
],
|
||
|
],
|
||
|
'backgroundColor' => '#ffffff',
|
||
|
'backgroundColorAlternate' => '#eeeeee',
|
||
|
],
|
||
|
'automatedLatestContentLayout' =>
|
||
|
[
|
||
|
'amount' => '5',
|
||
|
'withLayout' => true,
|
||
|
'contentType' => 'post',
|
||
|
'inclusionType' => 'include',
|
||
|
'displayType' => 'excerpt',
|
||
|
'titleFormat' => 'h1',
|
||
|
'titleAlignment' => 'left',
|
||
|
'titleIsLink' => false,
|
||
|
'imageFullWidth' => false,
|
||
|
'featuredImagePosition' => 'alternate',
|
||
|
'showAuthor' => 'no',
|
||
|
'authorPrecededBy' => 'Author:',
|
||
|
'showCategories' => 'no',
|
||
|
'categoriesPrecededBy' => 'Categories:',
|
||
|
'readMoreType' => 'button',
|
||
|
'readMoreText' => 'Read more',
|
||
|
'readMoreButton' =>
|
||
|
[
|
||
|
'text' => 'Read more',
|
||
|
'url' => '[postLink]',
|
||
|
'context' => 'automatedLatestContentLayout.readMoreButton',
|
||
|
'styles' =>
|
||
|
[
|
||
|
'block' =>
|
||
|
[
|
||
|
'backgroundColor' => '#2ea1cd',
|
||
|
'borderColor' => '#0074a2',
|
||
|
'borderWidth' => '1px',
|
||
|
'borderRadius' => '5px',
|
||
|
'borderStyle' => 'solid',
|
||
|
'width' => '180px',
|
||
|
'lineHeight' => '40px',
|
||
|
'fontColor' => '#ffffff',
|
||
|
'fontFamily' => 'Verdana',
|
||
|
'fontSize' => '18px',
|
||
|
'fontWeight' => 'normal',
|
||
|
'textAlign' => 'center',
|
||
|
],
|
||
|
],
|
||
|
],
|
||
|
'sortBy' => 'newest',
|
||
|
'showDivider' => true,
|
||
|
'divider' =>
|
||
|
[
|
||
|
'context' => 'automatedLatestContentLayout.divider',
|
||
|
'styles' =>
|
||
|
[
|
||
|
'block' =>
|
||
|
[
|
||
|
'backgroundColor' => 'transparent',
|
||
|
'padding' => '13px',
|
||
|
'borderStyle' => 'solid',
|
||
|
'borderWidth' => '3px',
|
||
|
'borderColor' => '#aaaaaa',
|
||
|
],
|
||
|
],
|
||
|
],
|
||
|
'backgroundColor' => '#ffffff',
|
||
|
'backgroundColorAlternate' => '#eeeeee',
|
||
|
],
|
||
|
'button' =>
|
||
|
[
|
||
|
'text' => 'Button',
|
||
|
'url' => '',
|
||
|
'styles' =>
|
||
|
[
|
||
|
'block' =>
|
||
|
[
|
||
|
'backgroundColor' => '#2ea1cd',
|
||
|
'borderColor' => '#0074a2',
|
||
|
'borderWidth' => '1px',
|
||
|
'borderRadius' => '5px',
|
||
|
'borderStyle' => 'solid',
|
||
|
'width' => '180px',
|
||
|
'lineHeight' => '40px',
|
||
|
'fontColor' => '#ffffff',
|
||
|
'fontFamily' => 'Verdana',
|
||
|
'fontSize' => '18px',
|
||
|
'fontWeight' => 'normal',
|
||
|
'textAlign' => 'center',
|
||
|
],
|
||
|
],
|
||
|
],
|
||
|
'divider' =>
|
||
|
[
|
||
|
'styles' =>
|
||
|
[
|
||
|
'block' =>
|
||
|
[
|
||
|
'backgroundColor' => 'transparent',
|
||
|
'padding' => '13px',
|
||
|
'borderStyle' => 'solid',
|
||
|
'borderWidth' => '3px',
|
||
|
'borderColor' => '#aaaaaa',
|
||
|
],
|
||
|
],
|
||
|
],
|
||
|
'footer' =>
|
||
|
[
|
||
|
'text' => '<p><a href="[link:subscription_unsubscribe_url]">Unsubscribe</a> | <a href="[link:subscription_manage_url]">Manage subscription</a><br />Add your postal address here!</p>',
|
||
|
'styles' =>
|
||
|
[
|
||
|
'block' =>
|
||
|
[
|
||
|
'backgroundColor' => 'transparent',
|
||
|
],
|
||
|
'text' =>
|
||
|
[
|
||
|
'fontColor' => '#222222',
|
||
|
'fontFamily' => 'Arial',
|
||
|
'fontSize' => '12px',
|
||
|
'textAlign' => 'center',
|
||
|
],
|
||
|
'link' =>
|
||
|
[
|
||
|
'fontColor' => '#6cb7d4',
|
||
|
'textDecoration' => 'none',
|
||
|
],
|
||
|
],
|
||
|
],
|
||
|
'posts' =>
|
||
|
[
|
||
|
'amount' => '10',
|
||
|
'withLayout' => true,
|
||
|
'contentType' => 'post',
|
||
|
'postStatus' => 'publish',
|
||
|
'inclusionType' => 'include',
|
||
|
'displayType' => 'excerpt',
|
||
|
'titleFormat' => 'h1',
|
||
|
'titleAlignment' => 'left',
|
||
|
'titleIsLink' => false,
|
||
|
'imageFullWidth' => false,
|
||
|
'featuredImagePosition' => 'alternate',
|
||
|
'showAuthor' => 'no',
|
||
|
'authorPrecededBy' => 'Author:',
|
||
|
'showCategories' => 'no',
|
||
|
'categoriesPrecededBy' => 'Categories:',
|
||
|
'readMoreType' => 'link',
|
||
|
'readMoreText' => 'Read more',
|
||
|
'readMoreButton' =>
|
||
|
[
|
||
|
'text' => 'Read more',
|
||
|
'url' => '[postLink]',
|
||
|
'context' => 'posts.readMoreButton',
|
||
|
'styles' =>
|
||
|
[
|
||
|
'block' =>
|
||
|
[
|
||
|
'backgroundColor' => '#2ea1cd',
|
||
|
'borderColor' => '#0074a2',
|
||
|
'borderWidth' => '1px',
|
||
|
'borderRadius' => '5px',
|
||
|
'borderStyle' => 'solid',
|
||
|
'width' => '180px',
|
||
|
'lineHeight' => '40px',
|
||
|
'fontColor' => '#ffffff',
|
||
|
'fontFamily' => 'Verdana',
|
||
|
'fontSize' => '18px',
|
||
|
'fontWeight' => 'normal',
|
||
|
'textAlign' => 'center',
|
||
|
],
|
||
|
],
|
||
|
],
|
||
|
'sortBy' => 'newest',
|
||
|
'showDivider' => true,
|
||
|
'divider' =>
|
||
|
[
|
||
|
'context' => 'posts.divider',
|
||
|
'styles' =>
|
||
|
[
|
||
|
'block' =>
|
||
|
[
|
||
|
'backgroundColor' => 'transparent',
|
||
|
'padding' => '13px',
|
||
|
'borderStyle' => 'solid',
|
||
|
'borderWidth' => '3px',
|
||
|
'borderColor' => '#aaaaaa',
|
||
|
],
|
||
|
],
|
||
|
],
|
||
|
'backgroundColor' => '#ffffff',
|
||
|
'backgroundColorAlternate' => '#eeeeee',
|
||
|
],
|
||
|
'products' =>
|
||
|
[
|
||
|
'amount' => '10',
|
||
|
'withLayout' => true,
|
||
|
'contentType' => 'product',
|
||
|
'postStatus' => 'publish',
|
||
|
'inclusionType' => 'include',
|
||
|
'displayType' => 'excerpt',
|
||
|
'titleFormat' => 'h1',
|
||
|
'titleAlignment' => 'left',
|
||
|
'titleIsLink' => false,
|
||
|
'imageFullWidth' => false,
|
||
|
'featuredImagePosition' => 'alternate',
|
||
|
'pricePosition' => 'below',
|
||
|
'readMoreType' => 'link',
|
||
|
'readMoreText' => 'Buy now',
|
||
|
'readMoreButton' =>
|
||
|
[
|
||
|
'text' => 'Buy now',
|
||
|
'url' => '[postLink]',
|
||
|
'context' => 'posts.readMoreButton',
|
||
|
'styles' =>
|
||
|
[
|
||
|
'block' =>
|
||
|
[
|
||
|
'backgroundColor' => '#2ea1cd',
|
||
|
'borderColor' => '#0074a2',
|
||
|
'borderWidth' => '1px',
|
||
|
'borderRadius' => '5px',
|
||
|
'borderStyle' => 'solid',
|
||
|
'width' => '180px',
|
||
|
'lineHeight' => '40px',
|
||
|
'fontColor' => '#ffffff',
|
||
|
'fontFamily' => 'Verdana',
|
||
|
'fontSize' => '18px',
|
||
|
'fontWeight' => 'normal',
|
||
|
'textAlign' => 'center',
|
||
|
],
|
||
|
],
|
||
|
],
|
||
|
'sortBy' => 'newest',
|
||
|
'showDivider' => true,
|
||
|
'divider' =>
|
||
|
[
|
||
|
'context' => 'posts.divider',
|
||
|
'styles' =>
|
||
|
[
|
||
|
'block' =>
|
||
|
[
|
||
|
'backgroundColor' => 'transparent',
|
||
|
'padding' => '13px',
|
||
|
'borderStyle' => 'solid',
|
||
|
'borderWidth' => '3px',
|
||
|
'borderColor' => '#aaaaaa',
|
||
|
],
|
||
|
],
|
||
|
],
|
||
|
'backgroundColor' => '#ffffff',
|
||
|
'backgroundColorAlternate' => '#eeeeee',
|
||
|
],
|
||
|
'social' =>
|
||
|
[
|
||
|
'iconSet' => 'default',
|
||
|
'styles' =>
|
||
|
[
|
||
|
'block' =>
|
||
|
[
|
||
|
'textAlign' => 'center',
|
||
|
],
|
||
|
],
|
||
|
'icons' =>
|
||
|
[
|
||
|
0 =>
|
||
|
[
|
||
|
'type' => 'socialIcon',
|
||
|
'iconType' => 'facebook',
|
||
|
'link' => 'http://www.facebook.com',
|
||
|
'image' => $socialIconUrl . '/01-social/Facebook.png',
|
||
|
'height' => '32px',
|
||
|
'width' => '32px',
|
||
|
'text' => 'Facebook',
|
||
|
],
|
||
|
1 =>
|
||
|
[
|
||
|
'type' => 'socialIcon',
|
||
|
'iconType' => 'twitter',
|
||
|
'link' => 'http://www.twitter.com',
|
||
|
'image' => $socialIconUrl . '/01-social/Twitter.png',
|
||
|
'height' => '32px',
|
||
|
'width' => '32px',
|
||
|
'text' => 'Twitter',
|
||
|
],
|
||
|
],
|
||
|
],
|
||
|
'spacer' =>
|
||
|
[
|
||
|
'styles' =>
|
||
|
[
|
||
|
'block' =>
|
||
|
[
|
||
|
'backgroundColor' => 'transparent',
|
||
|
'height' => '20px',
|
||
|
],
|
||
|
],
|
||
|
'type' => 'spacer',
|
||
|
],
|
||
|
'header' =>
|
||
|
[
|
||
|
'text' => 'Display problems? <a href="[link:newsletter_view_in_browser_url]">Open this email in your web browser.</a>',
|
||
|
'styles' =>
|
||
|
[
|
||
|
'block' =>
|
||
|
[
|
||
|
'backgroundColor' => 'transparent',
|
||
|
],
|
||
|
'text' =>
|
||
|
[
|
||
|
'fontColor' => '#222222',
|
||
|
'fontFamily' => 'Arial',
|
||
|
'fontSize' => '12px',
|
||
|
'textAlign' => 'center',
|
||
|
],
|
||
|
'link' =>
|
||
|
[
|
||
|
'fontColor' => '#6cb7d4',
|
||
|
'textDecoration' => 'underline',
|
||
|
],
|
||
|
],
|
||
|
],
|
||
|
],
|
||
|
];
|
||
|
}
|
||
|
}
|