function hook_acquia_purge_purge_failure in Acquia Purge 7
DEPRECATED: React after paths paths purged failed.
1 invocation of hook_acquia_purge_purge_failure()
- AcquiaPurgeService::process in lib/
AcquiaPurgeService.php - Process as many items from the queue as the runtime capacity allows.
File
- ./
acquia_purge.api.php, line 76 - Hooks provided by the Acquia Purge module.
Code
function hook_acquia_purge_purge_failure(array $paths) {
foreach ($paths as $path) {
drupal_set_message(t('"@path"', array(
'@path' => $path,
)), 'error');
}
}