function ajax_command_settings
7.x ajax.inc | ajax_command_settings($argument, $merge = FALSE) |
Creates a Drupal Ajax 'settings' command.
The 'settings' command instructs the client either to use the given array as the settings for ajax-loaded content or to extend Drupal.settings with the given array, depending on the value of the $merge parameter.
This command is implemented by Drupal.ajax.prototype.commands.settings() defined in misc/ajax.js.
Parameters
$argument: An array of key/value pairs to add to the settings. This will be utilized for all commands after this if they do not include their own settings array.
$merge: Whether or not the passed settings in $argument should be merged into the global Drupal.settings on the page. By default (FALSE), the settings that are passed to Drupal.attachBehaviors will not include the global Drupal.settings.
Return value
An array suitable for use with the ajax_render() function.
Related topics
- ajax_forms_test_advanced_commands_settings_callback in drupal-7.x/
modules/ simpletest/ tests/ ajax_forms_test.module - Ajax callback for 'settings'.
- ajax_render in drupal-7.x/
includes/ ajax.inc - Renders a commands array into JSON.
File
- drupal-7.x/
includes/ ajax.inc, line 1121 - Functions for use with Drupal's Ajax framework.
Code
function ajax_command_settings($argument, $merge = FALSE) {
return array(
'command' => 'settings',
'settings' => $argument,
'merge' => $merge,
);
}