You are here

function _acquia_purge_get_protocol_schemes in Acquia Purge 6

Same name and namespace in other branches
  1. 7 acquia_purge.deprecated.inc \_acquia_purge_get_protocol_schemes()

Get a list of protocol schemes that will be purged.

@warning This facilitates future functionality, currently only HTTP is supported.

@returns Array with scheme strings like 'http' and 'https'.

3 calls to _acquia_purge_get_protocol_schemes()
acquia_purge_manualpurge_form in ./acquia_purge.admin.inc
Menu callback to drupal_get_form; let users manually purge pages.
_acquia_purge_queue_pop in ./acquia_purge.module
Queue manager: pop X amount of items from the queue.
_acquia_purge_queue_processpurge in ./acquia_purge.module
Queue manager: process a single path (on all domains and balancers).

File

./acquia_purge.module, line 569
Acquia Purge, Top-notch Varnish purging on Acquia Cloud!

Code

function _acquia_purge_get_protocol_schemes() {
  return array(
    'http',
  );
}