You are here

function panels_get_panels_storage_plugin in Panels 7.3

Fetch metadata on a specific panels_storage plugin.

Parameters

$storage: Name of a panel_storage plugin.

Return value

An array with information about the requested panels_storage plugin

1 call to panels_get_panels_storage_plugin()
panels_display::access in ./panels.module
Determine if the given user can perform the requested operation.

File

includes/plugins.inc, line 490
Contains helper code for plugins and contexts.

Code

function panels_get_panels_storage_plugin($storage) {
  ctools_include('plugins');
  return ctools_get_plugins('panels', 'panels_storage', $storage);
}