You are here

function countries_api_help in Country codes API 6

Same name and namespace in other branches
  1. 5 countries_api.module \countries_api_help()

Implementation of hook_help().

File

./countries_api.module, line 18
Countries API provides an API for official and up-to-date ISO 3166 country codes (alpha-2 and alpha-3) and names (official short names).

Code

function countries_api_help($path, $arg) {
  switch ($path) {
    case 'admin/help#countries_api':
      return '<p>' . t('For information about the API follow the "Read documentation" link on the module <a href="@project-page-url">project page</a>.', array(
        '@project-page-url' => url('http://drupal.org/project/countries_api'),
      )) . '</p>';
  }
}