blob: 77756757b4ec6bbb1f4a3313f78c507550c654c4 (
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
|
<?php
namespace Helper;
/**
* Template Hook helpers
*
* @package helper
* @author Frederic Guillot
*/
class Hook extends \Core\Base
{
private $hooks = array();
/**
* Render all attached hooks
*
* @access public
* @param string $hook
* @param array $variables
* @return string
*/
public function render($hook, array $variables = array())
{
$buffer = '';
foreach ($this->hooks as $name => $template) {
if ($hook === $name) {
$buffer .= $this->template->render($template, $variables);
}
}
return $buffer;
}
/**
* Attach a template to a hook
*
* @access public
* @param string $hook
* @param string $template
* @return \Helper\Hook
*/
public function attach($hook, $template)
{
$this->hooks[$hook] = $template;
return $this;
}
}
|