public function EntityDefaultUIController::overviewForm in Entity API 7
Builds the entity overview form.
File
- includes/
entity.ui.inc, line 166 - Provides a controller for building an entity overview form.
Class
- EntityDefaultUIController
- Default UI controller providing admin UI.
Code
public function overviewForm($form, &$form_state) {
// By default just show a simple overview for all entities.
$form['table'] = $this
->overviewTable();
$form['pager'] = array(
'#theme' => 'pager',
);
return $form;
}