PluginProbe
YayMail – WooCommerce Email Customizer / trunk
YayMail – WooCommerce Email Customizer vtrunk
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 / Gallery5.php

Gallery5.php in YayMail – WooCommerce Email Customizer trunk, at src/TemplatePatterns/Patterns/Gallery5.php

174 lines 8.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 Gallery5 extends BasePattern {
14
15 use SingletonTrait;
16
17 public const TYPE = 'gallery_5';
18
19 private function __construct() {
20 $this->id = uniqid();
21 $this->section = Gallery::TYPE;
22 $this->position = 14;
23 $this->name = __( 'Gallery 5', 'yaymail' );
24 $this->elements = [
25 Image::get_object_data(
26 [
27 'src' => 'https://images.wpbrandy.com/uploads/yaymail-gallery-5-icon.png',
28 'width' => 50,
29 'align' => 'center',
30 'alt' => 'Icon',
31 'padding' => [
32 'top' => 15,
33 'bottom' => 10,
34 'left' => 30,
35 'right' => 30,
36 ],
37 ]
38 ),
39 Text::get_object_data(
40 [
41 'background_color' => '#ffffff',
42 'text_color' => '#242527',
43 'rich_text' => '<p style="text-align: center; margin: 0;"><span style="font-size: 18px; font-weight: 600;">Moments that suddenly make us realize that this life always brings us things the most surprising and wonderful!</span></p>',
44 'padding' => [
45 'top' => 10,
46 'bottom' => 10,
47 'left' => 30,
48 'right' => 30,
49 ],
50 ]
51 ),
52 ColumnLayout::get_object_data(
53 3,
54 [
55 'inner_background_color' => '#ffffff00',
56 'padding' => [
57 'top' => 0,
58 'bottom' => 10,
59 'left' => 0,
60 'right' => 0,
61 ],
62 'children' => [
63 Column::get_object_data(
64 33,
65 [
66 'children' => [
67 Image::get_object_data(
68 [
69 'src' => 'https://images.wpbrandy.com/uploads/yaymail-gallery-5-img-1.png',
70 'width' => 176,
71 'align' => 'center',
72 'background_color' => '#ffffff00',
73 'padding' => [
74 'top' => 5,
75 'bottom' => 7,
76 'right' => 0,
77 'left' => 18,
78 ],
79 ]
80 ),
81 Image::get_object_data(
82 [
83 'src' => 'https://images.wpbrandy.com/uploads/yaymail-gallery-5-img-2.png',
84 'width' => 186,
85 'align' => 'center',
86 'background_color' => '#ffffff00',
87 'padding' => [
88 'top' => 11,
89 'bottom' => 7,
90 'right' => 4,
91 'left' => 22,
92 ],
93 ]
94 ),
95 ],
96 ]
97 ),
98 Column::get_object_data(
99 33,
100 [
101 'children' => [
102 Image::get_object_data(
103 [
104 'src' => 'https://images.wpbrandy.com/uploads/yaymail-gallery-5-img-3.png',
105 'width' => 175,
106 'align' => 'center',
107 'background_color' => '#ffffff00',
108 'padding' => [
109 'top' => 5,
110 'bottom' => 8,
111 'right' => 7,
112 'left' => 7,
113 ],
114 ]
115 ),
116 Image::get_object_data(
117 [
118 'src' => 'https://images.wpbrandy.com/uploads/yaymail-gallery-5-img-4.png',
119 'width' => 175,
120 'align' => 'center',
121 'background_color' => '#ffffff00',
122 'padding' => [
123 'top' => 10,
124 'bottom' => 5,
125 'right' => 5,
126 'left' => 5,
127 ],
128 ]
129 ),
130 ],
131 ]
132 ),
133 Column::get_object_data(
134 33,
135 [
136 'children' => [
137 Image::get_object_data(
138 [
139 'src' => 'https://images.wpbrandy.com/uploads/yaymail-gallery-5-img-5.png',
140 'width' => 176,
141 'align' => 'center',
142 'background_color' => '#ffffff00',
143 'padding' => [
144 'top' => 5,
145 'bottom' => 7,
146 'right' => 18,
147 'left' => 0,
148 ],
149 ]
150 ),
151 Image::get_object_data(
152 [
153 'src' => 'https://images.wpbrandy.com/uploads/yaymail-gallery-5-img-6.png',
154 'width' => 180,
155 'align' => 'center',
156 'background_color' => '#ffffff00',
157 'padding' => [
158 'top' => 11,
159 'bottom' => 5,
160 'right' => 22,
161 'left' => 4,
162 ],
163 ]
164 ),
165 ],
166 ]
167 ),
168 ],
169 ]
170 ),
171 ];
172 }
173 }
174