function ctools_get_arguments in Chaos Tool Suite (ctools) 6
Same name and namespace in other branches
- 7 includes/context.inc \ctools_get_arguments()
Fetch metadata for all argument plugins.
Return value
An array of arrays with information about all available argument plugins.
2 calls to ctools_get_arguments()
- ctools_context_add_argument_form in includes/
context-admin.inc - Add the argument table plus gadget plus javascript to the form.
- page_manager_page_argument_form_change in page_manager/
plugins/ tasks/ page.admin.inc - Basic settings form for a page manager page.
File
- includes/
context.inc, line 719 - Contains code related to the ctools system of 'context'.
Code
function ctools_get_arguments() {
ctools_include('plugins');
return ctools_get_plugins('ctools', 'arguments');
}