You are here

function countryicons_help in Country Icons 7.2

Same name and namespace in other branches
  1. 6.2 countryicons.module \countryicons_help()
  2. 6 countryicons.module \countryicons_help()
  3. 7 countryicons.module \countryicons_help()

Implements hook_help().

File

./countryicons.module, line 41
A collection of country icons, and an API for retrieving them.

Code

function countryicons_help($path, $arg) {
  switch ($path) {
    case 'admin/help#countryicons':
      return t('For API documentation visit Country Icons <a href="@documentation-page">documentation page</a> on drupal.org or check the countryicons.api.php file in the module folder.', array(
        '@documentation-page' => url('http://drupal.org/node/1091406'),
      ));
  }
}