You are here

background_process.pages.inc in Background Process 8

Implements Backround Proces Pages.

File

background_process.pages.inc
View source
<?php

/**
 * @file
 * Implements Backround Proces Pages.
 */

/**
 * Implements to Callback for token validation.
 */
function background_process_check_token() {
  header("Content-Type: text/plain");
  print \Drupal::config('background_process.settings')
    ->get('background_process_token');
  exit;
}

Functions

Namesort descending Description
background_process_check_token Implements to Callback for token validation.