public function BackgroundProcess::setInclude in Background Process 7.2
Include specific file for the callback execution.
Parameters
$file: Relative path+file of the file to include.
File
- ./
background_process.inc, line 364 - External API short overview
Class
- BackgroundProcess
- @file
Code
public function setInclude($file) {
$this->options['include'][] = $file;
return $this
->setOptions($this->options);
}