You are here

function getid3_help in getID3() 8

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

Implements hook_help().

File

./getid3.module, line 10

Code

function getid3_help($route_name) {
  switch ($route_name) {
    case 'help.page.getid3':

      //case 'admin/help#getid3':
      return '<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::fromUri('http://prdownloads.sourceforge.net/getid3'),
        '!info-link' => Url::fromUri('http://getid3.org/'),
        '%recommended-version' => GETID3_RECOMMENDED_VERSION,
      )) . '</p>';
  }
}