function regions_help in Regions 6
Same name and namespace in other branches
- 7 regions.module \regions_help()
Implementation of hook_help().
File
- ./
regions.module, line 11 - Add regions to the screen that are cross-theme compliant
Code
function regions_help($path, $arg) {
if ($path == 'admin/help#regions') {
return '<p>' . t('Regions adds regions that are cross theme compliant. This way you can add blocks to any number of areas of the screen without having to define them in your themes.') . '</p>';
}
}