1 | <?php |
||
11 | class Template |
||
12 | { |
||
13 | /** |
||
14 | * Instance of the template engine. |
||
15 | * @var Engine |
||
16 | */ |
||
17 | protected $engine; |
||
18 | |||
19 | /** |
||
20 | * The name of the template. |
||
21 | * @var Name |
||
22 | */ |
||
23 | protected $name; |
||
24 | |||
25 | /** |
||
26 | * The data assigned to the template. |
||
27 | * @var array |
||
28 | */ |
||
29 | protected $data = array(); |
||
30 | |||
31 | /** |
||
32 | * An array of section content. |
||
33 | * @var array |
||
34 | */ |
||
35 | protected $sections = array(); |
||
36 | |||
37 | /** |
||
38 | * The name of the template layout. |
||
39 | * @var string |
||
40 | */ |
||
41 | protected $layoutName; |
||
42 | |||
43 | /** |
||
44 | * The data assigned to the template layout. |
||
45 | * @var array |
||
46 | */ |
||
47 | protected $layoutData; |
||
48 | |||
49 | /** |
||
50 | * Create new Template instance. |
||
51 | * @param Engine $engine |
||
52 | * @param string $name |
||
53 | */ |
||
54 | 84 | public function __construct(Engine $engine, $name) |
|
61 | |||
62 | /** |
||
63 | * Magic method used to call extension functions. |
||
64 | * @param string $name |
||
65 | * @param array $arguments |
||
66 | * @return mixed |
||
67 | */ |
||
68 | 8 | public function __call($name, $arguments) |
|
72 | |||
73 | /** |
||
74 | * Assign data to template object. |
||
75 | * @param array $data |
||
76 | * @return null |
||
77 | */ |
||
78 | 84 | public function data(array $data) |
|
82 | |||
83 | /** |
||
84 | * Check if the template exists. |
||
85 | * @return boolean |
||
86 | */ |
||
87 | 72 | public function exists() |
|
91 | |||
92 | /** |
||
93 | * Get the template path. |
||
94 | * @return string |
||
95 | */ |
||
96 | 68 | public function path() |
|
100 | |||
101 | /** |
||
102 | * Render the template and layout. |
||
103 | * @param array $data |
||
104 | * @return string |
||
105 | */ |
||
106 | 64 | public function render(array $data = array()) |
|
142 | |||
143 | /** |
||
144 | * Set the template's layout. |
||
145 | * @param string $name |
||
146 | * @param array $data |
||
147 | * @return null |
||
148 | */ |
||
149 | 16 | protected function layout($name, array $data = array()) |
|
154 | |||
155 | /** |
||
156 | * Start a new section block. |
||
157 | * @param string $name |
||
158 | * @param boolean $append |
||
159 | * @return null |
||
160 | */ |
||
161 | 8 | protected function start($name, $append = false) |
|
177 | |||
178 | /** |
||
179 | * Stop the current section block. |
||
180 | * @return null |
||
181 | */ |
||
182 | 8 | protected function stop() |
|
194 | |||
195 | /** |
||
196 | * Returns the content for a section block. |
||
197 | * @param string $name Section name |
||
198 | * @param string $default Default section content |
||
199 | * @return string|null |
||
200 | */ |
||
201 | 16 | protected function section($name, $default = null) |
|
209 | |||
210 | /** |
||
211 | * Fetch a rendered template. |
||
212 | * @param string $name |
||
213 | * @param array $data |
||
214 | * @return string |
||
215 | */ |
||
216 | 4 | protected function fetch($name, array $data = array()) |
|
220 | |||
221 | /** |
||
222 | * Output a rendered template. |
||
223 | * @param string $name |
||
224 | * @param array $data |
||
225 | * @return null |
||
226 | */ |
||
227 | 4 | protected function insert($name, array $data = array()) |
|
231 | |||
232 | /** |
||
233 | * Apply multiple functions to variable. |
||
234 | * @param mixed $var |
||
235 | * @param string $functions |
||
236 | * @return mixed |
||
237 | */ |
||
238 | 8 | protected function batch($var, $functions) |
|
254 | |||
255 | /** |
||
256 | * Escape string. |
||
257 | * @param string $string |
||
258 | * @param null|string $functions |
||
259 | * @return string |
||
260 | */ |
||
261 | 12 | protected function escape($string, $functions = null) |
|
275 | |||
276 | /** |
||
277 | * Alias to escape function. |
||
278 | * @param string $string |
||
279 | * @param null|string $functions |
||
280 | * @return string |
||
281 | */ |
||
282 | 4 | protected function e($string, $functions = null) |
|
286 | } |
||
287 |