function panels_get_argument in Panels 5.2
Same name and namespace in other branches
- 6.2 includes/plugins.inc \panels_get_argument()
Collate information about a specific panel argument.
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_context_form_submit in panels_page/
panels_page.admin.inc - Process submission of the panel page edit form.
- panels_update_5209 in ./
panels.install
1 string reference to 'panels_get_argument'
- panels_common_context_info in includes/
common.inc
File
- includes/
plugins.inc, line 1600 - plugins.inc
Code
function panels_get_argument($argument) {
return panels_get_plugins('arguments', 'panels_arguments', $argument);
}