You are here

function gotwo_help in Go - url redirects 5

Same name and namespace in other branches
  1. 6 gotwo.module \gotwo_help()

Implementation of hook_help

File

./gotwo.module, line 20
Module that provides easy to use redirection links. A redirection link would be like: http://examples.org/go/a_label http://examples.org/go/123546 http://examples.org/go/or/like/this

Code

function gotwo_help($section) {
  switch ($section) {
    case 'admin/modules#description':
      $output = t("Creation and management of 'go' URL redirection to external links on the web.");
      break;
    case 'admin/help#gotwo':
      $output = gotwo_filter_tips(0, '', true);
  }
  return $output;
}