You are here

function blockify_help in Blockify 7

Same name and namespace in other branches
  1. 8 blockify.module \blockify_help()
  2. 6 blockify.module \blockify_help()

Implements hook_help().

File

./blockify.module, line 10
Exposes a number of core Drupal elements as blocks.

Code

function blockify_help($path, $arg) {
  if ($path == 'admin/help#blockify') {
    return '<p>' . t('This module exposes a number of core Drupal elements as blocks.') . '</p>';
  }
}