PluginProbe
YayMail – WooCommerce Email Customizer / 4.4.0
YayMail – WooCommerce Email Customizer v4.4.0
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 / Offer2.php

Offer2.php in YayMail – WooCommerce Email Customizer 4.4.0, at src/TemplatePatterns/Patterns/Offer2.php

97 lines 4.8 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\Offer;
11 use YayMail\Utils\SingletonTrait;
12
13 /**
14 * Offer 2
15 */
16 class Offer2 extends BasePattern {
17 use SingletonTrait;
18
19 public const TYPE = 'offer_2';
20 public function __construct() {
21 $this->id = uniqid();
22 $this->section = Offer::TYPE;
23 $this->position = 11;
24 $this->name = __( 'Offer 2', 'yaymail' );
25 $this->elements = [
26 ColumnLayout::get_object_data(
27 1,
28 [
29 'inner_background_color' => '#ffffff00',
30 'padding' => [
31 'top' => 10,
32 'bottom' => 10,
33 'right' => 40,
34 'left' => 40,
35 ],
36 'background_image' => [
37 'url' => 'https://images.wpbrandy.com/uploads/yaymail-offer-2-bg.png',
38 'position' => 'center_center',
39 'x_position' => 52,
40 'y_position' => 50,
41 'repeat' => 'no-repeat',
42 'size' => 'cover',
43 ],
44 'children' => [
45 Column::get_object_data(
46 100,
47 [
48 'children' => [
49 Text::get_object_data(
50 [
51 'background_color' => '#ffffff00',
52 'text_color' => '#E2E6EE',
53 'rich_text' => '<p style="text-align: left; margin: 0;"><span style="font-size: 25px; font-weight: 700;"><b>Enjoy Up to 50% Off!</b></span></p>',
54 'padding' => [
55 'top' => 15,
56 'bottom' => 5,
57 'right' => 50,
58 'left' => 0,
59 ],
60 ]
61 ),
62 Text::get_object_data(
63 [
64 'background_color' => '#ffffff00',
65 'text_color' => '#E2E6EE',
66 'rich_text' => '<p style="text-align: left; margin: 0;"><span style="font-size: 15px; font-weight: 300;">Copy and paste the promo code bellow during checkout to enjoy exclusive discounts on your purchase:</span></p>',
67 'padding' => [
68 'top' => 5,
69 'bottom' => 10,
70 'right' => 50,
71 'left' => 0,
72 ],
73 ]
74 ),
75 Text::get_object_data(
76 [
77 'background_color' => '#ffffff00',
78 'text_color' => '#FFFFFF',
79 'rich_text' => '<p><span style="border: 1px dashed #ffffff59; border-radius: 10px; font-size: 15; font-weight: 500; text-align: center; width: fit-content; padding: 10px 15px; letter-spacing: 3px;">COUPON50F</span><a style="padding-left: 20px; text-decoration: underline; font-size: 15px; font-weight: 500; color: inherit; text-underline-offset: 4px;" href="#">Shop Now <img style="margin-left: 3px; width: 12px;" src="https://images.wpbrandy.com/uploads/yaymail-offer-2-img.png" alt="arrow_right" /></a></p>',
80 'padding' => [
81 'top' => 25,
82 'bottom' => 25,
83 'right' => 5,
84 'left' => 5,
85 ],
86 ]
87 ),
88 ],
89 ]
90 ),
91 ],
92 ]
93 ),
94 ];
95 }
96 }
97