You are here

function acquia_lift_profiles_creds_submit in Acquia Lift Connector 7.2

Submit callback for the Acquia Lift admin form.

1 string reference to 'acquia_lift_profiles_creds_submit'
acquia_lift_profiles_form_acquia_lift_admin_form_alter in acquia_lift_profiles/acquia_lift_profiles.module
Implements hook_form_FORM_ID_alter().

File

acquia_lift_profiles/acquia_lift_profiles.module, line 418
acquia_lift_profiles.module Provides Acquia Lift Profiles integration.

Code

function acquia_lift_profiles_creds_submit() {

  // Refresh the segments from Acquia Lift Profiles.
  acquia_lift_profiles_refresh_segments_cache();

  // Batch sync all visitor actions to Lift Web.
  module_load_include('inc', 'acquia_lift_profiles', 'acquia_lift_profiles.batch');
  acquia_lift_batch_sync_actions();
}