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

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

95 lines 4.0 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\Text;
9 use YayMail\TemplatePatterns\SectionTemplates\Shipping;
10 use YayMail\Utils\SingletonTrait;
11
12 /** */
13 class Shipping5 extends BasePattern {
14 use SingletonTrait;
15
16 public const TYPE = 'shipping_5';
17
18 public function __construct() {
19 $this->id = uniqid();
20 $this->section = Shipping::TYPE;
21 $this->position = 14;
22 $this->name = __( 'Shipping 5', 'yaymail' );
23 $this->elements = [
24 ColumnLayout::get_object_data(
25 1,
26 [
27 'background_color' => '#ffffff00',
28 'padding' => [
29 'top' => 0,
30 'left' => 0,
31 'bottom' => 0,
32 'right' => 0,
33 ],
34 'inner_background_color' => '#ffffff00',
35 'background_image' => [
36 'url' => 'https://images.wpbrandy.com/uploads/yaymail-shipping-5-bg.png',
37 'position' => 'top_center',
38 'size' => 'contain',
39 ],
40 'children' => [
41 Column::get_object_data(
42 100,
43 [
44 'children' => [
45 Image::get_object_data(
46 [
47 'src' => 'https://images.wpbrandy.com/uploads/yaymail-footer-img-1.png',
48 'width' => 162,
49 'align' => 'center',
50 'padding' => [
51 'top' => 30,
52 'right' => 40,
53 'bottom' => 5,
54 'left' => 40,
55 ],
56 'background_color' => '#ffffff00',
57 ]
58 ),
59 Text::get_object_data(
60 [
61 'rich_text' => '<p style="text-align: center; margin: 0; font-weight: 700;"><span style="font-size: 24px;">Thank you for shopping with us!</span></p>',
62 'padding' => [
63 'top' => 5,
64 'right' => 40,
65 'bottom' => 30,
66 'left' => 40,
67 ],
68 'text_color' => '#ffffff',
69 'background_color' => '#ffffff00',
70 ]
71 ),
72 ],
73 ]
74 ),
75 ],
76 ]
77 ),
78 Image::get_object_data(
79 [
80 'src' => 'https://images.wpbrandy.com/uploads/yaymail-order-status.png',
81 'width' => 382,
82 'align' => 'center',
83 'padding' => [
84 'top' => 20,
85 'right' => 40,
86 'bottom' => 20,
87 'left' => 40,
88 ],
89 'background_color' => '#ffffff',
90 ]
91 ),
92 ];
93 }
94 }
95