function quicktabs_ajax_callback in Quick Tabs 6.3
Same name and namespace in other branches
- 7.3 quicktabs.admin.inc \quicktabs_ajax_callback()
- 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);
}