You are here

function new_relic_rpm_help in New Relic 7

Same name and namespace in other branches
  1. 8 new_relic_rpm.module \new_relic_rpm_help()
  2. 2.x new_relic_rpm.module \new_relic_rpm_help()
  3. 2.0.x new_relic_rpm.module \new_relic_rpm_help()

Implements hook_help().

Parameters

$path:

$arg:

Return value

string

File

./new_relic_rpm.module, line 15
Drupal module implementing New Relic.

Code

function new_relic_rpm_help($path, $arg) {
  switch ($path) {
    case 'admin/help#new_relic_rpm':
      $output = '<p>' . t("This module's purpose is to enhance integration between New Relic and Drupal to enable more visibility into your website performance. It provides useful advanced settings, reports, and monitoring of your New Relic scores from within the Drupal website.") . '</p>';
      $output .= '<p>' . t('See the <a href="@project_page">project page on Drupal.org</a> for more details.', array(
        '@project_page' => 'https://www.drupal.org/project/new_relic_rpm',
      )) . '</p>';
      return $output;
  }
}