You are here

function macro_end_macro_session in Macro 6

Same name and namespace in other branches
  1. 7 macro.module \macro_end_macro_session()

End a macro session from a page callback with a redirect to the export form.

1 string reference to 'macro_end_macro_session'
macro_menu in ./macro.module
Implementation of hook_menu().

File

./macro.module, line 341
allow administrators to record (export) form submissions allow administrators to replay (import) form submissions

Code

function macro_end_macro_session() {
  variable_set('macro_enabled', FALSE);
  drupal_goto('admin/build/macro/export');
}