You are here

public function CacheFragmentController::delete in RESTful 7.2

1 call to CacheFragmentController::delete()
CacheFragmentController::wipe in src/RenderCache/Entity/CacheFragmentController.php
Removes all the cache fragments.

File

src/RenderCache/Entity/CacheFragmentController.php, line 147
Contains \Drupal\restful\RenderCache\Entity\CacheFragmentController.

Class

CacheFragmentController
Class CacheFragmentController.

Namespace

Drupal\restful\RenderCache\Entity

Code

public function delete($ids, \DatabaseTransaction $transaction = NULL) {
  if ($this
    ->isFastDeleteEnabled()) {
    $this
      ->fastDelete($ids, $transaction);
    return;
  }
  parent::delete($ids, $transaction);
}