function arrange_fields_editing_field_submit in Arrange Fields 7
This function is called after we perform our normal submission when editing a field's properties in a popup. It's only purpose is to override the redirect to send the user to our "close popup" page, which lets the user close the popup and save/reload the main form.
1 string reference to 'arrange_fields_editing_field_submit'
- arrange_fields_form_alter in ./
arrange_fields.module - Implementation of hook_form_alter().
File
- ./
arrange_fields.module, line 1587
Code
function arrange_fields_editing_field_submit($form, &$form_state) {
$form_state["redirect"] = "arrange-fields/popup-close-window";
}