You are here

public function crumbs_UI_Table::addRowClass in Crumbs, the Breadcrumbs suite 7.2

Parameters

string $rowName:

string $class:

Return value

$this

File

lib/UI/Table.php, line 115

Class

crumbs_UI_Table
A class to render HTML tables.

Code

public function addRowClass($rowName, $class) {
  $this->tbody
    ->addRowClass($rowName, $class);
  return $this;
}