You are here

function guestbook_help in Guestbook 5.2

Same name and namespace in other branches
  1. 5 guestbook.module \guestbook_help()
  2. 6.2 guestbook.module \guestbook_help()
  3. 6 guestbook.module \guestbook_help()
  4. 7.2 guestbook.module \guestbook_help()

Implementation of hook_help().

File

./guestbook.module, line 175

Code

function guestbook_help($section) {
  switch ($section) {
    case 'admin/modules#description':
      return t('Adds a site guestbook and individual user guestbooks.');
  }
}