function blocktheme_help in Block Theme 7
Same name and namespace in other branches
- 8 blocktheme.module \blocktheme_help()
- 5 blocktheme.module \blocktheme_help()
- 6 blocktheme.module \blocktheme_help()
Implements hook_help().
File
- ./
blocktheme.module, line 71 - 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/config/user-interface/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;
}
}