function follow_help in Follow 5
Same name and namespace in other branches
- 8.2 follow.module \follow_help()
- 6 follow.module \follow_help()
- 7.2 follow.module \follow_help()
- 7 follow.module \follow_help()
Implementation of hook_help().
File
- ./
follow.module, line 15 - Allows users to add links to their social network profiles.
Code
function follow_help($path) {
switch ($path) {
case 'follow':
case 'admin/settings/follow':
return t('Please copy and paste the url for your public profile or page for each service you would like to display in the block. Links need to match the domain of the service in question.');
}
}