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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
|
<?php defined('SYSPATH') OR die('No direct access allowed.');
/**
* Loads and displays Kohana view files. Can also handle output of some binary
* files, such as image, Javascript, and CSS files.
*
* $Id: View.php 4679 2009-11-10 01:45:52Z isaiah $
*
* @package Core
* @author Kohana Team
* @copyright (c) 2007-2009 Kohana Team
* @license http://kohanaphp.com/license
*/
class View_Core {
// The view file name and type
protected $kohana_filename = FALSE;
protected $kohana_filetype = FALSE;
// View variable storage
protected $kohana_local_data = array();
/**
* Creates a new View using the given parameters.
*
* @param string view name
* @param array pre-load data
* @param string type of file: html, css, js, etc.
* @return object
*/
public static function factory($name = NULL, $data = NULL, $type = NULL)
{
return new View($name, $data, $type);
}
/**
* Attempts to load a view and pre-load view data.
*
* @throws Kohana_Exception if the requested view cannot be found
* @param string view name
* @param array pre-load data
* @param string type of file: html, css, js, etc.
* @return void
*/
public function __construct($name = NULL, $data = NULL, $type = NULL)
{
if (is_string($name) AND $name !== '')
{
// Set the filename
$this->set_filename($name, $type);
}
if (is_array($data) AND ! empty($data))
{
// Preload data using array_merge, to allow user extensions
$this->kohana_local_data = array_merge($this->kohana_local_data, $data);
}
}
/**
* Magic method access to test for view property
*
* @param string View property to test for
* @return boolean
*/
public function __isset($key = NULL)
{
return $this->is_set($key);
}
/**
* Sets the view filename.
*
* @chainable
* @param string view filename
* @param string view file type
* @return object
*/
public function set_filename($name, $type = NULL)
{
if ($type == NULL)
{
// Load the filename and set the content type
$this->kohana_filename = Kohana::find_file('views', $name, TRUE);
$this->kohana_filetype = EXT;
}
else
{
// Check if the filetype is allowed by the configuration
if ( ! in_array($type, Kohana::config('view.allowed_filetypes')))
throw new Kohana_Exception('The requested filetype, .:type:, is not allowed in your view configuration file', array(':type:' => $type));
// Load the filename and set the content type
$this->kohana_filename = Kohana::find_file('views', $name, TRUE, $type);
$this->kohana_filetype = Kohana::config('mimes.'.$type);
if ($this->kohana_filetype == NULL)
{
// Use the specified type
$this->kohana_filetype = $type;
}
}
return $this;
}
/**
* Sets a view variable.
*
* @param string|array name of variable or an array of variables
* @param mixed value when using a named variable
* @return object
*/
public function set($name, $value = NULL)
{
if (is_array($name))
{
foreach ($name as $key => $value)
{
$this->__set($key, $value);
}
}
else
{
$this->__set($name, $value);
}
return $this;
}
/**
* Checks for a property existence in the view locally or globally. Unlike the built in __isset(),
* this method can take an array of properties to test simultaneously.
*
* @param string $key property name to test for
* @param array $key array of property names to test for
* @return boolean property test result
* @return array associative array of keys and boolean test result
*/
public function is_set( $key = FALSE )
{
// Setup result;
$result = FALSE;
// If key is an array
if (is_array($key))
{
// Set the result to an array
$result = array();
// Foreach key
foreach ($key as $property)
{
// Set the result to an associative array
$result[$property] = (array_key_exists($property, $this->kohana_local_data)) ? TRUE : FALSE;
}
}
else
{
// Otherwise just check one property
$result = (array_key_exists($key, $this->kohana_local_data)) ? TRUE : FALSE;
}
// Return the result
return $result;
}
/**
* Sets a bound variable by reference.
*
* @param string name of variable
* @param mixed variable to assign by reference
* @return object
*/
public function bind($name, & $var)
{
$this->kohana_local_data[$name] =& $var;
return $this;
}
/**
* Magically sets a view variable.
*
* @param string variable key
* @param string variable value
* @return void
*/
public function __set($key, $value)
{
$this->kohana_local_data[$key] = $value;
}
/**
* Magically gets a view variable.
*
* @param string variable key
* @return mixed variable value if the key is found
* @return void if the key is not found
*/
public function &__get($key)
{
if (isset($this->kohana_local_data[$key]))
{
return $this->kohana_local_data[$key];
}
elseif (isset($this->$key))
{
return $this->$key;
}
else
{
throw new Kohana_Exception('Undefined view variable: :var',
array(':var' => $key));
}
}
/**
* Magically converts view object to string.
*
* @return string
*/
public function __toString()
{
try
{
return $this->render();
}
catch (Exception $e)
{
Kohana_Exception::handle($e);
return (string) '';
}
}
/**
* Renders a view.
*
* @param boolean set to TRUE to echo the output instead of returning it
* @param callback special renderer to pass the output through
* @param callback modifier to pass the data through before rendering
* @return string if print is FALSE
* @return void if print is TRUE
*/
public function render($print = FALSE, $renderer = FALSE, $modifier = FALSE)
{
if (empty($this->kohana_filename))
throw new Kohana_Exception('You must set the the view filename before calling render');
if (is_string($this->kohana_filetype))
{
// Merge global and local data, local overrides global with the same name
$data = $this->kohana_local_data;
if ($modifier !== FALSE AND is_callable($modifier, TRUE))
{
// Pass the data through the user defined modifier
$data = call_user_func($modifier, $data);
}
$output = $this->load_view($this->kohana_filename, $data);
if ($renderer !== FALSE AND is_callable($renderer, TRUE))
{
// Pass the output through the user defined renderer
$output = call_user_func($renderer, $output);
}
if ($print === TRUE)
{
// Display the output
echo $output;
return;
}
}
else
{
// Set the content type and size
header('Content-Type: '.$this->kohana_filetype[0]);
if ($print === TRUE)
{
if ($file = fopen($this->kohana_filename, 'rb'))
{
// Display the output
fpassthru($file);
fclose($file);
}
return;
}
// Fetch the file contents
$output = file_get_contents($this->kohana_filename);
}
return $output;
}
/**
* Includes a View within the controller scope.
*
* @param string view filename
* @param array array of view variables
* @return string
*/
public function load_view($kohana_view_filename, $kohana_input_data)
{
if ($kohana_view_filename == '')
return;
// Buffering on
ob_start();
// Import the view variables to local namespace
extract($kohana_input_data, EXTR_SKIP);
try
{
include $kohana_view_filename;
}
catch (Exception $e)
{
ob_end_clean();
throw $e;
}
// Fetch the output and close the buffer
return ob_get_clean();
}
} // End View
|