function twitter_block_help in Twitter Block 7.2
Same name and namespace in other branches
- 8.3 twitter_block.module \twitter_block_help()
- 8.2 twitter_block.module \twitter_block_help()
- 7 twitter_block.module \twitter_block_help()
Implements hook_help().
File
- ./
twitter_block.module, line 25 - A module to provide simple Twitter blocks using the Twitter Search API.
Code
function twitter_block_help($path, $arg) {
switch ($path) {
case 'admin/structure/block/add-twitter-block':
return '<p>' . t('Use this page to create a new custom Twitter block.') . '</p>';
case 'admin/config/system/twitter-block':
return '<p>' . t('Configure global settings for Twitter blocks.') . '</p>';
}
}