/** * Starts rendering of the view objects * * @return void */ public function renderAll() { $this->content = $this->container->renderView(); }
/** * * @param Uni_Core_View $view * @param string $content * @return string */ protected function getViewMarkup($view, $content) { if (!$view instanceof Uni_Core_View || !$view) { return $content; } $output = '<tr class="row"><td colspan="2" class="ele view">' . $view->renderView() . '</td></tr>'; return $content . $output; }