function block_country_help in Block Country 7
Implements hook_help().
File
- ./
block_country.module, line 15 - Country_Block - Module for showing the country specific blocks.
Code
function block_country_help($path, $arg) {
switch ($path) {
case 'admin/help#block_country':
$output = '';
$output .= '<p>' . t('This module helps to create country specific Blocks. It Add country setting to block and manages country specific display of block.') . '</p>';
$output .= '<p>' . t("Block will be only visible for the selected countries. It detects and gets User's country from Ip2Country information and based on this it manages block visibility.") . '</p>';
return $output;
}
}