| 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\Divider; |
| 8 |
use YayMail\Elements\Logo; |
| 9 |
use YayMail\Elements\SocialIcon; |
| 10 |
use YayMail\Elements\Text; |
| 11 |
use YayMail\TemplatePatterns\SectionTemplates\Footer; |
| 12 |
use YayMail\Utils\SingletonTrait; |
| 13 |
|
| 14 |
/** */ |
| 15 |
class Footer7 extends BasePattern { |
| 16 |
use SingletonTrait; |
| 17 |
|
| 18 |
public const TYPE = 'footer_7'; |
| 19 |
|
| 20 |
private function __construct() { |
| 21 |
$this->id = uniqid(); |
| 22 |
$this->section = Footer::TYPE; |
| 23 |
$this->position = 70; |
| 24 |
$this->name = __( 'Footer 7', 'yaymail' ); |
| 25 |
$this->elements = [ |
| 26 |
ColumnLayout::get_object_data( |
| 27 |
1, |
| 28 |
[ |
| 29 |
'padding' => [ |
| 30 |
'top' => 10, |
| 31 |
'bottom' => 10, |
| 32 |
'left' => 40, |
| 33 |
'right' => 40, |
| 34 |
], |
| 35 |
'children' => [ |
| 36 |
Column::get_object_data( |
| 37 |
100, |
| 38 |
[ |
| 39 |
'children' => [ |
| 40 |
Divider::get_object_data( |
| 41 |
[ |
| 42 |
'height' => 2, |
| 43 |
'width' => 100, |
| 44 |
'divider_color' => '#333439', |
| 45 |
'padding' => [ |
| 46 |
'top' => 20, |
| 47 |
'right' => 0, |
| 48 |
'bottom' => 20, |
| 49 |
'left' => 0, |
| 50 |
], |
| 51 |
] |
| 52 |
), |
| 53 |
Logo::get_object_data( |
| 54 |
[ |
| 55 |
'background_color' => '#ffffff00', |
| 56 |
'align' => 'center', |
| 57 |
'src' => 'https://images.wpbrandy.com/uploads/yaymail-footer-img-1.png', |
| 58 |
'width' => 195, |
| 59 |
'padding' => [ |
| 60 |
'top' => 20, |
| 61 |
'right' => 0, |
| 62 |
'bottom' => 20, |
| 63 |
'left' => 0, |
| 64 |
], |
| 65 |
] |
| 66 |
), |
| 67 |
Text::get_object_data( |
| 68 |
[ |
| 69 |
'rich_text' => '<p style="text-align: center; margin: 0; font-weight: 300;"><span style="font-size: 16px;">For questions, contact <u>hello@example.com</u>, visit our <u>FAQs</u>, or <u>chat</u> with us during operating hours for account support</span></p>', |
| 70 |
'background_color' => '#ffffff00', |
| 71 |
'padding' => [ |
| 72 |
'top' => 0, |
| 73 |
'right' => 0, |
| 74 |
'bottom' => 0, |
| 75 |
'left' => 0, |
| 76 |
], |
| 77 |
'text_color' => '#333439', |
| 78 |
] |
| 79 |
), |
| 80 |
SocialIcon::get_object_data( |
| 81 |
[ |
| 82 |
'align' => 'center', |
| 83 |
'spacing' => 24, |
| 84 |
'width_icon' => 24, |
| 85 |
'style' => 'Colorful', |
| 86 |
'icon_list' => [ |
| 87 |
[ |
| 88 |
'icon' => 'facebook', |
| 89 |
'url' => '#', |
| 90 |
], |
| 91 |
[ |
| 92 |
'icon' => 'instagram', |
| 93 |
'url' => '#', |
| 94 |
], |
| 95 |
[ |
| 96 |
'icon' => 'tiktok', |
| 97 |
'url' => '#', |
| 98 |
], |
| 99 |
[ |
| 100 |
'icon' => 'youtube', |
| 101 |
'url' => '#', |
| 102 |
], |
| 103 |
|
| 104 |
], |
| 105 |
'padding' => [ |
| 106 |
'top' => 20, |
| 107 |
'right' => 0, |
| 108 |
'bottom' => 20, |
| 109 |
'left' => 0, |
| 110 |
], |
| 111 |
] |
| 112 |
), |
| 113 |
Text::get_object_data( |
| 114 |
[ |
| 115 |
'rich_text' => '<p style="text-align: center; margin: 0; font-weight: 300;"><span style="font-size: 12px;">© 2023 YayCommerce.com</span></p>', |
| 116 |
'padding' => [ |
| 117 |
'top' => 0, |
| 118 |
'right' => 0, |
| 119 |
'bottom' => 20, |
| 120 |
'left' => 0, |
| 121 |
], |
| 122 |
'text_color' => '#77859B', |
| 123 |
] |
| 124 |
), |
| 125 |
], |
| 126 |
] |
| 127 |
), |
| 128 |
], |
| 129 |
] |
| 130 |
), |
| 131 |
]; |
| 132 |
} |
| 133 |
} |