Remove comment bloat from View class.
This commit is contained in:
parent
2f999397e3
commit
42cff59a7d
|
@ -57,9 +57,7 @@ public function get()
|
||||||
{
|
{
|
||||||
static::$last = $this->view;
|
static::$last = $this->view;
|
||||||
|
|
||||||
// -----------------------------------------------------
|
|
||||||
// Get the evaluated content of all of the sub-views.
|
// Get the evaluated content of all of the sub-views.
|
||||||
// -----------------------------------------------------
|
|
||||||
foreach ($this->data as &$data)
|
foreach ($this->data as &$data)
|
||||||
{
|
{
|
||||||
if ($data instanceof View or $data instanceof Response)
|
if ($data instanceof View or $data instanceof Response)
|
||||||
|
@ -68,27 +66,18 @@ public function get()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// -----------------------------------------------------
|
|
||||||
// Extract the view data into the local scope.
|
// Extract the view data into the local scope.
|
||||||
// -----------------------------------------------------
|
|
||||||
extract($this->data, EXTR_SKIP);
|
extract($this->data, EXTR_SKIP);
|
||||||
|
|
||||||
// -----------------------------------------------------
|
|
||||||
// Start the output buffer so nothing escapes to the
|
|
||||||
// browser. The response will be sent later.
|
|
||||||
// -----------------------------------------------------
|
|
||||||
ob_start();
|
ob_start();
|
||||||
|
|
||||||
$path = $this->find();
|
$path = $this->find();
|
||||||
|
|
||||||
// -----------------------------------------------------
|
// We include the view into the local scope within a try / catch to catch any
|
||||||
// We include the view into the local scope within a
|
// exceptions that may occur while the view is rendering.
|
||||||
// try / catch block to catch any exceptions that may
|
|
||||||
// occur while the view is rendering.
|
|
||||||
//
|
//
|
||||||
// Otherwise, a white screen of death will be shown
|
// Otherwise, a white screen of death will be shown if an exception occurs
|
||||||
// if an exception occurs while rendering the view.
|
// while rendering the view.
|
||||||
// -----------------------------------------------------
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
include $path;
|
include $path;
|
||||||
|
|
Loading…
Reference in New Issue