You are here

function ctools_export_ui_heartbeat_stream::edit_form in Heartbeat 7

Implements edit_form().

Overrides ctools_export_ui::edit_form

File

modules/heartbeat_ui/plugins/export_ui/ctools_export_ui_heartbeat_stream.class.php, line 310
Ctools export UI for a heartbeat stream. @author stalski

Class

ctools_export_ui_heartbeat_stream
@file Ctools export UI for a heartbeat stream. @author stalski

Code

function edit_form(&$form, &$form_state) {
  if ($form_state['form type'] == 'add') {

    //parent::edit_form($form, $form_state);
    $this
      ->_add_form($form, $form_state);
  }
  else {
    parent::edit_form($form, $form_state);
    $this
      ->_edit_form($form, $form_state);
  }
}