You are here

function i18nblocks_help in Internationalization 5

Same name and namespace in other branches
  1. 5.3 i18nblocks/i18nblocks.module \i18nblocks_help()
  2. 5.2 i18nblocks/i18nblocks.module \i18nblocks_help()
  3. 6 i18nblocks/i18nblocks.module \i18nblocks_help()

Implementation of hook_help()

File

i18nblocks/i18nblocks.module, line 12

Code

function i18nblocks_help($section = 'admin/help#i18nblocks') {
  switch ($section) {
    case 'admin/help#i18nblocks':
      return t('<h2>This module provides support for multilingual blocks</h2>
        <p>These are not real blocks, but metablocks that group together a number of normal blocks and display the right one depending on language</p>
        <p>In the block administration pages you will find a new tab for creating "Multilingual blocks". Set them up as usual and define which one of the other blocks will be shown for each language.</p>
        ');
    case 'admin/build/block/i18n':
      return t('<p>These are not real blocks, but metablocks that group together a number of normal blocks and display the right one depending on language</p>');
  }
}