You are here

function access_by_ref_help in Access by Reference 7

Implements hook_help().

File

./access_by_ref.module, line 199

Code

function access_by_ref_help($path, $arg) {
  switch ($path) {
    case 'admin/help#access_by_ref':

      // Return a line-break version of the README.
      $readme = file_get_contents(drupal_get_path('module', 'access_by_ref') . '/README.txt');
      return nl2br($readme);
  }
}