function page_manager_get_page_wizards in Chaos Tool Suite (ctools) 7
Same name and namespace in other branches
- 6 includes/page-wizard.inc \page_manager_get_page_wizards()
Fetch metadata for all page_wizard plugins.
Return value
An array of arrays with information about all available panel page_wizards.
1 call to page_manager_get_page_wizards()
- page_manager_page_wizard_list in includes/
page-wizard.inc - Provide a simple administrative list of all wizards.
File
- includes/
page-wizard.inc, line 27
Code
function page_manager_get_page_wizards() {
ctools_include('plugins');
return ctools_get_plugins('page_manager', 'page_wizards');
}