You are here

function twitter_block_help in Twitter Block 7.2

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