You are here

function acquia_lift_profiles_personalize_visitor_context in Acquia Lift Connector 7

Same name and namespace in other branches
  1. 7.2 acquia_lift_profiles/acquia_lift_profiles.module \acquia_lift_profiles_personalize_visitor_context()

Implements hook_personalize_visitor_contexts().

File

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

Code

function acquia_lift_profiles_personalize_visitor_context() {
  $info = array();
  $path = drupal_get_path('module', 'acquia_lift_profiles') . '/plugins';
  $info['acquia_lift_profiles_context'] = array(
    'path' => $path . '/visitor_context',
    'handler' => array(
      'file' => 'ALProfilesContext.inc',
      'class' => 'ALProfilesContext',
    ),
  );
  return $info;
}