function new_relic_rpm_help in New Relic 8
Same name and namespace in other branches
- 7 new_relic_rpm.module \new_relic_rpm_help()
- 2.x new_relic_rpm.module \new_relic_rpm_help()
- 2.0.x new_relic_rpm.module \new_relic_rpm_help()
Implements hook_help().
File
- ./
new_relic_rpm.module, line 102 - Drupal module implementing New Relic.
Code
function new_relic_rpm_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
case 'help.page.new_relic_rpm':
return t("<p>This module's purpose is to enhance New Relic integration with Drupal and bring visibility of your website's performance into Drupal. It also allows you to perform some tasks pertaining to New Relic's monitoring of your site from within the Drupal website.</p>\n <p>See the <a href=\":project_page\">project page on Drupal.org</a> for more details.</p>", [
':project_page' => 'https://www.drupal.org/project/new_relic_rpm',
]);
}
}