You are here

public function PanelsPaneController::resetCache in Fieldable Panels Panes (FPP) 7

Implements DrupalEntityControllerInterface::resetCache().

Overrides DrupalDefaultEntityController::resetCache

File

includes/PanelsPaneController.class.php, line 23
Contains the controller class for the Fieldable Panel Pane entity.

Class

PanelsPaneController
Entity controller class.

Code

public function resetCache(array $ids = NULL) {
  if (module_exists('entitycache')) {
    EntityCacheControllerHelper::resetEntityCache($this, $ids);
  }
  parent::resetCache($ids);
}