function twitter_block_help in Twitter Block 8.2
Same name and namespace in other branches
- 8.3 twitter_block.module \twitter_block_help()
- 7.2 twitter_block.module \twitter_block_help()
- 7 twitter_block.module \twitter_block_help()
Implements hook_help().
File
- ./
twitter_block.module, line 13 - Provides configurable blocks for a Twitter feed.
Code
function twitter_block_help($route_name, RouteMatchInterface $route_match) {
$help_text = '';
switch ($route_name) {
case 'help.page.twitter_block':
$help_text = '<p>' . t('This module provides configurable blocks for a Twitter feed.') . '</p>';
return $help_text;
}
}