function blocktheme_help in Block Theme 5
Same name and namespace in other branches
- 8 blocktheme.module \blocktheme_help()
- 6 blocktheme.module \blocktheme_help()
- 7 blocktheme.module \blocktheme_help()
File
- ./
blocktheme.module, line 27
Code
function blocktheme_help($section) {
global $base_url;
switch ($section) {
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;
}
}