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

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

108 lines 4.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\Column;
6 use YayMail\Elements\ColumnLayout;
7 use YayMail\Elements\Image;
8 use YayMail\Elements\Button;
9 use YayMail\Elements\Text;
10 use YayMail\TemplatePatterns\SectionTemplates\Intro;
11 use YayMail\Utils\SingletonTrait;
12
13 /**
14 * Intro 5 Pattern
15 */
16 class Intro5 extends BasePattern {
17 use SingletonTrait;
18
19 public const TYPE = 'intro_5';
20
21 public function __construct() {
22 $this->id = uniqid();
23 $this->section = Intro::TYPE;
24 $this->position = 10;
25 $this->name = __( 'Intro 5', 'yaymail' );
26 $this->elements = [
27 ColumnLayout::get_object_data(
28 1,
29 [
30 'background_color' => '#ffffff00',
31 'padding' => [
32 'top' => 15,
33 'left' => 15,
34 'bottom' => 15,
35 'right' => 15,
36 ],
37 'inner_background_color' => '#ffffff00',
38 'background_image' => [
39 'url' => 'https://images.wpbrandy.com/uploads/yaymail-intro-5-bg.png',
40 'position' => 'center_right',
41 'size' => 'cover',
42 ],
43 'children' => [
44 Column::get_object_data(
45 100,
46 [
47 'children' => [
48 Image::get_object_data(
49 [
50 'src' => 'https://images.wpbrandy.com/uploads/yaymail-yay-logo-v2.png',
51 'width' => 221,
52 'align' => 'center',
53 'padding' => [
54 'top' => 0,
55 'right' => 0,
56 'bottom' => 0,
57 'left' => 0,
58 ],
59 'background_color' => '#ffffff00',
60 ]
61 ),
62
63 ],
64 ]
65 ),
66 ],
67 ]
68 ),
69 Text::get_object_data(
70 [
71 'rich_text' => '<p style="text-align: center; margin: 0; font-weight: 500;"><span style="font-size: 24px;">Welcome [yaymail_customer_name]! We\'re excited to unveil our latest product, meticulously crafted with you in mind!</span></p>',
72 'padding' => [
73 'top' => 40,
74 'right' => 80,
75 'bottom' => 23,
76 'left' => 80,
77 ],
78 'text_color' => '#333439',
79 'background_color' => '#FFFFFF',
80 ]
81 ),
82 Button::get_object_data(
83 [
84 'text' => 'Explore Now',
85 'background_color' => '#ffffff',
86 'button_background_color' => '#FFC900',
87 'text_color' => '#ffffff',
88 'align' => 'center',
89 'width' => 20,
90 'url' => '[yaymail_site_url]',
91 'padding' => [
92 'top' => 10,
93 'bottom' => 40,
94 'right' => 0,
95 'left' => 0,
96 ],
97 'border_radius' => [
98 'top_left' => 12,
99 'top_right' => 12,
100 'bottom_right' => 12,
101 'bottom_left' => 12,
102 ],
103 ]
104 ),
105 ];
106 }
107 }
108