You are here

function entity_ui_overview_form in Entity API 7

Form builder function for the overview form.

See also

EntityDefaultUIController::overviewForm()

1 string reference to 'entity_ui_overview_form'
EntityDefaultUIController::hook_forms in includes/entity.ui.inc
Provides definitions for implementing hook_forms().

File

includes/entity.ui.inc, line 630
Provides a controller for building an entity overview form.

Code

function entity_ui_overview_form($form, &$form_state, $entity_type) {
  return entity_ui_controller($entity_type)
    ->overviewForm($form, $form_state);
}