/**
  * @ignore
  */
 protected function start()
 {
     parent::start();
 }
 /**
  * @ignore
  */
 protected function start()
 {
     $out = $this->do_head();
     $title = $this->report()->get_title();
     if ($title) {
         $out .= '<h1>' . htmlentities($title, ENT_QUOTES) . '</h1>';
     }
     $desc = $this->report()->get_description();
     if ($desc) {
         $out .= '<p class="description">' . $desc . '</p>';
     }
     $out .= '<table id="report_data">';
     $this->_in_table = TRUE;
     $this->_out .= $out;
     parent::start();
 }