You are here

function panels_get_switcher in Panels 5.2

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

Fetch a 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 1715
plugins.inc

Code

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