You are here

public function RestfulStaticCacheController::clearAll in RESTful 7

Clear all registered cache values.

Overrides RestfulStaticCacheControllerInterface::clearAll

File

includes/RestfulStaticCacheController.php, line 57
Contains RestfulStaticCacheController

Class

RestfulStaticCacheController
@file Contains RestfulStaticCacheController

Code

public function clearAll() {
  foreach ($this
    ->getCids() as $cid) {
    $this
      ->clear($cid);
  }
}