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

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

83 lines 3.6 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\ColumnLayout;
6 use YayMail\Elements\Column;
7 use YayMail\Elements\Text;
8 use YayMail\TemplatePatterns\SectionTemplates\Banner;
9 use YayMail\Utils\SingletonTrait;
10
11 /**
12 * Banner2 Elements
13 */
14 class Banner2 extends BasePattern {
15 use SingletonTrait;
16
17 public const TYPE = 'banner_2';
18
19 private function __construct() {
20 $this->id = uniqid();
21 $this->section = Banner::TYPE;
22 $this->position = 20;
23 $this->name = __( 'Banner 2', 'yaymail' );
24 $this->elements = [
25 ColumnLayout::get_object_data(
26 1,
27 [
28 'inner_background_color' => '#ffffff00',
29 'padding' => [
30 'top' => 30,
31 'bottom' => 30,
32 'left' => 0,
33 'right' => 0,
34 ],
35 'background_image' => [
36 'url' => 'https://images.wpbrandy.com/uploads/yaymail-banner-2-img-1.jpg',
37 'position' => 'custom',
38 'x_position' => 100,
39 'y_position' => 0,
40 'size' => 'cover',
41 'repeat' => 'no-repeat',
42 ],
43 'children' => [
44 Column::get_object_data(
45 100,
46 [
47 'children' => [
48 Text::get_object_data(
49 [
50 'rich_text' => '<p style="font-size: 18px; margin: 0px; text-align: center;"><span style="font-size: 30px;"><strong>New products for November Check \'em out!</strong></span></p>',
51 'padding' => [
52 'top' => 0,
53 'bottom' => 0,
54 'left' => 100,
55 'right' => 100,
56 ],
57 'background_color' => '#ffffff00',
58 'text_color' => '#333439',
59 ]
60 ),
61 Text::get_object_data(
62 [
63 'rich_text' => '<p style="font-size: 16px; text-align: center; margin: 0;"><u>Explore Now</u> <img src="https://images.wpbrandy.com/uploads/yaymail-banner-img-arrow-1.png" alt="" width="12" height="12" style="width:20px !important; height:20px !important;"/></p>',
64 'padding' => [
65 'top' => 10,
66 'bottom' => 0,
67 'left' => 0,
68 'right' => 0,
69 ],
70 'background_color' => '#ffffff00',
71 'text_color' => '#333439',
72 ]
73 ),
74 ],
75 ]
76 ),
77 ],
78 ]
79 ),
80 ];
81 }
82 }
83