コード例 #1
0
ファイル: html_table.php プロジェクト: 2626suke/curryfw
 /**
  * Get element of header row
  * 
  * @param int $rowIndex
  * @return HtmlTableRow
  */
 public function getHeader($rowIndex)
 {
     $ret = null;
     if ($this->_thead instanceof HtmlElement) {
         $ret = $this->_thead->getElement($rowIndex);
     }
     return $ret;
 }