You are here

public function CerUIController::overviewForm in Corresponding Entity References 7.3

Builds the entity overview form.

Overrides EntityDefaultUIController::overviewForm

File

includes/CerUIController.inc, line 59

Class

CerUIController
Contains the controller class for CER's UI (i.e., preset management pages), used by Entity API.

Code

public function overviewForm($form, &$form_state) {
  $form = parent::overviewForm($form, $form_state);
  $form['actions'] = array(
    'update' => array(
      '#type' => 'submit',
      '#value' => t('Save changes'),
    ),
    '#type' => 'actions',
  );
  return $form;
}