You are here

function crumbs_UI_Table::td in Crumbs, the Breadcrumbs suite 7.2

Parameters

string $rowName:

string $colName:

string $content:

Return value

$this

File

lib/UI/Table.php, line 127

Class

crumbs_UI_Table
A class to render HTML tables.

Code

function td($rowName, $colName, $content) {
  $this->tbody
    ->td($rowName, $colName, $content);
  return $this;
}