You are here

public function crumbs_UI_TableColumns::verifyColName in Crumbs, the Breadcrumbs suite 7.2

File

lib/UI/TableColumns.php, line 62

Class

crumbs_UI_TableColumns

Code

public function verifyColName($colName) {
  if (1 && !isset($this->cols[$colName]) && !isset($this->colGroups[$colName]) && '' !== $colName) {
    throw new Exception("Unknown column name '{$colName}'.");
  }
}