function tweet_help in Tweet 5
Same name and namespace in other branches
- 5.2 tweet.module \tweet_help()
 - 6.4 tweet.module \tweet_help()
 - 6 tweet.module \tweet_help()
 - 6.2 tweet.module \tweet_help()
 - 6.3 tweet.module \tweet_help()
 - 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;
}