You are here

function tweet_help in Tweet 7.4

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

Implements hook_help().

File

./tweet.module, line 11
Builds links to post pages to Twitter API sites.

Code

function tweet_help($path, $arg) {
  $output = '';
  switch ($path) {
    case "admin/help#tweet":
      $output = '<p>' . t("This module builds links to post pages to twitter.") . '</p>';
      break;
  }
  return $output;
}