acsf_sj.module in Acquia Cloud Site Factory Connector 8
Same filename and directory in other branches
Provides an integration with the Scheduled Jobs service.
File
acsf_sj/acsf_sj.moduleView source
<?php
/**
* @file
* Provides an integration with the Scheduled Jobs service.
*/
/**
* Returns the path to the sjadd binary.
*
* @return string|null
* Returns sjadd path if $HOME exists, NULL otherwise.
*/
function acsf_sj_get_sjadd_path() {
return isset($_ENV['HOME']) ? $_ENV['HOME'] . '/acquia_sj/sjadd' : NULL;
}
Functions
Name | Description |
---|---|
acsf_sj_get_sjadd_path | Returns the path to the sjadd binary. |