You are here

function fasttoggle_help in Fasttoggle 6

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

Implementation of hook_help().

File

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

Code

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