You are here

function acquia_lift_help in Acquia Lift Connector 7

Same name and namespace in other branches
  1. 8.4 acquia_lift.module \acquia_lift_help()
  2. 8 acquia_lift.module \acquia_lift_help()
  3. 8.3 acquia_lift.module \acquia_lift_help()
  4. 7.3 acquia_lift.module \acquia_lift_help()
  5. 7.2 acquia_lift.module \acquia_lift_help()

Implements hook_help().

File

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

Code

function acquia_lift_help($path, $arg) {
  switch ($path) {
    case 'admin/help#acquia_lift':
      $output = '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('The Acquia Lift module provides machine-learning-based personalization for Drupal sites.') . '</p>';
      $output .= '<h3>' . t('Configuration') . '</h3>';
      $output .= '<p>' . t('Go to the !configlink to configure your Acquia Lift credentials.', array(
        '!configlink' => l(t('configuration settings page'), 'admin/config/content/personalize/acquia_lift'),
      )) . '</p>';
      $output .= '<h3>' . t('Manage your campaigns') . '</h3>';
      $output .= '<p>' . t('You can manage all of your Acquia Lift campaigns from the !campaignslink.', array(
        '!campaignslink' => l(t('campaign listing page'), 'admin/structure/personalize/manage'),
      )) . '</p>';
      return $output;
  }
}