You are here

public function AcquiaPurgeHostingInfo::isPageCacheFake in Acquia Purge 7

Determine whether DrupalFakeCache is powering the page cache or not.

Return value

boolean True when DrupalFakeCache is active, FALSE otherwise.

File

lib/AcquiaPurgeHostingInfo.php, line 469
Contains AcquiaPurgeHostingInfo.

Class

AcquiaPurgeHostingInfo
Provides technical information accessors for the Acquia Cloud environment.

Code

public function isPageCacheFake() {
  return $this->pageCacheBackend === 'DrupalFakeCache' ? TRUE : FALSE;
}