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

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

116 lines 5.2 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\Button;
6 use YayMail\Elements\Column;
7 use YayMail\Elements\ColumnLayout;
8 use YayMail\Elements\Image;
9 use YayMail\Elements\Text;
10 use YayMail\TemplatePatterns\SectionTemplates\Banner;
11 use YayMail\Utils\SingletonTrait;
12
13 /**
14 * Banner7 Elements
15 * */
16 class Banner7 extends BasePattern {
17 use SingletonTrait;
18
19 public const TYPE = 'banner_7';
20
21 public function __construct() {
22 $this->id = uniqid();
23 $this->section = Banner::TYPE;
24 $this->position = 70;
25 $this->name = __( 'Banner 7', 'yaymail' );
26 $this->elements = [
27 ColumnLayout::get_object_data(
28 2,
29 [
30 'inner_background_color' => '#ffffff00',
31 'background_image' => [
32 'url' => 'https://images.wpbrandy.com/uploads/yaymail-banner-7-img-1.jpg',
33 'position' => 'top_left',
34 'x_position' => 100,
35 'y_position' => 0,
36 'size' => 'cover',
37 'repeat' => 'no-repeat',
38 ],
39 'padding' => [
40 'top' => 0,
41 'bottom' => 0,
42 'left' => 0,
43 'right' => 0,
44 ],
45 'children' => [
46 Column::get_object_data(
47 48,
48 [
49 'children' => [
50 Text::get_object_data(
51 [
52 'rich_text' => '<p style="font-size: 20px; text-align: left; margin: 0px;"><span style="font-size: 24px;"><strong> It\'s time to enjoy your new products.</strong></span></p>',
53 'background_color' => '#ffffff00',
54 'padding' => [
55 'top' => 20,
56 'bottom' => 0,
57 'right' => 20,
58 'left' => 30,
59 ],
60 'text_color' => '#ffffff',
61 ]
62 ),
63 Button::get_object_data(
64 [
65 'text' => 'Check it Out',
66 'font_size' => 14,
67 'border_radius' => [
68 'top_left' => 30,
69 'top_right' => 30,
70 'bottom_left' => 30,
71 'bottom_right' => 30,
72 ],
73 'padding' => [
74 'top' => 20,
75 'bottom' => 20,
76 'left' => 30,
77 'right' => 30,
78 ],
79 'background_color' => '#ffffff00',
80 'button_background_color' => '#ffffff',
81 'text_color' => '#C85E1E',
82 'width' => 65,
83 'align' => 'left',
84 ]
85 ),
86 ],
87 ]
88 ),
89 Column::get_object_data(
90 52,
91 [
92 'children' => [
93 Image::get_object_data(
94 [
95 'src' => 'https://images.wpbrandy.com/uploads/yaymail-banner-7-img-3.png',
96 'padding' => [
97 'top' => 0,
98 'bottom' => 0,
99 'right' => 0,
100 'left' => 0,
101 ],
102 'align' => 'right',
103 'background_color' => '#ffffff00',
104 'width' => 605,
105 ]
106 ),
107 ],
108 ]
109 ),
110 ],
111 ]
112 ),
113 ];
114 }
115 }
116