You are here

function twitter_help in Twitter 7.6

Same name and namespace in other branches
  1. 8 twitter.module \twitter_help()
  2. 7.5 twitter.module \twitter_help()

Implements hook_help().

File

./twitter.module, line 16
Provides API integration with the Twitter microblogging service.

Code

function twitter_help($path, $arg) {
  switch ($path) {
    case 'admin/help#twitter':
      $output = '';
      $output .= '<p>' . t('This module provides API integration with the Twitter microblogging service.') . '</p>';
      $output .= '<p>' . t('For more information, please visit the official <a href="@url">project page</a> on Drupal.org.', array(
        '@url' => 'https://www.drupal.org/project/twitter',
      )) . '</p>';
      return $output;
  }
}