function quicktabs_ajax_node in Quick Tabs 6.3
Same name and namespace in other branches
- 6.2 quicktabs.module \quicktabs_ajax_node()
Ajax callback for node tabpage.
File
- ./
quicktabs.module, line 287
Code
function quicktabs_ajax_node($nid, $teaser, $hide_title) {
$tabpage = array(
'type' => 'node',
'nid' => $nid,
'teaser' => $teaser,
'hide_title' => $hide_title,
);
$output = quicktabs_render_tabpage($tabpage);
return $output;
}