function views_ajax_command_add_tab in Views (for Drupal 7) 8.3
Same name and namespace in other branches
- 7.3 includes/ajax.inc \views_ajax_command_add_tab()
Creates a Drupal AJAX 'addTab' command.
Parameters
$id: The DOM ID.
$title: The title.
$body: The body.
Return value
An array suitable for use with the ajax_render() function.
Related topics
File
- includes/
ajax.inc, line 151 - Handles the server side AJAX interactions of Views.
Code
function views_ajax_command_add_tab($id, $title, $body) {
$command = array(
'command' => 'viewsAddTab',
'id' => $id,
'title' => $title,
'body' => $body,
);
return $command;
}