You are here

function event_popup_custom_submit in Event Calendar 7

Custom redirection popup.

1 string reference to 'event_popup_custom_submit'
event_popup_form_alter in event_popup/event_popup.module
Implements hook_form_alter().

File

event_popup/event_popup.module, line 53
Implemening event popup calender on click event.

Code

function event_popup_custom_submit($form, &$form_state) {

  // $form_state['rebuild'] = TRUE;

  //$destination = $_SERVER['HTTP_REFERER'];

  //drupal_goto($destination);
  $form_state['redirect'] = 'event-created';
}