You are here

public function EntityformTypeUIController::overviewTable in Entityform 7

Same name and namespace in other branches
  1. 7.2 entityform_type.admin.inc \EntityformTypeUIController::overviewTable()

Generates the render array for a overview table for arbitrary entities matching the given conditions.

Parameters

$conditions: An array of conditions as needed by entity_load().

Return value

array A renderable array.

Overrides EntityDefaultUIController::overviewTable

File

./entityform_type.admin.inc, line 60
Entityform type editing UI.

Class

EntityformTypeUIController
UI controller.

Code

public function overviewTable($conditions = array()) {
  $render = parent::overviewTable($conditions);
  $render['#header'][] = t('Submissions');
  $render['#header'][] = t('Submit Link');
  return $render;
}