You are here

function taxonomy_block_i18n_help in Taxonomy Block 6

Implementation of hook_help().

File

./taxonomy_block.module, line 11
The taxonomy_block_i18n module used for displaying Site Counter.

Code

function taxonomy_block_i18n_help($section) {
  switch ($section) {
    case 'admin/help#taxonomy_block_i18n':
      $output = "The taxonomy_block_i18n module used for displaying taxonomy in a block with 18n/multi-languages support";
      return $output;
    case 'admin/modules#description':
      return 'The taxonomy_block_i18n module used for displaying taxonomy in a block with 18n/multi-languages support';
  }
}