function views_ajax_command_replace_title
Replace the page title.
Return value
array 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 includes/
admin.inc - Generic entry point to handle forms.
File
-
includes/
ajax.inc, line 216
Code
function views_ajax_command_replace_title($title) {
$command = array(
'command' => 'viewsReplaceTitle',
'title' => $title,
'siteName' => variable_get('site_name', 'Drupal'),
);
return $command;
}