background_process.pages.inc 248 B

12345678910111213141516
  1. <?php
  2. /**
  3. * @file
  4. * @TODO is this file neccessary?
  5. */
  6. /**
  7. * Callback for token validation.
  8. */
  9. function background_process_check_token() {
  10. header("Content-Type: text/plain");
  11. print variable_get('background_process_token', '');
  12. exit;
  13. }