You are here

function autosave_popup in Autosave 7.2

Menu pages callback.

1 string reference to 'autosave_popup'
autosave_menu in ./autosave.module
Implements hook_menu().

File

./autosave.theme.inc, line 70

Code

function autosave_popup($theme) {
  if (in_array($theme, array(
    'autosave_saved_popup',
    'autosave_restore_popup',
  ))) {
    return theme($theme, array(
      'autosave' => $_POST,
    ));
  }
}