You are here

function blocktheme_help in Block Theme 6

Same name and namespace in other branches
  1. 8 blocktheme.module \blocktheme_help()
  2. 5 blocktheme.module \blocktheme_help()
  3. 7 blocktheme.module \blocktheme_help()

Implementation of hook_help().

File

./blocktheme.module, line 66
Provides a configuration option to select custom themes for blocks

Code

function blocktheme_help($path, $arg) {
  switch ($path) {
    case 'admin/help#blocktheme':
      return t('Allows the admin to define re-usable block templates that can be configured from block config screen');
      break;
    case 'admin/settings/blocktheme':
      return t('BlockTheme allows an admin to define tpl files for standard block templates and provides a select box on the block configure form so the user can select a tpl file to use as opposed to having to override the templates by block ID.');
      break;
  }
}