You are here

function quicktabs_ajax_callback in Quick Tabs 6.3

Same name and namespace in other branches
  1. 7.3 quicktabs.admin.inc \quicktabs_ajax_callback()
  2. 7.2 includes/admin.inc \quicktabs_ajax_callback()

Ajax callback for callback tabpage.

File

./quicktabs.module, line 329

Code

function quicktabs_ajax_callback($args) {
  $args = func_get_args();
  $path = implode('/', $args);
  $_GET['q'] = $path;

  // pretend we're in this path
  return menu_execute_active_handler($path);
}