You are here

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

Parameters

string $rowName:

Return value

$this

Throws

Exception

File

lib/UI/Table.php, line 104

Class

crumbs_UI_Table
A class to render HTML tables.

Code

function addRowName($rowName) {
  $this->tbody
    ->addRowName($rowName);
  return $this;
}