You are here

function compact_forms_help in Compact Forms 7

Same name and namespace in other branches
  1. 5 compact_forms.module \compact_forms_help()
  2. 6 compact_forms.module \compact_forms_help()

Implements hook_help().

File

./compact_forms.module, line 11
Compact Forms Drupal module.

Code

function compact_forms_help($path, $arg) {
  switch ($path) {
    case 'admin/help#compact_forms':
      return '<p>' . t('Makes form fields compact by overlaying the field label on top the field itself using jQuery.') . '</p>';
  }
}