You are here

function regions_help in Regions 7

Same name and namespace in other branches
  1. 6 regions.module \regions_help()

Implements hook_help().

File

./regions.module, line 10
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>';
  }
}