You are here

function views_ajax_command_add_tab in Views (for Drupal 7) 7.3

Same name and namespace in other branches
  1. 8.3 includes/ajax.inc \views_ajax_command_add_tab()

Creates a Drupal AJAX 'addTab' command.

Parameters

string $id: The DOM ID.

string $title: The title.

string $body: The body.

Return value

array An array suitable for use with the ajax_render() function.

Related topics

File

includes/ajax.inc, line 156
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;
}