You are here

function recovery_pass_help in Recovery Password (Email New Password) 8

Same name and namespace in other branches
  1. 7 recovery_pass.module \recovery_pass_help()

Implements hook_help().

File

./recovery_pass.module, line 17
Contains module code.

Code

function recovery_pass_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'help.page.recovery_pass':
      $output = file_get_contents(drupal_get_path('module', 'recovery_pass') . '/README.txt');
      return $output;
  }
}