コード例 #1
0
ファイル: html_table.php プロジェクト: 2626suke/curryfw
 /**
  * Get all elements of header rows
  * 
  * @return array
  */
 public function getHeaders()
 {
     $ret = null;
     if ($this->_thead instanceof HtmlElement) {
         $ret = $this->_thead->getElements();
     }
     return $ret;
 }