Ejemplo n.º 1
0
 /**
  */
 public function render($output = true)
 {
     if (!$output) {
         ob_start();
     }
     $this->open_block();
     parent::render(true);
     $this->close_block();
     if (!$output) {
         return ob_get_clean();
     }
 }