blob: ba195c6dc3351ca78efb3729fd948f5053bd5b51 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
<?php
namespace ipl\Stdlib\Loader;
use ipl\Stdlib\Contract\PluginLoader;
/**
* Plugin loader that makes use of registered PHP autoloaders
*/
class AutoloadingPluginLoader implements PluginLoader
{
/** @var string Namespace of the plugins */
protected $namespace;
/** @var string Class name postfix */
protected $postfix;
/**
* Create a new autoloading plugin loader
*
* @param string $namespace Namespace of the plugins
* @param string $postfix Class name postfix
*/
public function __construct($namespace, $postfix = '')
{
$this->namespace = $namespace;
$this->postfix = $postfix;
}
/**
* Get the FQN of a plugin
*
* @param string $name Name of the plugin
*
* @return string
*/
protected function getFqn($name)
{
return $this->namespace . '\\' . ucfirst($name) . $this->postfix;
}
public function load($name)
{
$class = $this->getFqn($name);
if (! class_exists($class)) {
return false;
}
return $class;
}
}
|