You are here

function compact_forms_help in Compact Forms 5

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

Implementation of hook_help().

File

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

Code

function compact_forms_help($section) {
  switch ($section) {
    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>';
  }
}