You are here

function PMPAPIDrupal::cacheClearAll in Public Media Platform API Integration 7

Clears all cache values.

File

classes/PMPAPIDrupal.php, line 304
Defines a class for PMP creation/transmission and retreival/parsing

Class

PMPAPIDrupal
@file

Code

function cacheClearAll() {
  if ($this->cache) {
    cache_clear_all('pmpapi:', $this->cache_bin, TRUE);
  }
  $this
    ->cacheClearAuthClient();
}