You are here

protected function BatEventTypeUIController::overviewTableRow in Booking and Availability Management Tools for Drupal 7

Generates the row for the passed entity and may be overridden in order to customize the rows.

Parameters

$additional_cols: Additional columns to be added after the entity label column.

Overrides EntityDefaultUIController::overviewTableRow

File

modules/bat_event/bat_event_type.admin.inc, line 32
BatEvent type editing UI.

Class

BatEventTypeUIController
UI controller.

Code

protected function overviewTableRow($conditions, $id, $entity, $additional_cols = array()) {
  $row = parent::overviewTableRow($conditions, $id, $entity, $additional_cols);
  $row[] = l(t('manage states'), $this->path . '/manage/' . $id . '/states');
  return $row;
}