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

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

79 lines 2.9 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\Divider;
6 use YayMail\Elements\Image;
7 use YayMail\Elements\Text;
8 use YayMail\TemplatePatterns\SectionTemplates\Header;
9 use YayMail\Utils\SingletonTrait;
10
11 /**
12 * Header5 Elements
13 */
14 class Header5 extends BasePattern {
15
16 use SingletonTrait;
17
18 public const TYPE = 'header_5';
19
20 private function __construct() {
21 $this->id = uniqid();
22 $this->section = Header::TYPE;
23 $this->position = 50;
24 $this->name = __( 'Header 5', 'yaymail' );
25 $this->elements = [
26 Text::get_object_data(
27 [
28 'rich_text' => '<p style="margin: 0px; text-align: center;"><span><span style="color: #ffffff;">YOUR SHOPPING LIST FOR THE UPCOMING SEASON!</span> <strong><span style="color: #333439;">EXPLORE NOW</span></strong></span></p>',
29 'background_color' => '#ffc900',
30 'padding' => [
31 'top' => 10,
32 'right' => 20,
33 'bottom' => 10,
34 'left' => 20,
35 ],
36 ]
37 ),
38 Image::get_object_data(
39 [
40 'src' => 'https://images.wpbrandy.com/uploads/yaymail-footer-img-1.png',
41 'width' => 195,
42 'align' => 'center',
43 'padding' => [
44 'top' => 20,
45 'right' => 20,
46 'bottom' => 20,
47 'left' => 20,
48 ],
49 ]
50 ),
51 Divider::get_object_data(
52 [
53 'height' => 1,
54 'width' => 100,
55 'divider_color' => '#f1f2f5',
56 'padding' => [
57 'top' => 0,
58 'right' => 0,
59 'bottom' => 0,
60 'left' => 0,
61 ],
62 ]
63 ),
64 Text::get_object_data(
65 [
66 'rich_text' => '<p style="margin: 0px; text-align: center;"><strong><span style="font-size: 18px;">New Arrivals        New Arrivals</span></strong><strong><span style="font-size: 18px;">         </span></strong><strong><span style="font-size: 18px;">Outlet</span></strong><strong><span style="font-size: 18px;">         </span></strong><strong><span style="font-size: 18px;">Contact</span></strong></p>',
67 'padding' => [
68 'top' => 15,
69 'right' => 20,
70 'bottom' => 15,
71 'left' => 20,
72 ],
73 'text_color' => '#333439',
74 ]
75 ),
76 ];
77 }
78 }
79