1 | <?php |
||
17 | final class StringTwigExtension extends AbstractExtension |
||
18 | { |
||
19 | private const MAIL_HTML_PATTERN = '/\<a(?:[^>]+)href\=\"mailto\:([^">]+)\"(?:[^>]*)\>(.*?)\<\/a\>/ism'; |
||
20 | private const MAIL_TEXT_PATTERN = '/(([A-Z0-9._%+-]+)@([A-Z0-9.-]+)\.([A-Z]{2,4})(\((.+?)\))?)/i'; |
||
21 | |||
22 | /** |
||
23 | * @var string|null |
||
24 | */ |
||
25 | private $mailCssClass; |
||
26 | |||
27 | /** |
||
28 | * @var string[] |
||
29 | */ |
||
30 | private $mailAtText; |
||
31 | |||
32 | /** |
||
33 | * @var string[] |
||
34 | */ |
||
35 | private $mailDotText; |
||
36 | |||
37 | /** |
||
38 | * @param string[] $mailAtText |
||
39 | * @param string[] $mailDotText |
||
40 | */ |
||
41 | public function __construct(?string $mailCssClass, array $mailAtText, array $mailDotText) |
||
47 | |||
48 | public function getFilters() |
||
56 | |||
57 | /** |
||
58 | * Replaces E-Mail addresses with an alternative text representation. |
||
59 | * |
||
60 | * @param string $string input string |
||
61 | * @param bool $html Secure html or text |
||
62 | * |
||
63 | * @return string with replaced links |
||
64 | */ |
||
65 | public function antispam(string $string, bool $html = true): string |
||
73 | |||
74 | /** |
||
75 | * @param string[] $matches |
||
76 | */ |
||
77 | private function encryptMailText(array $matches): string |
||
85 | |||
86 | /** |
||
87 | * @param string[] $matches |
||
88 | */ |
||
89 | private function encryptMail(array $matches): string |
||
105 | |||
106 | private function getSecuredName(string $name, bool $isDomain = false): string |
||
120 | } |
||
121 |
This check marks access to variables or properties that have not been declared yet. While PHP has no explicit notion of declaring a variable, accessing it before a value is assigned to it is most likely a bug.