You are here

function panels_get_switcher in Panels 6.2

Same name and namespace in other branches
  1. 5.2 includes/plugins.inc \panels_get_switcher()

Fetch metadata on a specific switcher plugin.

Parameters

$switcher: Name of a panel switcher.

Return value

An array with information about the requested panel switcher.

File

includes/plugins.inc, line 1738
plugins.inc

Code

function panels_get_switcher($switcher) {
  return panels_get_plugins('switchers', 'panels_switchers', $switcher);
}