You are here

function panels_get_argument in Panels 6.2

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

Fetch metadata on a specific argument plugin.

Parameters

$argument: Name of a panel argument.

Return value

An array with information about the requested panel argument.

2 calls to panels_get_argument()
panels_page_construct_menu_item_metadata in panels_page/panels_page.menu.inc
panels_page_context_form_submit in panels_page/panels_page.admin.inc
Process submission of the panel page edit form.
1 string reference to 'panels_get_argument'
panels_common_context_info in includes/common-context.inc
Provide a list of the ways contexts can be embedded.

File

includes/plugins.inc, line 1623
plugins.inc

Code

function panels_get_argument($argument) {
  return panels_get_plugins('arguments', 'panels_arguments', $argument);
}