Пример #1
0
 /**
  * Gets the HTML of this table
  * @return string
  */
 public function getHtml()
 {
     $html = '<table' . $this->getIdHtml() . $this->getClassHtml() . $this->getAttributesHtml() . '>' . "\n";
     if ($this->header) {
         $html .= "\t" . $this->header->getHtml() . "\n";
     }
     foreach ($this->rows as $row) {
         $html .= "\t" . $row->getHtml() . "\n";
     }
     $html .= '</table>' . "\n";
     return $html;
 }