function crumbs_UI_Table::th in Crumbs, the Breadcrumbs suite 7.2
Parameters
string $rowName:
string $colName:
string $content:
Return value
$this
File
- lib/
UI/ Table.php, line 139
Class
- crumbs_UI_Table
- A class to render HTML tables.
Code
function th($rowName, $colName, $content) {
$this->tbody
->th($rowName, $colName, $content);
return $this;
}