PluginProbe
YayMail – WooCommerce Email Customizer / 4.3.4
YayMail – WooCommerce Email Customizer v4.3.4
4.4.4 4.4.3 4.4.2 4.4.1 trunk 1.9.6 2.1.4 2.1.5 3.2.2 3.2.6 3.2.7.1 3.2.8.1 3.2.9 3.3 3.3.1 3.3.4 3.3.5 3.3.6 3.3.7 3.3.8 3.3.9 3.4 3.4.1 3.4.2 3.4.3 All 55 releases
yaymail / src / TemplatePatterns / Patterns / Gallery8.php

Gallery8.php in YayMail – WooCommerce Email Customizer 4.3.4, at src/TemplatePatterns/Patterns/Gallery8.php

140 lines 6.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 namespace YayMail\TemplatePatterns\Patterns;
3
4 use YayMail\Abstracts\BasePattern;
5 use YayMail\Elements\Column;
6 use YayMail\Elements\ColumnLayout;
7 use YayMail\Elements\Image;
8 use YayMail\Elements\Text;
9 use YayMail\TemplatePatterns\SectionTemplates\Gallery;
10 use YayMail\Utils\SingletonTrait;
11
12 /** */
13 class Gallery8 extends BasePattern {
14
15 use SingletonTrait;
16
17 public const TYPE = 'gallery_8';
18
19 private function __construct() {
20 $this->id = uniqid();
21 $this->section = Gallery::TYPE;
22 $this->position = 17;
23 $this->name = __( 'Gallery 8', 'yaymail' );
24 $this->elements = [
25 ColumnLayout::get_object_data(
26 4,
27 [
28 'inner_background_color' => '#ffffff00',
29 'padding' => [
30 'top' => 20,
31 'bottom' => 2,
32 'left' => 20,
33 'right' => 20,
34 ],
35 'children' => [
36 Column::get_object_data(
37 25,
38 [
39 'children' => [
40 Image::get_object_data(
41 [
42 'src' => 'https://images.wpbrandy.com/uploads/yaymail-gallery-8-img-1.png',
43 'width' => 143,
44 'align' => 'center',
45 'background_color' => '#ffffff00',
46 'padding' => [
47 'top' => 5,
48 'bottom' => 5,
49 'right' => 0,
50 'left' => 0,
51 ],
52 ]
53 ),
54
55 ],
56 ]
57 ),
58 Column::get_object_data(
59 25,
60 [
61 'children' => [
62 Image::get_object_data(
63 [
64 'src' => 'https://images.wpbrandy.com/uploads/yaymail-gallery-8-img-2.png',
65 'width' => 143,
66 'align' => 'center',
67 'background_color' => '#ffffff00',
68 'padding' => [
69 'top' => 5,
70 'bottom' => 5,
71 'right' => 0,
72 'left' => 0,
73 ],
74 ]
75 ),
76 ],
77 ]
78 ),
79 Column::get_object_data(
80 25,
81 [
82 'children' => [
83 Image::get_object_data(
84 [
85 'src' => 'https://images.wpbrandy.com/uploads/yaymail-gallery-8-img-3.png',
86 'width' => 143,
87 'align' => 'center',
88 'background_color' => '#ffffff00',
89 'padding' => [
90 'top' => 5,
91 'bottom' => 5,
92 'right' => 0,
93 'left' => 0,
94 ],
95 ]
96 ),
97 ],
98 ]
99 ),
100 Column::get_object_data(
101 25,
102 [
103 'children' => [
104 Image::get_object_data(
105 [
106 'src' => 'https://images.wpbrandy.com/uploads/yaymail-gallery-8-img-4.png',
107 'width' => 143,
108 'align' => 'center',
109 'background_color' => '#ffffff00',
110 'padding' => [
111 'top' => 5,
112 'bottom' => 5,
113 'right' => 0,
114 'left' => 0,
115 ],
116 ]
117 ),
118 ],
119 ]
120 ),
121 ],
122 ]
123 ),
124 Text::get_object_data(
125 [
126 'background_color' => '#ffffff',
127 'text_color' => '#242527',
128 'rich_text' => '<p style="text-align: center; margin: 0;"><span style="font-size: 16px; font-weight: 500;">Explore more at @[yaymail_site_name]</span></p>',
129 'padding' => [
130 'top' => 5,
131 'bottom' => 20,
132 'left' => 50,
133 'right' => 50,
134 ],
135 ]
136 ),
137 ];
138 }
139 }
140