1 | <?php |
||
6 | class AzineEmailTwigExtension extends \Twig_Extension |
||
7 | { |
||
8 | /** |
||
9 | * @var TemplateProviderInterface |
||
10 | */ |
||
11 | private $templateProvider; |
||
12 | |||
13 | /** |
||
14 | * @var TranslatorInterface |
||
15 | */ |
||
16 | private $translator; |
||
17 | |||
18 | /** |
||
19 | * @var array |
||
20 | */ |
||
21 | private $domainsToTrack; |
||
22 | |||
23 | /** |
||
24 | * @param TemplateProviderInterface $templateProvider |
||
25 | * @param TranslatorInterface $translator |
||
26 | * @param array of string $domainsToTrack |
||
27 | */ |
||
28 | 12 | public function __construct(TemplateProviderInterface $templateProvider, TranslatorInterface $translator, array $domainsToTrack = array()){ |
|
33 | |||
34 | /** |
||
35 | * {@inheritdoc} |
||
36 | */ |
||
37 | 1 | public function getFilters() |
|
45 | |||
46 | 1 | public function urlEncodeText($text) |
|
47 | { |
||
48 | 1 | $text = str_replace("%","%25", $text); |
|
49 | 1 | $text = str_replace(array( "\n", |
|
50 | 1 | " ", |
|
51 | 1 | "&", |
|
52 | 1 | "\\", |
|
53 | 1 | "<", |
|
54 | 1 | ">", |
|
55 | 1 | '"', |
|
56 | 1 | " ", |
|
57 | 1 | ), |
|
58 | 1 | array( "%0D%0A", |
|
59 | 1 | "%20", |
|
60 | 1 | "%26", |
|
61 | 1 | "%5C", |
|
62 | 1 | "%3D", |
|
63 | 1 | "%3E", |
|
64 | 1 | "%23", |
|
65 | 1 | "%09", |
|
66 | 1 | ), $text); |
|
67 | |||
68 | 1 | return $text; |
|
69 | } |
||
70 | |||
71 | /** |
||
72 | * Wrap the text to the lineLength is not exeeded. |
||
73 | * @param string $text |
||
74 | * @param integer $lineLength default: 75 |
||
75 | * @return string the wrapped string |
||
76 | */ |
||
77 | 3 | public function textWrap($text, $lineLength = 75) |
|
81 | |||
82 | /** |
||
83 | * Returns the name of the extension. |
||
84 | * |
||
85 | * @return string The extension name |
||
86 | */ |
||
87 | 1 | public function getName() |
|
91 | |||
92 | public function addCampaignParamsForTemplate($html, $templateId, $templateParams){ |
||
96 | |||
97 | /** |
||
98 | * Add the campaign-parameters to all URLs in the html |
||
99 | * @param string $html |
||
100 | * @param array $campaignParams |
||
101 | * @return string |
||
102 | */ |
||
103 | 3 | public function addCampaignParamsToAllUrls($html, $campaignParams) |
|
104 | { |
||
105 | |||
106 | 3 | $urlPattern = '/(href=[\'|"])(http[s]?\:\/\/\S*)([\'|"])/'; |
|
107 | |||
108 | $filteredHtml = preg_replace_callback($urlPattern, function ($matches) use ($campaignParams) { |
||
109 | 3 | $start = $matches[1]; |
|
110 | 3 | $url = $matches[2]; |
|
111 | 3 | $end = $matches[3]; |
|
112 | 3 | $domain = parse_url($url, PHP_URL_HOST); |
|
113 | |||
114 | // if the url is not in the list of domains to track then |
||
115 | 3 | if(array_search($domain, $this->domainsToTrack) === false){ |
|
116 | // don't append tracking parameters to the url |
||
117 | 3 | return $start.$url.$end; |
|
118 | } |
||
119 | |||
120 | // avoid duplicate params and don't replace existing params |
||
121 | $params = array(); |
||
122 | foreach($campaignParams as $nextKey => $nextValue){ |
||
123 | if(strpos($url, $nextKey) === false){ |
||
124 | $params[$nextKey] = $nextValue; |
||
125 | } |
||
126 | } |
||
127 | |||
128 | $urlParams = http_build_query($params); |
||
129 | |||
130 | if (strpos($url,"?") === false) { |
||
131 | $urlParams = "?".$urlParams; |
||
132 | } else { |
||
133 | $urlParams = "&".$urlParams; |
||
134 | } |
||
135 | |||
136 | $replacement = $start.$url.$urlParams.$end; |
||
137 | |||
138 | return $replacement; |
||
139 | |||
140 | 3 | }, $html); |
|
141 | |||
142 | 3 | return $filteredHtml; |
|
143 | } |
||
144 | |||
145 | /** |
||
146 | * Convert: |
||
147 | * - a-tags to show the link and if the link-text is not contained in the link, also the link-text |
||
148 | * - remove double-whitespaces and whitespaces at line beginnings and ends. |
||
149 | * - html-special chars to their original representation (php => htmlspecialchars_decode) |
||
150 | * and then remove all html-tags (php => strip_tags) |
||
151 | */ |
||
152 | public function stripAndConvertTags($html){ |
||
175 | } |
||
176 |
Adding an explicit array definition is generally preferable to implicit array definition as it guarantees a stable state of the code.
Let’s take a look at an example:
As you can see in this example, the array
$myArray
is initialized the first time when the foreach loop is entered. You can also see that the value of thebar
key is only written conditionally; thus, its value might result from a previous iteration.This might or might not be intended. To make your intention clear, your code more readible and to avoid accidental bugs, we recommend to add an explicit initialization $myArray = array() either outside or inside the foreach loop.