function acquia_lift_help in Acquia Lift Connector 7.3
Same name and namespace in other branches
- 8.4 acquia_lift.module \acquia_lift_help()
- 8 acquia_lift.module \acquia_lift_help()
- 8.3 acquia_lift.module \acquia_lift_help()
- 7 acquia_lift.module \acquia_lift_help()
- 7.2 acquia_lift.module \acquia_lift_help()
Implements hook_help().
File
- ./
acquia_lift.module, line 48 - acquia_lift.module Provides Acquia Lift Profiles integration.
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/services/acquia_lift'),
)) . '</p>';
$output .= '<p>' . t('You can find more info in <a href="@lift-documentation" target="_blank">Documentation</a>.', array(
'@lift-documentation' => 'https://docs.acquia.com/lift',
));
return $output;
}
}