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