| 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 |
use YayMail\Elements\ColumnLayout; |
| 11 |
use YayMail\Elements\Column; |
| 12 |
|
| 13 |
/** |
| 14 |
* Header6 Elements |
| 15 |
*/ |
| 16 |
class Header7 extends BasePattern { |
| 17 |
|
| 18 |
use SingletonTrait; |
| 19 |
|
| 20 |
public const TYPE = 'header_7'; |
| 21 |
|
| 22 |
private function __construct() { |
| 23 |
$this->id = uniqid(); |
| 24 |
$this->section = Header::TYPE; |
| 25 |
$this->position = 70; |
| 26 |
$this->name = __( 'Header 7', 'yaymail' ); |
| 27 |
$this->elements = [ |
| 28 |
ColumnLayout::get_object_data( |
| 29 |
2, |
| 30 |
[ |
| 31 |
'background_color' => '#ffffff', |
| 32 |
'children' => [ |
| 33 |
Column::get_object_data( |
| 34 |
50, |
| 35 |
[ |
| 36 |
'children' => [ |
| 37 |
Image::get_object_data( |
| 38 |
[ |
| 39 |
'align' => 'left', |
| 40 |
'src' => 'https://images.wpbrandy.com/uploads/yaymail-footer-img-1.png', |
| 41 |
'width' => 195, |
| 42 |
'padding' => [ |
| 43 |
'top' => 0, |
| 44 |
'right' => 10, |
| 45 |
'bottom' => 0, |
| 46 |
'left' => 0, |
| 47 |
], |
| 48 |
] |
| 49 |
), |
| 50 |
], |
| 51 |
] |
| 52 |
), |
| 53 |
Column::get_object_data( |
| 54 |
50, |
| 55 |
[ |
| 56 |
'children' => [ |
| 57 |
Text::get_object_data( |
| 58 |
[ |
| 59 |
'rich_text' => '<p style="text-align: right;"><span style="font-size: 16px;">Support Blog</span><span style="font-size: 16px;"> </span><span style="font-size: 16px;">FAQs</span></p>', |
| 60 |
'padding' => [ |
| 61 |
'top' => 0, |
| 62 |
'right' => 0, |
| 63 |
'bottom' => 0, |
| 64 |
'left' => 10, |
| 65 |
], |
| 66 |
'text_color' => '#333439', |
| 67 |
] |
| 68 |
), |
| 69 |
], |
| 70 |
] |
| 71 |
), |
| 72 |
], |
| 73 |
'padding' => [ |
| 74 |
'top' => 20, |
| 75 |
'right' => 40, |
| 76 |
'bottom' => 20, |
| 77 |
'left' => 40, |
| 78 |
], |
| 79 |
] |
| 80 |
), |
| 81 |
ColumnLayout::get_object_data( |
| 82 |
1, |
| 83 |
[ |
| 84 |
'background_color' => '#ffffff', |
| 85 |
'inner_background_color' => '#ffffff00', |
| 86 |
'children' => [ |
| 87 |
Column::get_object_data( |
| 88 |
100, |
| 89 |
[ |
| 90 |
'children' => [ |
| 91 |
Text::get_object_data( |
| 92 |
[ |
| 93 |
'rich_text' => '<h1 style="font-size: 22px; font-weight: 300; line-height: normal; margin: 0px; color: inherit; text-align: left;"><span style="font-size: 24px;"><strong>Order #[yaymail_order_number]</strong></span></h1> |
| 94 |
<h1 style="font-size: 22px; font-weight: 300; line-height: normal; margin: 0px; color: inherit; text-align: left;"><span style="font-size: 24px;"><strong>has been completed</strong></span></h1>', |
| 95 |
'text_color' => '#333439', |
| 96 |
'background_color' => '#ffffff00', |
| 97 |
'padding' => [ |
| 98 |
'top' => 0, |
| 99 |
'right' => 40, |
| 100 |
'bottom' => 0, |
| 101 |
'left' => 88, |
| 102 |
], |
| 103 |
] |
| 104 |
), |
| 105 |
], |
| 106 |
] |
| 107 |
), |
| 108 |
], |
| 109 |
'background_image' => [ |
| 110 |
'url' => 'https://images.wpbrandy.com/uploads/yaymail-header-img-1-scaled.png', |
| 111 |
'position' => 'custom', |
| 112 |
'x_position' => 70, |
| 113 |
'y_position' => 0, |
| 114 |
'size' => 'cover', |
| 115 |
'repeat' => 'no-repeat', |
| 116 |
], |
| 117 |
'padding' => [ |
| 118 |
'top' => 30, |
| 119 |
'right' => 0, |
| 120 |
'bottom' => 30, |
| 121 |
'left' => 0, |
| 122 |
], |
| 123 |
] |
| 124 |
), |
| 125 |
|
| 126 |
]; |
| 127 |
} |
| 128 |
} |
| 129 |
|