You are here

function tweet_help in Tweet 5.2

Same name and namespace in other branches
  1. 5 tweet.module \tweet_help()
  2. 6.4 tweet.module \tweet_help()
  3. 6 tweet.module \tweet_help()
  4. 6.2 tweet.module \tweet_help()
  5. 6.3 tweet.module \tweet_help()
  6. 7.4 tweet.module \tweet_help()

Implementation of hook_help().

File

./tweet.module, line 11
Builds links to post pages to twitter.

Code

function tweet_help($section = '') {
  $output = '';
  switch ($section) {
    case "admin/help#tweet":
      $output = '<p>' . t("This module builds links to post pages to twitter.  See the function tweet_to_twitter() in the module file for an explanation of how to use it.") . '</p>';
      break;
  }
  return $output;
}