You are here

function getid3_help in getID3() 6

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

Implementation of hook_help

File

./getid3.module, line 8

Code

function getid3_help($section, $arg) {
  switch ($section) {
    case 'admin/settings/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  module's getid3 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;
  }
}