You are here

function private_message_help in Private Message 8

Same name and namespace in other branches
  1. 8.2 private_message.module \private_message_help()

Implements hook_help().

File

./private_message.module, line 564
Contains hooks for the private message module.

Code

function private_message_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'help.page.private_message':
      return t('<p>A private message system for users to send messages to each other. It has been written to be fully extendable using Drupal 8 APIs.</p>
        <p>See the <a href=":project_page">project page on Drupal.org</a> for more details.</p>', [
        ':project_page' => 'https://www.drupal.org/project/private_message',
      ]);
  }
}