You are here

function path_alias_xt_help in Extended Path Aliases 7

Same name and namespace in other branches
  1. 8 path_alias_xt.module \path_alias_xt_help()
  2. 6 path_alias_xt.module \path_alias_xt_help()

Implements hook_help().

File

./path_alias_xt.module, line 26
Extended Path Aliases.

Code

function path_alias_xt_help($path, $arg) {
  switch ($path) {
    case 'admin/help#path_alias_xt':
      $s = t('Installation instructions are in the README.txt file. Further documentation is on the <a href="@path_alias_xt">Extended Path Aliases</a> project page.', array(
        '@path_alias_xt' => url('http://drupal.org/project/path_alias_xt'),
      ));
      break;
  }
  return empty($s) ? '' : '<p>' . $s . '</p>';
}