| 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 |
|