class Kostache extends Kohana_Kostache
{
public function before_render()
{
// Nothing by default
}
public function render($template = NULL, $view = NULL, $partials = NULL)
{
if (NULL === $template)
{
$this->before_render();
}
return parent::render($template, $view, $partials);
}
}It looks like you're new here. If you want to get involved, click one of these buttons!