You are here

function crumbs_UI_TableSection::th in Crumbs, the Breadcrumbs suite 7.2

Parameters

string $rowName:

string $colName:

string $content:

Return value

$this

File

lib/UI/TableSection.php, line 83

Class

crumbs_UI_TableSection

Code

function th($rowName, $colName, $content) {
  $this->cells[$rowName][$colName] = array(
    $content,
    'th',
    array(),
  );
  return $this;
}