background_process.pages.inc in Background Process 8
Same filename and directory in other branches
Implements Backround Proces Pages.
File
background_process.pages.incView 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
Name | Description |
---|---|
background_process_check_token | Implements to Callback for token validation. |