Fix code style
This commit is contained in:
committed by
Veljko V
parent
1fd83c267c
commit
0a0dbf0fa1
@ -1,6 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace MailPoet\Config\PopulatorData\Templates;
|
namespace MailPoet\Config\PopulatorData\Templates;
|
||||||
|
|
||||||
use MailPoet\WP\Functions as WPFunctions;
|
use MailPoet\WP\Functions as WPFunctions;
|
||||||
|
|
||||||
class CityLocalNews {
|
class CityLocalNews {
|
||||||
@ -1037,7 +1038,7 @@ class CityLocalNews {
|
|||||||
3 =>
|
3 =>
|
||||||
[
|
[
|
||||||
'type' => 'footer',
|
'type' => 'footer',
|
||||||
'text' => '<p><span style="color: #999999;"><a href="[link:subscription_unsubscribe_url]" style="color: #999999;">'.WPFunctions::get()->__("Unsubscribe", 'mailpoet').'</a> | <a href="[link:subscription_manage_url]" style="color: #999999;">'.WPFunctions::get()->__("Manage your subscription", 'mailpoet').'</a></span><br /><span style="color: #ffffff;">'.WPFunctions::get()->__("Add your postal address here!", 'mailpoet').'</span></p>',
|
'text' => '<p><span style="color: #999999;"><a href="[link:subscription_unsubscribe_url]" style="color: #999999;">' . WPFunctions::get()->__("Unsubscribe", 'mailpoet') . '</a> | <a href="[link:subscription_manage_url]" style="color: #999999;">' . WPFunctions::get()->__("Manage your subscription", 'mailpoet') . '</a></span><br /><span style="color: #ffffff;">' . WPFunctions::get()->__("Add your postal address here!", 'mailpoet') . '</span></p>',
|
||||||
'styles' =>
|
'styles' =>
|
||||||
[
|
[
|
||||||
'block' =>
|
'block' =>
|
||||||
@ -1319,7 +1320,7 @@ class CityLocalNews {
|
|||||||
],
|
],
|
||||||
'footer' =>
|
'footer' =>
|
||||||
[
|
[
|
||||||
'text' => '<p><a href="[link:subscription_unsubscribe_url]">'.WPFunctions::get()->__("Unsubscribe", 'mailpoet').'</a> | <a href="[link:subscription_manage_url]">'.WPFunctions::get()->__("Manage your subscription", 'mailpoet').'</a><br />'.WPFunctions::get()->__("Add your postal address here!", 'mailpoet').'</p>',
|
'text' => '<p><a href="[link:subscription_unsubscribe_url]">' . WPFunctions::get()->__("Unsubscribe", 'mailpoet') . '</a> | <a href="[link:subscription_manage_url]">' . WPFunctions::get()->__("Manage your subscription", 'mailpoet') . '</a><br />' . WPFunctions::get()->__("Add your postal address here!", 'mailpoet') . '</p>',
|
||||||
'styles' =>
|
'styles' =>
|
||||||
[
|
[
|
||||||
'block' =>
|
'block' =>
|
||||||
@ -1474,7 +1475,7 @@ class CityLocalNews {
|
|||||||
],
|
],
|
||||||
'header' =>
|
'header' =>
|
||||||
[
|
[
|
||||||
'text' => '<a href="[link:newsletter_view_in_browser_url]">'.WPFunctions::get()->__("View this in your browser.", 'mailpoet').'</a>',
|
'text' => '<a href="[link:newsletter_view_in_browser_url]">' . WPFunctions::get()->__("View this in your browser.", 'mailpoet') . '</a>',
|
||||||
'styles' =>
|
'styles' =>
|
||||||
[
|
[
|
||||||
'block' =>
|
'block' =>
|
||||||
@ -1499,5 +1500,4 @@ class CityLocalNews {
|
|||||||
],
|
],
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace MailPoet\Config\PopulatorData\Templates;
|
namespace MailPoet\Config\PopulatorData\Templates;
|
||||||
|
|
||||||
use MailPoet\WP\Functions as WPFunctions;
|
use MailPoet\WP\Functions as WPFunctions;
|
||||||
|
|
||||||
|
|
||||||
class Coffee {
|
class Coffee {
|
||||||
|
|
||||||
private $template_image_url;
|
private $template_image_url;
|
||||||
@ -931,7 +931,7 @@ class Coffee {
|
|||||||
3 =>
|
3 =>
|
||||||
[
|
[
|
||||||
'type' => 'footer',
|
'type' => 'footer',
|
||||||
'text' => '<p><strong><span style="color: #000000;"><a href="[link:subscription_unsubscribe_url]" style="color: #000000;">'.WPFunctions::get()->__("Unsubscribe", 'mailpoet').'</a> | <a href="[link:subscription_manage_url]" style="color: #000000;">'.WPFunctions::get()->__("Manage your subscription", 'mailpoet').'</a></span></strong><br />'.WPFunctions::get()->__("Add your postal address here!", 'mailpoet').'</p>',
|
'text' => '<p><strong><span style="color: #000000;"><a href="[link:subscription_unsubscribe_url]" style="color: #000000;">' . WPFunctions::get()->__("Unsubscribe", 'mailpoet') . '</a> | <a href="[link:subscription_manage_url]" style="color: #000000;">' . WPFunctions::get()->__("Manage your subscription", 'mailpoet') . '</a></span></strong><br />' . WPFunctions::get()->__("Add your postal address here!", 'mailpoet') . '</p>',
|
||||||
'styles' =>
|
'styles' =>
|
||||||
[
|
[
|
||||||
'block' =>
|
'block' =>
|
||||||
@ -1000,5 +1000,4 @@ class Coffee {
|
|||||||
],
|
],
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace MailPoet\Config\PopulatorData\Templates;
|
namespace MailPoet\Config\PopulatorData\Templates;
|
||||||
|
|
||||||
use MailPoet\WP\Functions as WPFunctions;
|
use MailPoet\WP\Functions as WPFunctions;
|
||||||
|
|
||||||
class College {
|
class College {
|
||||||
@ -708,7 +709,7 @@ class College {
|
|||||||
2 =>
|
2 =>
|
||||||
[
|
[
|
||||||
'type' => 'text',
|
'type' => 'text',
|
||||||
'text' => '<p style="text-align: center;"><span style="color: #ffcc00;"><strong></strong></span><a href="[link:subscription_unsubscribe_url]">'.WPFunctions::get()->__("Unsubscribe", 'mailpoet').'</a><span> | </span><a href="[link:subscription_manage_url]">'.WPFunctions::get()->__("Manage your subscription", 'mailpoet').'</a><br /><span>'.WPFunctions::get()->__("Add your postal address here!", 'mailpoet').'</span></p>',
|
'text' => '<p style="text-align: center;"><span style="color: #ffcc00;"><strong></strong></span><a href="[link:subscription_unsubscribe_url]">' . WPFunctions::get()->__("Unsubscribe", 'mailpoet') . '</a><span> | </span><a href="[link:subscription_manage_url]">' . WPFunctions::get()->__("Manage your subscription", 'mailpoet') . '</a><br /><span>' . WPFunctions::get()->__("Add your postal address here!", 'mailpoet') . '</span></p>',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
@ -972,7 +973,7 @@ class College {
|
|||||||
],
|
],
|
||||||
'footer' =>
|
'footer' =>
|
||||||
[
|
[
|
||||||
'text' => '<p><a href="[link:subscription_unsubscribe_url]">'.WPFunctions::get()->__("Unsubscribe", 'mailpoet').'</a> | <a href="[link:subscription_manage_url]">'.WPFunctions::get()->__("Manage your subscription", 'mailpoet').'</a><br />'.WPFunctions::get()->__("Add your postal address here!", 'mailpoet').'</p>',
|
'text' => '<p><a href="[link:subscription_unsubscribe_url]">' . WPFunctions::get()->__("Unsubscribe", 'mailpoet') . '</a> | <a href="[link:subscription_manage_url]">' . WPFunctions::get()->__("Manage your subscription", 'mailpoet') . '</a><br />' . WPFunctions::get()->__("Add your postal address here!", 'mailpoet') . '</p>',
|
||||||
'styles' =>
|
'styles' =>
|
||||||
[
|
[
|
||||||
'block' =>
|
'block' =>
|
||||||
@ -1118,7 +1119,7 @@ class College {
|
|||||||
],
|
],
|
||||||
'header' =>
|
'header' =>
|
||||||
[
|
[
|
||||||
'text' => '<a href="[link:newsletter_view_in_browser_url]">'.WPFunctions::get()->__("View this in your browser.", 'mailpoet').'</a>',
|
'text' => '<a href="[link:newsletter_view_in_browser_url]">' . WPFunctions::get()->__("View this in your browser.", 'mailpoet') . '</a>',
|
||||||
'styles' =>
|
'styles' =>
|
||||||
[
|
[
|
||||||
'block' =>
|
'block' =>
|
||||||
@ -1143,5 +1144,4 @@ class College {
|
|||||||
],
|
],
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace MailPoet\Config\PopulatorData\Templates;
|
namespace MailPoet\Config\PopulatorData\Templates;
|
||||||
|
|
||||||
use MailPoet\WP\Functions as WPFunctions;
|
use MailPoet\WP\Functions as WPFunctions;
|
||||||
|
|
||||||
class ComputerRepair {
|
class ComputerRepair {
|
||||||
@ -601,7 +602,7 @@ class ComputerRepair {
|
|||||||
1 =>
|
1 =>
|
||||||
[
|
[
|
||||||
'type' => 'text',
|
'type' => 'text',
|
||||||
'text' => '<p style="text-align: center; font-size: 12px;"><a href="[link:subscription_unsubscribe_url]">'.WPFunctions::get()->__("Unsubscribe", 'mailpoet').'</a><span> | </span><a href="[link:subscription_manage_url]">'.WPFunctions::get()->__("Manage your subscription", 'mailpoet').'</a></p>',
|
'text' => '<p style="text-align: center; font-size: 12px;"><a href="[link:subscription_unsubscribe_url]">' . WPFunctions::get()->__("Unsubscribe", 'mailpoet') . '</a><span> | </span><a href="[link:subscription_manage_url]">' . WPFunctions::get()->__("Manage your subscription", 'mailpoet') . '</a></p>',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
@ -954,7 +955,7 @@ class ComputerRepair {
|
|||||||
],
|
],
|
||||||
'footer' =>
|
'footer' =>
|
||||||
[
|
[
|
||||||
'text' => '<p><a href="[link:subscription_unsubscribe_url]">'.WPFunctions::get()->__("Unsubscribe", 'mailpoet').'</a> | <a href="[link:subscription_manage_url]">'.WPFunctions::get()->__("Manage your subscription", 'mailpoet').'</a><br />'.WPFunctions::get()->__("Add your postal address here!", 'mailpoet').'</p>',
|
'text' => '<p><a href="[link:subscription_unsubscribe_url]">' . WPFunctions::get()->__("Unsubscribe", 'mailpoet') . '</a> | <a href="[link:subscription_manage_url]">' . WPFunctions::get()->__("Manage your subscription", 'mailpoet') . '</a><br />' . WPFunctions::get()->__("Add your postal address here!", 'mailpoet') . '</p>',
|
||||||
'styles' =>
|
'styles' =>
|
||||||
[
|
[
|
||||||
'block' =>
|
'block' =>
|
||||||
@ -1111,7 +1112,7 @@ class ComputerRepair {
|
|||||||
],
|
],
|
||||||
'header' =>
|
'header' =>
|
||||||
[
|
[
|
||||||
'text' => '<a href="[link:newsletter_view_in_browser_url]">'.WPFunctions::get()->__("View this in your browser.", 'mailpoet').'</a>',
|
'text' => '<a href="[link:newsletter_view_in_browser_url]">' . WPFunctions::get()->__("View this in your browser.", 'mailpoet') . '</a>',
|
||||||
'styles' =>
|
'styles' =>
|
||||||
[
|
[
|
||||||
'block' =>
|
'block' =>
|
||||||
@ -1135,5 +1136,4 @@ class ComputerRepair {
|
|||||||
],
|
],
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace MailPoet\Config\PopulatorData\Templates;
|
namespace MailPoet\Config\PopulatorData\Templates;
|
||||||
|
|
||||||
use MailPoet\WP\Functions as WPFunctions;
|
use MailPoet\WP\Functions as WPFunctions;
|
||||||
|
|
||||||
|
|
||||||
class FashionBlogA {
|
class FashionBlogA {
|
||||||
|
|
||||||
private $template_image_url;
|
private $template_image_url;
|
||||||
@ -1042,7 +1042,7 @@ class FashionBlogA {
|
|||||||
0 =>
|
0 =>
|
||||||
[
|
[
|
||||||
'type' => 'footer',
|
'type' => 'footer',
|
||||||
'text' => '<p><a href="[link:subscription_unsubscribe_url]">'.WPFunctions::get()->__("Unsubscribe", 'mailpoet').'</a> | <a href="[link:subscription_manage_url]">'.WPFunctions::get()->__("Manage your subscription", 'mailpoet').'</a><br />'.WPFunctions::get()->__("Add your postal address here!", 'mailpoet').'</p>',
|
'text' => '<p><a href="[link:subscription_unsubscribe_url]">' . WPFunctions::get()->__("Unsubscribe", 'mailpoet') . '</a> | <a href="[link:subscription_manage_url]">' . WPFunctions::get()->__("Manage your subscription", 'mailpoet') . '</a><br />' . WPFunctions::get()->__("Add your postal address here!", 'mailpoet') . '</p>',
|
||||||
'styles' =>
|
'styles' =>
|
||||||
[
|
[
|
||||||
'block' =>
|
'block' =>
|
||||||
@ -1275,7 +1275,7 @@ class FashionBlogA {
|
|||||||
],
|
],
|
||||||
'footer' =>
|
'footer' =>
|
||||||
[
|
[
|
||||||
'text' => '<p><a href="[link:subscription_unsubscribe_url]">'.WPFunctions::get()->__("Unsubscribe", 'mailpoet').'</a> | <a href="[link:subscription_manage_url]">'.WPFunctions::get()->__("Manage your subscription", 'mailpoet').'</a><br />'.WPFunctions::get()->__("Add your postal address here!", 'mailpoet').'</p>',
|
'text' => '<p><a href="[link:subscription_unsubscribe_url]">' . WPFunctions::get()->__("Unsubscribe", 'mailpoet') . '</a> | <a href="[link:subscription_manage_url]">' . WPFunctions::get()->__("Manage your subscription", 'mailpoet') . '</a><br />' . WPFunctions::get()->__("Add your postal address here!", 'mailpoet') . '</p>',
|
||||||
'styles' =>
|
'styles' =>
|
||||||
[
|
[
|
||||||
'block' =>
|
'block' =>
|
||||||
@ -1420,7 +1420,7 @@ class FashionBlogA {
|
|||||||
],
|
],
|
||||||
'header' =>
|
'header' =>
|
||||||
[
|
[
|
||||||
'text' => '<a href="[link:newsletter_view_in_browser_url]">'.WPFunctions::get()->__("View this in your browser.", 'mailpoet').'</a>',
|
'text' => '<a href="[link:newsletter_view_in_browser_url]">' . WPFunctions::get()->__("View this in your browser.", 'mailpoet') . '</a>',
|
||||||
'styles' =>
|
'styles' =>
|
||||||
[
|
[
|
||||||
'block' =>
|
'block' =>
|
||||||
@ -1445,5 +1445,4 @@ class FashionBlogA {
|
|||||||
],
|
],
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace MailPoet\Config\PopulatorData\Templates;
|
namespace MailPoet\Config\PopulatorData\Templates;
|
||||||
|
|
||||||
use MailPoet\WP\Functions as WPFunctions;
|
use MailPoet\WP\Functions as WPFunctions;
|
||||||
|
|
||||||
|
|
||||||
class FashionStore {
|
class FashionStore {
|
||||||
|
|
||||||
private $template_image_url;
|
private $template_image_url;
|
||||||
@ -1061,7 +1061,7 @@ class FashionStore {
|
|||||||
1 =>
|
1 =>
|
||||||
[
|
[
|
||||||
'type' => 'text',
|
'type' => 'text',
|
||||||
'text' => '<p style="font-size: 11px;"><span style="color: #000000;"><a href="[link:subscription_unsubscribe_url]" style="color: #000000;">'.WPFunctions::get()->__("Unsubscribe", 'mailpoet').'</a> | <a href="[link:subscription_manage_url]" style="color: #000000;">'.WPFunctions::get()->__("Manage your subscription", 'mailpoet').'</a></span><br /><span style="color: #000000;">'.WPFunctions::get()->__("Add your postal address here!", 'mailpoet').'</span></p>',
|
'text' => '<p style="font-size: 11px;"><span style="color: #000000;"><a href="[link:subscription_unsubscribe_url]" style="color: #000000;">' . WPFunctions::get()->__("Unsubscribe", 'mailpoet') . '</a> | <a href="[link:subscription_manage_url]" style="color: #000000;">' . WPFunctions::get()->__("Manage your subscription", 'mailpoet') . '</a></span><br /><span style="color: #000000;">' . WPFunctions::get()->__("Add your postal address here!", 'mailpoet') . '</span></p>',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
@ -1274,7 +1274,7 @@ class FashionStore {
|
|||||||
],
|
],
|
||||||
'footer' =>
|
'footer' =>
|
||||||
[
|
[
|
||||||
'text' => '<p><a href="[link:subscription_unsubscribe_url]">'.WPFunctions::get()->__("Unsubscribe", 'mailpoet').'</a> | <a href="[link:subscription_manage_url]">'.WPFunctions::get()->__("Manage your subscription", 'mailpoet').'</a><br />'.WPFunctions::get()->__("Add your postal address here!", 'mailpoet').'</p>',
|
'text' => '<p><a href="[link:subscription_unsubscribe_url]">' . WPFunctions::get()->__("Unsubscribe", 'mailpoet') . '</a> | <a href="[link:subscription_manage_url]">' . WPFunctions::get()->__("Manage your subscription", 'mailpoet') . '</a><br />' . WPFunctions::get()->__("Add your postal address here!", 'mailpoet') . '</p>',
|
||||||
'styles' =>
|
'styles' =>
|
||||||
[
|
[
|
||||||
'block' =>
|
'block' =>
|
||||||
@ -1399,7 +1399,7 @@ class FashionStore {
|
|||||||
],
|
],
|
||||||
'header' =>
|
'header' =>
|
||||||
[
|
[
|
||||||
'text' => '<a href="[link:newsletter_view_in_browser_url]">'.WPFunctions::get()->__("View this in your browser.", 'mailpoet').'</a>',
|
'text' => '<a href="[link:newsletter_view_in_browser_url]">' . WPFunctions::get()->__("View this in your browser.", 'mailpoet') . '</a>',
|
||||||
'styles' =>
|
'styles' =>
|
||||||
[
|
[
|
||||||
'block' =>
|
'block' =>
|
||||||
@ -1423,5 +1423,4 @@ class FashionStore {
|
|||||||
],
|
],
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace MailPoet\Config\PopulatorData\Templates;
|
namespace MailPoet\Config\PopulatorData\Templates;
|
||||||
|
|
||||||
use MailPoet\WP\Functions as WPFunctions;
|
use MailPoet\WP\Functions as WPFunctions;
|
||||||
|
|
||||||
class Guitarist {
|
class Guitarist {
|
||||||
@ -1334,7 +1335,7 @@ class Guitarist {
|
|||||||
1 =>
|
1 =>
|
||||||
[
|
[
|
||||||
'type' => 'footer',
|
'type' => 'footer',
|
||||||
'text' => '<p><a href="[link:subscription_unsubscribe_url]">'.WPFunctions::get()->__("Unsubscribe", 'mailpoet').'</a> | <a href="[link:subscription_manage_url]">'.WPFunctions::get()->__("Manage your subscription", 'mailpoet').'</a><br /><span style="color: #999999;">'.WPFunctions::get()->__("Add your postal address here!", 'mailpoet').'</span></p>',
|
'text' => '<p><a href="[link:subscription_unsubscribe_url]">' . WPFunctions::get()->__("Unsubscribe", 'mailpoet') . '</a> | <a href="[link:subscription_manage_url]">' . WPFunctions::get()->__("Manage your subscription", 'mailpoet') . '</a><br /><span style="color: #999999;">' . WPFunctions::get()->__("Add your postal address here!", 'mailpoet') . '</span></p>',
|
||||||
'styles' =>
|
'styles' =>
|
||||||
[
|
[
|
||||||
'block' =>
|
'block' =>
|
||||||
@ -1580,7 +1581,7 @@ class Guitarist {
|
|||||||
],
|
],
|
||||||
'footer' =>
|
'footer' =>
|
||||||
[
|
[
|
||||||
'text' => '<p><a href="[link:subscription_unsubscribe_url]">'.WPFunctions::get()->__("Unsubscribe", 'mailpoet').'</a> | <a href="[link:subscription_manage_url]">'.WPFunctions::get()->__("Manage your subscription", 'mailpoet').'</a><br />'.WPFunctions::get()->__("Add your postal address here!", 'mailpoet').'</p>',
|
'text' => '<p><a href="[link:subscription_unsubscribe_url]">' . WPFunctions::get()->__("Unsubscribe", 'mailpoet') . '</a> | <a href="[link:subscription_manage_url]">' . WPFunctions::get()->__("Manage your subscription", 'mailpoet') . '</a><br />' . WPFunctions::get()->__("Add your postal address here!", 'mailpoet') . '</p>',
|
||||||
'styles' =>
|
'styles' =>
|
||||||
[
|
[
|
||||||
'block' =>
|
'block' =>
|
||||||
@ -1717,7 +1718,7 @@ class Guitarist {
|
|||||||
],
|
],
|
||||||
'header' =>
|
'header' =>
|
||||||
[
|
[
|
||||||
'text' => '<a href="[link:newsletter_view_in_browser_url]">'.WPFunctions::get()->__("View this in your browser.", 'mailpoet').'</a>',
|
'text' => '<a href="[link:newsletter_view_in_browser_url]">' . WPFunctions::get()->__("View this in your browser.", 'mailpoet') . '</a>',
|
||||||
'styles' =>
|
'styles' =>
|
||||||
[
|
[
|
||||||
'block' =>
|
'block' =>
|
||||||
@ -1742,5 +1743,4 @@ class Guitarist {
|
|||||||
],
|
],
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace MailPoet\Config\PopulatorData\Templates;
|
namespace MailPoet\Config\PopulatorData\Templates;
|
||||||
|
|
||||||
use MailPoet\WP\Functions as WPFunctions;
|
use MailPoet\WP\Functions as WPFunctions;
|
||||||
|
|
||||||
|
|
||||||
class LifestyleBlogA {
|
class LifestyleBlogA {
|
||||||
|
|
||||||
private $template_image_url;
|
private $template_image_url;
|
||||||
@ -888,7 +888,7 @@ class LifestyleBlogA {
|
|||||||
3 =>
|
3 =>
|
||||||
[
|
[
|
||||||
'type' => 'footer',
|
'type' => 'footer',
|
||||||
'text' => '<p><span style="color: #000000;"><strong><a href="[link:subscription_unsubscribe_url]" style="color: #000000;">'.WPFunctions::get()->__("Unsubscribe", 'mailpoet').'</a> | <a href="[link:subscription_manage_url]" style="color: #000000;">'.WPFunctions::get()->__("Manage your subscription", 'mailpoet').'</a></strong></span><br />'.WPFunctions::get()->__("Add your postal address here!", 'mailpoet').'</p>',
|
'text' => '<p><span style="color: #000000;"><strong><a href="[link:subscription_unsubscribe_url]" style="color: #000000;">' . WPFunctions::get()->__("Unsubscribe", 'mailpoet') . '</a> | <a href="[link:subscription_manage_url]" style="color: #000000;">' . WPFunctions::get()->__("Manage your subscription", 'mailpoet') . '</a></strong></span><br />' . WPFunctions::get()->__("Add your postal address here!", 'mailpoet') . '</p>',
|
||||||
'styles' =>
|
'styles' =>
|
||||||
[
|
[
|
||||||
'block' =>
|
'block' =>
|
||||||
@ -1120,7 +1120,7 @@ class LifestyleBlogA {
|
|||||||
],
|
],
|
||||||
'footer' =>
|
'footer' =>
|
||||||
[
|
[
|
||||||
'text' => '<p><a href="[link:subscription_unsubscribe_url]">'.WPFunctions::get()->__("Unsubscribe", 'mailpoet').'</a> | <a href="[link:subscription_manage_url]">'.WPFunctions::get()->__("Manage your subscription", 'mailpoet').'</a><br />'.WPFunctions::get()->__("Add your postal address here!", 'mailpoet').'</p>',
|
'text' => '<p><a href="[link:subscription_unsubscribe_url]">' . WPFunctions::get()->__("Unsubscribe", 'mailpoet') . '</a> | <a href="[link:subscription_manage_url]">' . WPFunctions::get()->__("Manage your subscription", 'mailpoet') . '</a><br />' . WPFunctions::get()->__("Add your postal address here!", 'mailpoet') . '</p>',
|
||||||
'styles' =>
|
'styles' =>
|
||||||
[
|
[
|
||||||
'block' =>
|
'block' =>
|
||||||
@ -1257,7 +1257,7 @@ class LifestyleBlogA {
|
|||||||
],
|
],
|
||||||
'header' =>
|
'header' =>
|
||||||
[
|
[
|
||||||
'text' => '<a href="[link:newsletter_view_in_browser_url]">'.WPFunctions::get()->__("View this in your browser.", 'mailpoet').'</a>',
|
'text' => '<a href="[link:newsletter_view_in_browser_url]">' . WPFunctions::get()->__("View this in your browser.", 'mailpoet') . '</a>',
|
||||||
'styles' =>
|
'styles' =>
|
||||||
[
|
[
|
||||||
'block' =>
|
'block' =>
|
||||||
@ -1282,5 +1282,4 @@ class LifestyleBlogA {
|
|||||||
],
|
],
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace MailPoet\Config\PopulatorData\Templates;
|
namespace MailPoet\Config\PopulatorData\Templates;
|
||||||
|
|
||||||
use MailPoet\WP\Functions as WPFunctions;
|
use MailPoet\WP\Functions as WPFunctions;
|
||||||
|
|
||||||
|
|
||||||
class LifestyleBlogB {
|
class LifestyleBlogB {
|
||||||
|
|
||||||
private $template_image_url;
|
private $template_image_url;
|
||||||
@ -1107,7 +1107,7 @@ class LifestyleBlogB {
|
|||||||
2 =>
|
2 =>
|
||||||
[
|
[
|
||||||
'type' => 'footer',
|
'type' => 'footer',
|
||||||
'text' => '<p><strong><span style="color: #b25088;"><a href="[link:subscription_unsubscribe_url]" style="color: #b25088;">'.WPFunctions::get()->__("Unsubscribe", 'mailpoet').'</a> | <a href="[link:subscription_manage_url]" style="color: #b25088;">'.WPFunctions::get()->__("Manage your subscription", 'mailpoet').'</a></span></strong><br />'.WPFunctions::get()->__("Add your postal address here!", 'mailpoet').'</p>',
|
'text' => '<p><strong><span style="color: #b25088;"><a href="[link:subscription_unsubscribe_url]" style="color: #b25088;">' . WPFunctions::get()->__("Unsubscribe", 'mailpoet') . '</a> | <a href="[link:subscription_manage_url]" style="color: #b25088;">' . WPFunctions::get()->__("Manage your subscription", 'mailpoet') . '</a></span></strong><br />' . WPFunctions::get()->__("Add your postal address here!", 'mailpoet') . '</p>',
|
||||||
'styles' =>
|
'styles' =>
|
||||||
[
|
[
|
||||||
'block' =>
|
'block' =>
|
||||||
@ -1340,7 +1340,7 @@ class LifestyleBlogB {
|
|||||||
],
|
],
|
||||||
'footer' =>
|
'footer' =>
|
||||||
[
|
[
|
||||||
'text' => '<p><a href="[link:subscription_unsubscribe_url]">'.WPFunctions::get()->__("Unsubscribe", 'mailpoet').'</a> | <a href="[link:subscription_manage_url]">'.WPFunctions::get()->__("Manage your subscription", 'mailpoet').'</a><br />'.WPFunctions::get()->__("Add your postal address here!", 'mailpoet').'</p>',
|
'text' => '<p><a href="[link:subscription_unsubscribe_url]">' . WPFunctions::get()->__("Unsubscribe", 'mailpoet') . '</a> | <a href="[link:subscription_manage_url]">' . WPFunctions::get()->__("Manage your subscription", 'mailpoet') . '</a><br />' . WPFunctions::get()->__("Add your postal address here!", 'mailpoet') . '</p>',
|
||||||
'styles' =>
|
'styles' =>
|
||||||
[
|
[
|
||||||
'block' =>
|
'block' =>
|
||||||
@ -1487,7 +1487,7 @@ class LifestyleBlogB {
|
|||||||
],
|
],
|
||||||
'header' =>
|
'header' =>
|
||||||
[
|
[
|
||||||
'text' => '<a href="[link:newsletter_view_in_browser_url]">'.WPFunctions::get()->__("View this in your browser.", 'mailpoet').'</a>',
|
'text' => '<a href="[link:newsletter_view_in_browser_url]">' . WPFunctions::get()->__("View this in your browser.", 'mailpoet') . '</a>',
|
||||||
'styles' =>
|
'styles' =>
|
||||||
[
|
[
|
||||||
'block' =>
|
'block' =>
|
||||||
@ -1512,5 +1512,4 @@ class LifestyleBlogB {
|
|||||||
],
|
],
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace MailPoet\Config\PopulatorData\Templates;
|
namespace MailPoet\Config\PopulatorData\Templates;
|
||||||
|
|
||||||
use MailPoet\WP\Functions as WPFunctions;
|
use MailPoet\WP\Functions as WPFunctions;
|
||||||
|
|
||||||
|
|
||||||
class PieceOfCake {
|
class PieceOfCake {
|
||||||
|
|
||||||
private $template_image_url;
|
private $template_image_url;
|
||||||
@ -364,7 +364,7 @@ class PieceOfCake {
|
|||||||
'blocks' => [
|
'blocks' => [
|
||||||
0 => [
|
0 => [
|
||||||
'type' => 'text',
|
'type' => 'text',
|
||||||
'text' => '<p style="text-align: right; line-height: 1.3;"><strong><a href="[link:subscription_unsubscribe_url]" style="color: #d42b2b; text-decoration: none; font-size: 12px; text-align: center;">'.WPFunctions::get()->__("Unsubscribe", 'mailpoet').'</a></strong></p>
|
'text' => '<p style="text-align: right; line-height: 1.3;"><strong><a href="[link:subscription_unsubscribe_url]" style="color: #d42b2b; text-decoration: none; font-size: 12px; text-align: center;">' . WPFunctions::get()->__("Unsubscribe", 'mailpoet') . '</a></strong></p>
|
||||||
<p style="text-align: right; line-height: 1.3;"><strong><a href="[link:subscription_manage_url]" style="color: #d42b2b; text-decoration: none; font-size: 12px; text-align: center;">Manage Subscription</a></strong></p>',
|
<p style="text-align: right; line-height: 1.3;"><strong><a href="[link:subscription_manage_url]" style="color: #d42b2b; text-decoration: none; font-size: 12px; text-align: center;">Manage Subscription</a></strong></p>',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
@ -442,5 +442,4 @@ class PieceOfCake {
|
|||||||
private function getThumbnail() {
|
private function getThumbnail() {
|
||||||
return $this->template_image_url . '/thumbnail.20190411-1500.jpg';
|
return $this->template_image_url . '/thumbnail.20190411-1500.jpg';
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace MailPoet\Config\PopulatorData\Templates;
|
namespace MailPoet\Config\PopulatorData\Templates;
|
||||||
|
|
||||||
use MailPoet\WP\Functions as WPFunctions;
|
use MailPoet\WP\Functions as WPFunctions;
|
||||||
|
|
||||||
class PrimarySchool {
|
class PrimarySchool {
|
||||||
@ -955,7 +956,7 @@ class PrimarySchool {
|
|||||||
1 =>
|
1 =>
|
||||||
[
|
[
|
||||||
'type' => 'footer',
|
'type' => 'footer',
|
||||||
'text' => '<p><a href="[link:subscription_unsubscribe_url]">'.WPFunctions::get()->__("Unsubscribe", 'mailpoet').'</a> | <a href="[link:subscription_manage_url]">'.WPFunctions::get()->__("Manage your subscription", 'mailpoet').'</a><br />'.WPFunctions::get()->__("Add your postal address here!", 'mailpoet').'</p>',
|
'text' => '<p><a href="[link:subscription_unsubscribe_url]">' . WPFunctions::get()->__("Unsubscribe", 'mailpoet') . '</a> | <a href="[link:subscription_manage_url]">' . WPFunctions::get()->__("Manage your subscription", 'mailpoet') . '</a><br />' . WPFunctions::get()->__("Add your postal address here!", 'mailpoet') . '</p>',
|
||||||
'styles' =>
|
'styles' =>
|
||||||
[
|
[
|
||||||
'block' =>
|
'block' =>
|
||||||
@ -1189,7 +1190,7 @@ class PrimarySchool {
|
|||||||
],
|
],
|
||||||
'footer' =>
|
'footer' =>
|
||||||
[
|
[
|
||||||
'text' => '<p><a href="[link:subscription_unsubscribe_url]">'.WPFunctions::get()->__("Unsubscribe", 'mailpoet').'</a> | <a href="[link:subscription_manage_url]">'.WPFunctions::get()->__("Manage your subscription", 'mailpoet').'</a><br />'.WPFunctions::get()->__("Add your postal address here!", 'mailpoet').'</p>',
|
'text' => '<p><a href="[link:subscription_unsubscribe_url]">' . WPFunctions::get()->__("Unsubscribe", 'mailpoet') . '</a> | <a href="[link:subscription_manage_url]">' . WPFunctions::get()->__("Manage your subscription", 'mailpoet') . '</a><br />' . WPFunctions::get()->__("Add your postal address here!", 'mailpoet') . '</p>',
|
||||||
'styles' =>
|
'styles' =>
|
||||||
[
|
[
|
||||||
'block' =>
|
'block' =>
|
||||||
@ -1336,7 +1337,7 @@ class PrimarySchool {
|
|||||||
],
|
],
|
||||||
'header' =>
|
'header' =>
|
||||||
[
|
[
|
||||||
'text' => '<a href="[link:newsletter_view_in_browser_url]">'.WPFunctions::get()->__("View this in your browser.", 'mailpoet').'</a>',
|
'text' => '<a href="[link:newsletter_view_in_browser_url]">' . WPFunctions::get()->__("View this in your browser.", 'mailpoet') . '</a>',
|
||||||
'styles' =>
|
'styles' =>
|
||||||
[
|
[
|
||||||
'block' =>
|
'block' =>
|
||||||
@ -1361,5 +1362,4 @@ class PrimarySchool {
|
|||||||
],
|
],
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace MailPoet\Config\PopulatorData\Templates;
|
namespace MailPoet\Config\PopulatorData\Templates;
|
||||||
|
|
||||||
use MailPoet\WP\Functions as WPFunctions;
|
use MailPoet\WP\Functions as WPFunctions;
|
||||||
|
|
||||||
class WordPressTheme {
|
class WordPressTheme {
|
||||||
@ -1028,7 +1029,7 @@ class WordPressTheme {
|
|||||||
0 =>
|
0 =>
|
||||||
[
|
[
|
||||||
'type' => 'footer',
|
'type' => 'footer',
|
||||||
'text' => '<p><a href="[link:subscription_unsubscribe_url]">'.WPFunctions::get()->__("Unsubscribe", 'mailpoet').'</a> | <a href="[link:subscription_manage_url]">'.WPFunctions::get()->__("Manage your subscription", 'mailpoet').'</a><br />'.WPFunctions::get()->__("Add your postal address here!", 'mailpoet').'</p>',
|
'text' => '<p><a href="[link:subscription_unsubscribe_url]">' . WPFunctions::get()->__("Unsubscribe", 'mailpoet') . '</a> | <a href="[link:subscription_manage_url]">' . WPFunctions::get()->__("Manage your subscription", 'mailpoet') . '</a><br />' . WPFunctions::get()->__("Add your postal address here!", 'mailpoet') . '</p>',
|
||||||
'styles' =>
|
'styles' =>
|
||||||
[
|
[
|
||||||
'block' =>
|
'block' =>
|
||||||
@ -1262,7 +1263,7 @@ class WordPressTheme {
|
|||||||
],
|
],
|
||||||
'footer' =>
|
'footer' =>
|
||||||
[
|
[
|
||||||
'text' => '<p><a href="[link:subscription_unsubscribe_url]">'.WPFunctions::get()->__("Unsubscribe", 'mailpoet').'</a> | <a href="[link:subscription_manage_url]">'.WPFunctions::get()->__("Manage your subscription", 'mailpoet').'</a><br />'.WPFunctions::get()->__("Add your postal address here!", 'mailpoet').'</p>',
|
'text' => '<p><a href="[link:subscription_unsubscribe_url]">' . WPFunctions::get()->__("Unsubscribe", 'mailpoet') . '</a> | <a href="[link:subscription_manage_url]">' . WPFunctions::get()->__("Manage your subscription", 'mailpoet') . '</a><br />' . WPFunctions::get()->__("Add your postal address here!", 'mailpoet') . '</p>',
|
||||||
'styles' =>
|
'styles' =>
|
||||||
[
|
[
|
||||||
'block' =>
|
'block' =>
|
||||||
@ -1409,7 +1410,7 @@ class WordPressTheme {
|
|||||||
],
|
],
|
||||||
'header' =>
|
'header' =>
|
||||||
[
|
[
|
||||||
'text' => '<a href="[link:newsletter_view_in_browser_url]">'.WPFunctions::get()->__("View this in your browser.", 'mailpoet').'</a>',
|
'text' => '<a href="[link:newsletter_view_in_browser_url]">' . WPFunctions::get()->__("View this in your browser.", 'mailpoet') . '</a>',
|
||||||
'styles' =>
|
'styles' =>
|
||||||
[
|
[
|
||||||
'block' =>
|
'block' =>
|
||||||
@ -1434,5 +1435,4 @@ class WordPressTheme {
|
|||||||
],
|
],
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user