You are here

function views_ajax_command_replace_title in Views (for Drupal 7) 8.3

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

Replace the page title.

Return value

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

Related topics

1 call to views_ajax_command_replace_title()
views_ui_ajax_form in views_ui/admin.inc
Generic entry point to handle forms.

File

includes/ajax.inc, line 207
Handles the server side AJAX interactions of Views.

Code

function views_ajax_command_replace_title($title) {
  $command = array(
    'command' => 'viewsReplaceTitle',
    'title' => $title,
    'siteName' => config('system.site')
      ->get('name'),
  );
  return $command;
}