You are here

function panels_page_master_loader in Panels 6.2

Wrapper function for the actual panels_page master loader, _panels_page_master_loader().

Parameters

array $args: Any additional argument data; varies significantly from one panel_page to the next.

Return value

array The $loader_data corresponding to the request data we've passed in.

3 calls to panels_page_master_loader()
panels_page_render_handler in panels_page/panels_page.module
Execute the active page rendering callback.
panels_page_static_render_handler in panels_page/panels_page.module
panels_page_title_handler in panels_page/panels_page.module

File

panels_page/panels_page.module, line 272
panels_page.module

Code

function panels_page_master_loader($args) {

  // Get the unique name of the panel_page, which is always the arg on top of
  // the $args array stack
  $name = array_shift($args);
  return _panels_page_master_loader($name, $args);
}