You are here

function getid3_help in getID3() 7.2

Same name and namespace in other branches
  1. 8 getid3.module \getid3_help()
  2. 6 getid3.module \getid3_help()
  3. 7 getid3.module \getid3_help()

Implements hook_help().

File

./getid3.module, line 8

Code

function getid3_help($section, $arg) {
  switch ($section) {
    case 'admin/config/media/getid3':
      $help = '<p>' . t("To use this module you'll need to <a href='!download-link'>download the library</a> from the <a href='!info-link'>getID3 website</a> and extract the contents into the site's libraries directory. Currently, the recommended version of the getID3 library is %recommended-version.", array(
        '!download-link' => url('http://prdownloads.sourceforge.net/getid3'),
        '!info-link' => url('http://getid3.org/'),
        '%recommended-version' => GETID3_RECOMMEND_VERSION,
      )) . '</p>';
      return $help;
  }
}