You are here

function twitter_profile_widget_help in Twitter Profile Widget 6

Same name and namespace in other branches
  1. 8.2 twitter_profile_widget.module \twitter_profile_widget_help()
  2. 8 twitter_profile_widget.module \twitter_profile_widget_help()
  3. 7 twitter_profile_widget.module \twitter_profile_widget_help()
  4. 3.x twitter_profile_widget.module \twitter_profile_widget_help()

Implementation of hook_help().

File

./twitter_profile_widget.module, line 6

Code

function twitter_profile_widget_help($path, $arg) {
  switch ($path) {
    case 'admin/settings/twitter_profile_widget':
      return t("Twitter profile widget provides configurable block with user's latest twits.");
    case 'admin/help#twitter_profile_widget':
      return '<p>' . t("Twitter profile widget provides configurable block with user's latest twits.") . '</p>';
  }
}