You are here

function fasttoggle_help in Fasttoggle 5

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

Implementation of hook_help().

File

./fasttoggle.module, line 117
Enables fast toggling of binary or not so binary settings

Code

function fasttoggle_help($section) {
  switch ($section) {
    case 'admin/settings/fasttoggle':
      return t('Configure what fast toggling options are available.');
      break;
  }
}