function acquia_lift_command_option_set_updates in Acquia Lift Connector 7
Same name and namespace in other branches
- 7.2 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.
3 calls 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.
- acquia_lift_page_variation_delete_complete_callback in ./
acquia_lift.admin.unibar.inc - Ctools form processing complete handler for deletion of a page variation.
- acquia_lift_page_variation_rename_complete_callback in ./
acquia_lift.admin.unibar.inc - Ctools form processing complete handler for the renaming of a page variation.
File
- ./
acquia_lift.module, line 2918 - 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,
),
);
}