function event_popup_customize_node_form in Event Calendar 7
Custom submit handler.
File
- event_popup/
event_popup.module, line 41 - Implemening event popup calender on click event.
Code
function event_popup_customize_node_form(&$form) {
$form[LANGUAGE_NONE][0]['format']['guidelines']['#access'] = FALSE;
$form[LANGUAGE_NONE][0]['format']['format']['#access'] = FALSE;
$form[LANGUAGE_NONE][0]['format']['help']['#access'] = FALSE;
$form[LANGUAGE_NONE][0]['format']['#theme_wrappers'] = NULL;
return $form;
}