You are here

background_process.pages.inc in Background Process 7.2

@TODO is this file neccessary?

File

background_process.pages.inc
View source
<?php

/**
 * @file
 * @TODO is this file neccessary?
 */

/**
 * Callback for token validation.
 */
function background_process_check_token() {
  header("Content-Type: text/plain");
  print variable_get('background_process_token', '');
  exit;
}

Functions

Namesort descending Description
background_process_check_token Callback for token validation.