You are here

function panels_page_passthru in Panels 5.2

Pass-through to admin.inc.

2 string references to 'panels_page_passthru'
panels_page_admin_menu_items in panels_page/panels_page.module
Helper function to add a menu item for a panel.
panels_page_menu in panels_page/panels_page.module
Implementation of hook_menu().

File

panels_page/panels_page.module, line 561
panels_page.module

Code

function panels_page_passthru() {
  $args = func_get_args();
  $callback = array_shift($args);
  panels_load_include('panels_page.admin', 'panels_page/');
  panels_load_include('plugins');
  return call_user_func_array($callback, $args);
}