You are here

function twitter_block_help in Twitter Block 8.3

Same name and namespace in other branches
  1. 8.2 twitter_block.module \twitter_block_help()
  2. 7.2 twitter_block.module \twitter_block_help()
  3. 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;
  }
}