You are here

function hook_acquia_purge_purge_success in Acquia Purge 7

DEPRECATED: React after paths paths purged successfully.

1 invocation of hook_acquia_purge_purge_success()
AcquiaPurgeService::process in lib/AcquiaPurgeService.php
Process as many items from the queue as the runtime capacity allows.

File

./acquia_purge.api.php, line 87
Hooks provided by the Acquia Purge module.

Code

function hook_acquia_purge_purge_success(array $paths) {
  foreach ($paths as $path) {
    drupal_set_message(t('"@path"', array(
      '@path' => $path,
    )));
  }
}