You are here

function acquia_lift_command_option_set_updates in Acquia Lift Connector 7.2

Same name and namespace in other branches
  1. 7 acquia_lift.module \acquia_lift_command_option_set_updates()

Returns an AJAX command to force the update of option set data and then reattach behaviors.

Parameters

array $option_sets: An array of updated option set settings keyed by the osid.

1 call to acquia_lift_command_option_set_updates()
acquia_lift_element_variation_delete_complete_callback in ./acquia_lift.admin.unibar.inc
Ctools form processing complete handler for deletion of an element variation.

File

./acquia_lift.module, line 3163
acquia_lift.module Provides Acquia Lift-specific personalization functionality.

Code

function acquia_lift_command_option_set_updates($option_sets) {
  return array(
    'command' => 'acquia_lift_option_set_updates',
    'data' => array(
      'option_sets' => $option_sets,
    ),
  );
}