You are here

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

Parameters

string $groupName:

string[] $colNameSuffixes:

Return value

$this

Throws

Exception

File

lib/UI/Table.php, line 64

Class

crumbs_UI_Table
A class to render HTML tables.

Code

function addColGroup($groupName, array $colNameSuffixes) {
  $this->columns
    ->addColGroup($groupName, $colNameSuffixes);
  return $this;
}