You are here

function fieldable_panels_panes_ctools_access_clear in Fieldable Panels Panes (FPP) 7

Implement CTools access form caching callback: get.

File

./fieldable_panels_panes.module, line 812
Maintains an entity that appears as panel pane content.

Code

function fieldable_panels_panes_ctools_access_clear($argument) {
  if (!fieldable_panels_panes_check_access_update($argument)) {
    return;
  }
  ctools_include('object-cache');
  ctools_object_cache_clear('fieldable_panels_panes', $argument);
}