You are here

protected function RulesLinkUIController::overviewTableRow in Rules Link 7.2

Same name and namespace in other branches
  1. 7 rules_link.admin.inc \RulesLinkUIController::overviewTableRow()

Overrides EntityDefaultUIController::overviewTableRow().

Overrides EntityDefaultUIController::overviewTableRow

File

./rules_link.admin.inc, line 48
Generate a admin UI.

Class

RulesLinkUIController
UI controller.

Code

protected function overviewTableRow($conditions, $id, $entity, $additional_cols = array()) {

  // Add a column showing the entity type.
  $entity_info = entity_get_info($entity->entity_type);
  $additional_cols[] = $entity_info['label'];
  return parent::overviewTableRow($conditions, $id, $entity, $additional_cols);
}