function twitter_profile_widget_help in Twitter Profile Widget 7
Same name and namespace in other branches
- 8.2 twitter_profile_widget.module \twitter_profile_widget_help()
- 8 twitter_profile_widget.module \twitter_profile_widget_help()
- 6 twitter_profile_widget.module \twitter_profile_widget_help()
- 3.x twitter_profile_widget.module \twitter_profile_widget_help()
Implements hook_help().
File
- ./
twitter_profile_widget.module, line 6
Code
function twitter_profile_widget_help($path, $arg) {
switch ($path) {
case 'admin/config/services/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>';
}
}