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 / Gallery1.php

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

118 lines 5.7 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 Gallery1 extends BasePattern {
14
15 use SingletonTrait;
16
17 public const TYPE = 'gallery_1';
18
19 private function __construct() {
20 $this->id = uniqid();
21 $this->section = Gallery::TYPE;
22 $this->position = 10;
23 $this->name = __( 'Gallery 1', 'yaymail' );
24 $this->elements = [
25 ColumnLayout::get_object_data(
26 1,
27 [
28 'inner_background_color' => '#ffffff00',
29 'padding' => [
30 'top' => 10,
31 'bottom' => 10,
32 'left' => 40,
33 'right' => 40,
34 ],
35 'children' => [
36 Column::get_object_data(
37 100,
38 [
39 'children' => [
40 Image::get_object_data(
41 [
42 'src' => 'https://images.wpbrandy.com/uploads/yaymail-instagram-icon-1.png',
43 'padding' => [
44 'top' => 10,
45 'bottom' => 10,
46 'right' => 0,
47 'left' => 0,
48 ],
49 'align' => 'center',
50 'background_color' => '#ffffff00',
51 'width' => 50,
52 ]
53 ),
54 Text::get_object_data(
55 [
56 'rich_text' => '<p style="text-align: center; margin: 0;"><span style="font-size: 18px; font-weight: 600;">EXPLORE OUR LATEST SPRING 2024 COLLECTION!</span></p>',
57 'padding' => [
58 'top' => 10,
59 'right' => 0,
60 'bottom' => 20,
61 'left' => 0,
62 ],
63 'text_color' => '#242527',
64 'background_color' => '#ffffff00',
65 ]
66 ),
67 Image::get_object_data(
68 [
69 'src' => 'https://images.wpbrandy.com/uploads/yaymail-gallery-1-image.png',
70 'padding' => [
71 'top' => 10,
72 'bottom' => 15,
73 'right' => 0,
74 'left' => 0,
75 ],
76 'align' => 'center',
77 'background_color' => '#ffffff00',
78 'width' => 540,
79 ]
80 ),
81 Image::get_object_data(
82 [
83 'src' => 'https://images.wpbrandy.com/uploads/yaymail-gallery-1-image-2.png',
84 'padding' => [
85 'top' => 0,
86 'bottom' => 0,
87 'right' => 0,
88 'left' => 0,
89 ],
90 'align' => 'center',
91 'background_color' => '#ffffff00',
92 'width' => 540,
93 ]
94 ),
95 Image::get_object_data(
96 [
97 'src' => 'https://images.wpbrandy.com/uploads/yaymail-gallery-1-image-3.png',
98 'padding' => [
99 'top' => 15,
100 'bottom' => 20,
101 'right' => 0,
102 'left' => 0,
103 ],
104 'align' => 'center',
105 'background_color' => '#ffffff00',
106 'width' => 540,
107 ]
108 ),
109 ],
110 ]
111 ),
112 ],
113 ]
114 ),
115 ];
116 }
117 }
118