You are here

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

Implements DrupalEntityControllerInterface::load().

Overrides DrupalDefaultEntityController::load

File

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

Class

PanelsPaneController
Entity controller class.

Code

public function load($ids = array(), $conditions = array()) {
  if (module_exists('entitycache')) {
    return EntityCacheControllerHelper::entityCacheLoad($this, $ids, $conditions);
  }
  else {
    return parent::load($ids, $conditions);
  }
}