-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathChainLoader.php
76 lines (64 loc) · 1.38 KB
/
ChainLoader.php
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?php
namespace Sfk\EmailTemplateBundle\Loader;
/**
* ChainLoader
*
*/
class ChainLoader implements LoaderInterface
{
/**
* @var array
*
*/
protected $loaders;
/**
* Constructor
*
*/
public function __construct()
{
$this->loaders = array();
}
/**
* Add loader
*
* @param LoaderInterface $loader
*/
public function addLoader(LoaderInterface $loader)
{
$this->loaders[] = $loader;
}
/**
* Return loaders
*
* @return array
*/
public function getLoaders()
{
return $this->loaders;
}
/**
* {@inheritdoc}
*
*/
public function load($templateName, array $parameters = array())
{
if (0 == count($this->loaders)) {
throw new \LogicException('You must add at least one loader.');
}
$templateName = (string) $templateName;
$template = null;
foreach ($this->loaders as $loader) {
try {
$template = $loader->load($templateName, $parameters);
break;
} catch (LoaderException $e) {
// skip to next
}
}
if (null === $template) {
throw new LoaderException(sprintf('Could not load "%s" template.', $templateName));
}
return $template;
}
}