summaryrefslogtreecommitdiff
path: root/includes/ajax.inc
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2010-01-12 06:31:22 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2010-01-12 06:31:22 +0000
commit319fc2895c5fdfad8fb11bb6c09dd8f1d15e042b (patch)
tree257640b701d6d33f6246beab1fc95b42a6288748 /includes/ajax.inc
parentf334620be52804b85081a8b3f33a3d02155f89ee (diff)
downloadbrdo-319fc2895c5fdfad8fb11bb6c09dd8f1d15e042b.tar.gz
brdo-319fc2895c5fdfad8fb11bb6c09dd8f1d15e042b.tar.bz2
#595972 by katbailey, sun, TwoD, quicksketch, merlinofchaos, and dmitrig01: Allow AJAX settings command to extend Drupal.settings.
Diffstat (limited to 'includes/ajax.inc')
-rw-r--r--includes/ajax.inc13
1 files changed, 10 insertions, 3 deletions
diff --git a/includes/ajax.inc b/includes/ajax.inc
index 93d9e8b91..ed5db1732 100644
--- a/includes/ajax.inc
+++ b/includes/ajax.inc
@@ -767,8 +767,9 @@ function ajax_command_css($selector, $argument) {
/**
* Creates a Drupal AJAX 'settings' command.
*
- * The 'settings' command instructs the client to extend Drupal.settings with
- * the given array.
+ * 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.
@@ -777,14 +778,20 @@ function ajax_command_css($selector, $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.
+ * @param $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
* An array suitable for use with the ajax_render() function.
*/
-function ajax_command_settings($argument) {
+function ajax_command_settings($argument, $merge = FALSE) {
return array(
'command' => 'settings',
'settings' => $argument,
+ 'merge' => $merge,
);
}