You are here

function ds_get_plugin in Display Suite 6.3

Fetch metadata on a ds plugins

Parameters

$type: The type of plugin to load

$name: The name of the plugin.

Return value

An array with information about the plugin.

File

./ds.module, line 133

Code

function ds_get_plugin($type, $name) {
  ctools_include('plugins');
  return ctools_get_plugins('ds', $type, $name);
}