AppWelcome.php
1 year ago
Avocado.php
1 year ago
Birds.php
1 year ago
BirthdayCelebration.php
2 months ago
BookStoreWithCoupon.php
1 year ago
BrandingAgencyNews.php
1 year ago
BuddhistTemple.php
1 year ago
Charity.php
1 year ago
CityLocalNews.php
1 year ago
ClearNews.php
1 year ago
Coffee.php
1 year ago
College.php
1 year ago
ComputerRepair.php
1 year ago
ConfirmInterestBeforeDeactivation.php
2 years ago
ConfirmInterestOrUnsubscribe.php
2 years ago
DogFood.php
1 year ago
Drone.php
1 year ago
Engineering.php
1 year ago
Faith.php
1 year ago
FarmersMarket.php
1 year ago
FashionBlog.php
1 year ago
FashionBlogA.php
1 year ago
FashionShop.php
1 year ago
FashionStore.php
1 year ago
FestivalEvent.php
1 year ago
Fitness.php
1 year ago
FlowersWithCoupon.php
1 year ago
FoodBox.php
1 year ago
GiftWelcome.php
1 year ago
Guitarist.php
1 year ago
HealthyFoodBlog.php
1 year ago
Hotels.php
1 year ago
IndustryConference.php
1 year ago
JazzClub.php
1 year ago
KidsClothing.php
1 year ago
LifestyleBlogA.php
1 year ago
LifestyleBlogB.php
1 year ago
Minimal.php
1 year ago
ModularStyleStories.php
1 year ago
Mosque.php
1 year ago
Motor.php
1 year ago
Music.php
1 year ago
NewsDay.php
1 year ago
NewsletterBlank121Column.php
1 year ago
NewsletterBlank12Column.php
1 year ago
NewsletterBlank13Column.php
1 year ago
NewsletterBlank1Column.php
1 year ago
NewspaperTraditional.php
1 year ago
NotSoMedium.php
1 year ago
Painter.php
1 year ago
Phone.php
1 year ago
Photography.php
1 year ago
PieceOfCake.php
1 year ago
Poet.php
1 year ago
PostNotificationsBlank1Column.php
1 year ago
PrimarySchool.php
1 year ago
RealEstate.php
1 year ago
RenewableEnergy.php
1 year ago
Retro.php
1 year ago
RetroComputingMagazine.php
1 year ago
RockBand.php
1 year ago
RssSimpleNews.php
1 year ago
ScienceWeekly.php
1 year ago
Shoes.php
1 year ago
SimpleText.php
2 years ago
Software.php
1 year ago
Sunglasses.php
1 year ago
Synagogue.php
1 year ago
TakeAHike.php
1 year ago
Vlogger.php
1 year ago
WelcomeBlank12Column.php
1 year ago
WelcomeBlank1Column.php
1 year ago
WideStoryLayout.php
1 year ago
WineCity.php
1 year ago
WordPressTheme.php
1 year ago
WorldCup.php
1 year ago
YogaStudio.php
1 year ago
index.php
3 years ago
ConfirmInterestBeforeDeactivation.php
232 lines
| 1 | <?php declare(strict_types = 1); |
| 2 | |
| 3 | namespace MailPoet\Config\PopulatorData\Templates; |
| 4 | |
| 5 | if (!defined('ABSPATH')) exit; |
| 6 | |
| 7 | |
| 8 | class ConfirmInterestBeforeDeactivation { |
| 9 | private $assets_url; |
| 10 | private $external_template_image_url; |
| 11 | private $template_image_url; |
| 12 | |
| 13 | public function __construct( |
| 14 | $assets_url |
| 15 | ) { |
| 16 | $this->assets_url = $assets_url; |
| 17 | $this->external_template_image_url = 'https://ps.w.org/mailpoet/assets/newsletter-templates/confirm-interest-before-deactivation'; |
| 18 | $this->template_image_url = $this->assets_url . '/img/blank_templates'; |
| 19 | } |
| 20 | |
| 21 | public function get(): array { |
| 22 | return [ |
| 23 | 'name' => __('Confirm interest before deactivation', 'mailpoet'), |
| 24 | 'categories' => json_encode(['re_engagement', 'all']), |
| 25 | 'readonly' => 1, |
| 26 | 'thumbnail' => $this->getThumbnail(), |
| 27 | 'body' => json_encode($this->getBody()), |
| 28 | ]; |
| 29 | } |
| 30 | |
| 31 | private function getBody(): array { |
| 32 | return [ |
| 33 | 'content' => [ |
| 34 | 'type' => 'container', |
| 35 | 'columnLayout' => false, |
| 36 | 'orientation' => 'vertical', |
| 37 | 'image' => [ |
| 38 | 'src' => null, |
| 39 | 'display' => 'scale', |
| 40 | ], |
| 41 | 'styles' => [ |
| 42 | 'block' => [ |
| 43 | 'backgroundColor' => 'transparent', |
| 44 | ], |
| 45 | ], |
| 46 | 'blocks' => [ |
| 47 | [ |
| 48 | 'type' => 'container', |
| 49 | 'columnLayout' => false, |
| 50 | 'orientation' => 'horizontal', |
| 51 | 'image' => [ |
| 52 | 'src' => null, |
| 53 | 'display' => 'scale', |
| 54 | ], |
| 55 | 'styles' => [ |
| 56 | 'block' => [ |
| 57 | 'backgroundColor' => '#ffffff', |
| 58 | ], |
| 59 | ], |
| 60 | 'blocks' => [ |
| 61 | [ |
| 62 | 'type' => 'container', |
| 63 | 'columnLayout' => false, |
| 64 | 'orientation' => 'vertical', |
| 65 | 'image' => [ |
| 66 | 'src' => null, |
| 67 | 'display' => 'scale', |
| 68 | ], |
| 69 | 'styles' => [ |
| 70 | 'block' => [ |
| 71 | 'backgroundColor' => 'transparent', |
| 72 | ], |
| 73 | ], |
| 74 | 'blocks' => [ |
| 75 | [ |
| 76 | 'type' => 'spacer', |
| 77 | 'styles' => [ |
| 78 | 'block' => [ |
| 79 | 'backgroundColor' => 'transparent', |
| 80 | 'height' => '30px', |
| 81 | ], |
| 82 | ], |
| 83 | ], |
| 84 | [ |
| 85 | 'type' => 'image', |
| 86 | 'link' => '', |
| 87 | 'src' => $this->template_image_url . '/fake-logo.png', |
| 88 | 'alt' => __('Fake logo', 'mailpoet'), |
| 89 | 'fullWidth' => false, |
| 90 | 'width' => '598px', |
| 91 | 'height' => '71px', |
| 92 | 'styles' => [ |
| 93 | 'block' => [ |
| 94 | 'textAlign' => 'center', |
| 95 | ], |
| 96 | ], |
| 97 | ], |
| 98 | [ |
| 99 | 'type' => 'text', |
| 100 | 'text' => __('<p style="text-align: left;">Hi [subscriber:firstname | default:there],</p><p style="text-align: left;"></p> |
| 101 | <p style="text-align: left;"><span>You have subscribed to receive email updates from us, but as we\'re not sure if you\'re reading our emails, we\'d like to ask - <strong>are you still interested in hearing from us?</strong> If yes, please reconfirm your subscription by clicking the button below:</span></p>', 'mailpoet'), |
| 102 | ], |
| 103 | [ |
| 104 | 'type' => 'button', |
| 105 | 'text' => __('Yes, keep me subscribed!', 'mailpoet'), |
| 106 | 'url' => '[link:subscription_re_engage_url]', |
| 107 | 'styles' => [ |
| 108 | 'block' => [ |
| 109 | 'backgroundColor' => '#2ea1cd', |
| 110 | 'borderColor' => '#0074a2', |
| 111 | 'borderWidth' => '1px', |
| 112 | 'borderRadius' => '5px', |
| 113 | 'borderStyle' => 'solid', |
| 114 | 'width' => '288px', |
| 115 | 'lineHeight' => '40px', |
| 116 | 'fontColor' => '#ffffff', |
| 117 | 'fontFamily' => 'Verdana', |
| 118 | 'fontSize' => '16px', |
| 119 | 'fontWeight' => 'normal', |
| 120 | 'textAlign' => 'center', |
| 121 | ], |
| 122 | ], |
| 123 | ], |
| 124 | [ |
| 125 | 'type' => 'text', |
| 126 | 'text' => '<p><span class="prismjs css-1xfvm4v" data-code-lang="" data-ds--code--code-block="">' . __("If you're no longer interested, that's completely fine. You don't need to take any action. Our system will automatically unsubscribe you soon from all of our future content.", 'mailpoet') . '</span></p>', |
| 127 | ], |
| 128 | ], |
| 129 | ], |
| 130 | ], |
| 131 | ], |
| 132 | [ |
| 133 | 'type' => 'container', |
| 134 | 'columnLayout' => false, |
| 135 | 'orientation' => 'horizontal', |
| 136 | 'image' => [ |
| 137 | 'src' => null, |
| 138 | 'display' => 'scale', |
| 139 | ], |
| 140 | 'styles' => [ |
| 141 | 'block' => [ |
| 142 | 'backgroundColor' => '#ffffff', |
| 143 | ], |
| 144 | ], |
| 145 | 'blocks' => [ |
| 146 | [ |
| 147 | 'type' => 'container', |
| 148 | 'columnLayout' => false, |
| 149 | 'orientation' => 'vertical', |
| 150 | 'image' => [ |
| 151 | 'src' => null, |
| 152 | 'display' => 'scale', |
| 153 | ], |
| 154 | 'styles' => [ |
| 155 | 'block' => [ |
| 156 | 'backgroundColor' => 'transparent', |
| 157 | ], |
| 158 | ], |
| 159 | 'blocks' => [ |
| 160 | [ |
| 161 | 'type' => 'text', |
| 162 | 'text' => '<p><strong><em></em></strong></p><p><strong><em>' . __('The MailPoet Team', 'mailpoet') . '</em></strong></p>', |
| 163 | ], |
| 164 | [ |
| 165 | 'type' => 'footer', |
| 166 | 'text' => '<p><a href="[link:subscription_unsubscribe_url]">' . __('Unsubscribe', 'mailpoet') . '</a> | <a href="[link:subscription_manage_url]">' . __('Manage subscription', 'mailpoet') . '</a><br />' . __('Add your postal address here!', 'mailpoet') . '</p>', |
| 167 | 'styles' => [ |
| 168 | 'block' => [ |
| 169 | 'backgroundColor' => 'transparent', |
| 170 | ], |
| 171 | 'text' => [ |
| 172 | 'fontColor' => '#222222', |
| 173 | 'fontFamily' => 'Arial', |
| 174 | 'fontSize' => '12px', |
| 175 | 'textAlign' => 'left', |
| 176 | ], |
| 177 | 'link' => [ |
| 178 | 'fontColor' => '#6cb7d4', |
| 179 | 'textDecoration' => 'none', |
| 180 | ], |
| 181 | ], |
| 182 | ], |
| 183 | ], |
| 184 | ], |
| 185 | ], |
| 186 | ], |
| 187 | ], |
| 188 | ], |
| 189 | 'globalStyles' => [ |
| 190 | 'text' => [ |
| 191 | 'fontColor' => '#000000', |
| 192 | 'fontFamily' => 'Arial', |
| 193 | 'fontSize' => '15px', |
| 194 | 'lineHeight' => '1.6', |
| 195 | ], |
| 196 | 'h1' => [ |
| 197 | 'fontColor' => '#111111', |
| 198 | 'fontFamily' => 'Trebuchet MS', |
| 199 | 'fontSize' => '30px', |
| 200 | 'lineHeight' => '1.6', |
| 201 | ], |
| 202 | 'h2' => [ |
| 203 | 'fontColor' => '#222222', |
| 204 | 'fontFamily' => 'Trebuchet MS', |
| 205 | 'fontSize' => '24px', |
| 206 | 'lineHeight' => '1.6', |
| 207 | ], |
| 208 | 'h3' => [ |
| 209 | 'fontColor' => '#333333', |
| 210 | 'fontFamily' => 'Trebuchet MS', |
| 211 | 'fontSize' => '22px', |
| 212 | 'lineHeight' => '1.6', |
| 213 | ], |
| 214 | 'link' => [ |
| 215 | 'fontColor' => '#21759B', |
| 216 | 'textDecoration' => 'underline', |
| 217 | ], |
| 218 | 'wrapper' => [ |
| 219 | 'backgroundColor' => '#ffffff', |
| 220 | ], |
| 221 | 'body' => [ |
| 222 | 'backgroundColor' => '#ffffff', |
| 223 | ], |
| 224 | ], |
| 225 | ]; |
| 226 | } |
| 227 | |
| 228 | private function getThumbnail(): string { |
| 229 | return $this->external_template_image_url . '/thumbnail.20211026.jpg'; |
| 230 | } |
| 231 | } |
| 232 |