1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/* |
4
|
|
|
* This file is part of SwiftMailer. |
5
|
|
|
* (c) 2004-2009 Chris Corbyn |
6
|
|
|
* |
7
|
|
|
* For the full copyright and license information, please view the LICENSE |
8
|
|
|
* file that was distributed with this source code. |
9
|
|
|
*/ |
10
|
|
|
|
11
|
|
|
/** |
12
|
|
|
* General utility class in Swift Mailer, not to be instantiated. |
13
|
|
|
* |
14
|
|
|
* |
15
|
|
|
* @author Chris Corbyn |
16
|
|
|
*/ |
17
|
|
|
abstract class Swift |
|
|
|
|
18
|
|
|
{ |
19
|
|
|
const VERSION = '5.x'; |
20
|
|
|
|
21
|
|
|
/** |
22
|
|
|
* @var bool |
23
|
|
|
*/ |
24
|
|
|
public static $initialized = false; |
25
|
|
|
|
26
|
|
|
/** |
27
|
|
|
* @var array |
28
|
|
|
*/ |
29
|
|
|
public static $inits = array(); |
30
|
|
|
|
31
|
|
|
/** |
32
|
|
|
* Registers an initializer callable that will be called the first time |
33
|
|
|
* a SwiftMailer class is autoloaded. |
34
|
|
|
* |
35
|
|
|
* This enables you to tweak the default configuration in a lazy way. |
36
|
|
|
* |
37
|
|
|
* @param mixed $callable A valid PHP callable that will be called when autoloading the first Swift class |
38
|
|
|
*/ |
39
|
|
|
public static function init($callable) |
40
|
|
|
{ |
41
|
|
|
self::$inits[] = $callable; |
42
|
|
|
} |
43
|
|
|
|
44
|
|
|
/** |
45
|
|
|
* Internal autoloader for spl_autoload_register(). |
46
|
|
|
* |
47
|
|
|
* @param string $class |
48
|
|
|
*/ |
49
|
63 |
|
public static function autoload(string $class) |
50
|
|
|
{ |
51
|
|
|
// "maybe" don't interfere with other autoloaders |
52
|
63 |
|
if (0 !== strpos($class, 'Swift_')) { |
53
|
|
|
return; |
54
|
|
|
} |
55
|
|
|
|
56
|
63 |
|
$path = __DIR__ . '/' . str_replace('_', '/', $class) . '.php'; |
57
|
|
|
|
58
|
63 |
|
if (!file_exists($path)) { |
59
|
|
|
return; |
60
|
|
|
} |
61
|
|
|
|
62
|
|
|
/** @noinspection PhpIncludeInspection */ |
63
|
63 |
|
require $path; |
64
|
|
|
|
65
|
63 |
|
if (self::$inits && !self::$initialized) { |
|
|
|
|
66
|
|
|
self::$initialized = true; |
67
|
|
|
foreach (self::$inits as $init) { |
68
|
|
|
call_user_func($init); |
69
|
|
|
} |
70
|
|
|
} |
71
|
63 |
|
} |
72
|
|
|
|
73
|
|
|
/** |
74
|
|
|
* Configure autoloading using Swift Mailer. |
75
|
|
|
* |
76
|
|
|
* This is designed to play nicely with other autoloaders. |
77
|
|
|
* |
78
|
|
|
* @param mixed $callable A valid PHP callable that will be called when autoloading the first Swift class |
79
|
|
|
*/ |
80
|
|
|
public static function registerAutoload($callable = null) |
81
|
|
|
{ |
82
|
|
|
if (null !== $callable) { |
83
|
|
|
self::$inits[] = $callable; |
84
|
|
|
} |
85
|
|
|
|
86
|
|
|
spl_autoload_register(array('Swift', 'autoload')); |
87
|
|
|
} |
88
|
|
|
|
89
|
|
|
/** |
90
|
|
|
* php-strtolower with static-cache |
91
|
|
|
* |
92
|
|
|
* @param $string |
93
|
|
|
* |
94
|
|
|
* @return string |
95
|
|
|
*/ |
96
|
353 |
|
public static function strtolowerWithStaticCache(string $string): string |
97
|
|
|
{ |
98
|
353 |
|
static $staticStrtolowerCache = array(); |
99
|
|
|
|
100
|
353 |
|
if (isset($staticStrtolowerCache[$string])) { |
101
|
334 |
|
return $staticStrtolowerCache[$string]; |
102
|
|
|
} |
103
|
|
|
|
104
|
48 |
|
$staticStrtolowerCache[$string] = strtolower($string); |
105
|
|
|
|
106
|
48 |
|
return $staticStrtolowerCache[$string]; |
107
|
|
|
} |
108
|
|
|
} |
109
|
|
|
|
You can fix this by adding a namespace to your class:
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.