Fix code style

This commit is contained in:
Amine Ben hammou
2020-08-04 13:21:17 +02:00
committed by Veljko V
parent 1fd83c267c
commit 0a0dbf0fa1
12 changed files with 44 additions and 50 deletions

View File

@@ -1,6 +1,7 @@
<?php
namespace MailPoet\Config\PopulatorData\Templates;
use MailPoet\WP\Functions as WPFunctions;
class CityLocalNews {
@@ -1037,7 +1038,7 @@ class CityLocalNews {
3 =>
[
'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' =>
[
'block' =>
@@ -1319,7 +1320,7 @@ class CityLocalNews {
],
'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' =>
[
'block' =>
@@ -1474,7 +1475,7 @@ class CityLocalNews {
],
'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' =>
[
'block' =>
@@ -1499,5 +1500,4 @@ class CityLocalNews {
],
];
}
}