You are here

function background_process_check_token in Background Process 7.2

Same name and namespace in other branches
  1. 8 background_process.pages.inc \background_process_check_token()
  2. 6 background_process.pages.inc \background_process_check_token()
  3. 7 background_process.pages.inc \background_process_check_token()

Callback for token validation.

1 string reference to 'background_process_check_token'
background_process_menu in ./background_process.module
Implements hook_menu().

File

./background_process.pages.inc, line 11
@TODO is this file neccessary?

Code

function background_process_check_token() {
  header("Content-Type: text/plain");
  print variable_get('background_process_token', '');
  exit;
}