You are here

function page_manager_get_page_wizard in Chaos Tool Suite (ctools) 6

Same name and namespace in other branches
  1. 7 includes/page-wizard.inc \page_manager_get_page_wizard()

Fetch metadata on a specific page_wizard plugin.

Parameters

$page_wizard: Name of a panel page_wizard.

Return value

An array with information about the requested panel page_wizard.

2 calls to page_manager_get_page_wizard()
page_manager_get_wizard_cache in includes/page-wizard.inc
Get the cached changes to a given wizard.
page_manager_page_wizard in includes/page-wizard.inc
Menu callback for the page wizard.

File

includes/page-wizard.inc, line 12

Code

function page_manager_get_page_wizard($page_wizard) {
  ctools_include('plugins');
  return ctools_get_plugins('page_manager', 'page_wizards', $page_wizard);
}