You are here

README.txt in Guestbook 5

Same filename and directory in other branches
  1. 5.2 README.txt
  2. 6.2 README.txt
  3. 6 README.txt
  4. 7.2 README.txt
-- SUMMARY --

Guestbook provides a site guestbook and individual user guestbooks.  Guestbook
owners can delete and comment on guestbook entries.  User avatars are shown if
they are available.

* Site guestbook and user guestbooks.
* Configurable intro text per guestbook (displayed above entries).
* Address fields (email and website) for anonymous posters.
* Configurable input format for guestbook entries.
* Various display options (entries per page, pager position, submission date,
  email and website address, and comments).
* Email notification for new guestbooks entries.
* Integration with spam.module.

For a full description visit the project page:
  http://drupal.org/project/guestbook
Bug reports, feature suggestions and latest developments:
  http://drupal.org/project/issues/guestbook


-- REQUIREMENTS --

None.


-- INSTALLATION --

* Install as usual, see http://drupal.org/node/70151 for further information.

* Enable the module in administer >> Modules.


-- CONFIGURATION --

* Configure user permissions in administer >> Access control >> Guestbook.

* Customize the settings in administer >> Site configuration >> Guestbook.


-- FAQ --

Q: How can guestbook entries be displayed in user profiles?

A: You need to override the theme_user_profile() function.  Add the following
   code to your override function (without <code> tags):
<code>
  if module_exists('guestbook') {
    print module_invoke('guestbook', 'page', $user->uid);
  }
</code>
   See http://drupal.org/node/34484 for further information.

Q: Anonymous users only see "n/a" instead of the actual guestbook entries. Why?

A: Please ensure that the default input format (for anonymous users) is equal to
   the configured input format in Guestbook module's settings.


-- CONTACT --

Current maintainers:
* Henrik Brautaset Aronsen (hba)
* Daniel F. Kudwien (sun) - dev@unleashedmind.com

Previous maintainers / contributors:
* Jeff Warrington (jaydub) - http://drupal.org/user/46257
* Stefan M. Kudwien (smk-ka) - dev@unleashedmind.com
* JumpingJack@drupalcenter.de - http://drupal.org/user/56823 (port to 5.x)
* tenrapid - http://drupal.org/user/37587 (port to 4.7)

File

README.txt
View source
  1. -- SUMMARY --
  2. Guestbook provides a site guestbook and individual user guestbooks. Guestbook
  3. owners can delete and comment on guestbook entries. User avatars are shown if
  4. they are available.
  5. * Site guestbook and user guestbooks.
  6. * Configurable intro text per guestbook (displayed above entries).
  7. * Address fields (email and website) for anonymous posters.
  8. * Configurable input format for guestbook entries.
  9. * Various display options (entries per page, pager position, submission date,
  10. email and website address, and comments).
  11. * Email notification for new guestbooks entries.
  12. * Integration with spam.module.
  13. For a full description visit the project page:
  14. http://drupal.org/project/guestbook
  15. Bug reports, feature suggestions and latest developments:
  16. http://drupal.org/project/issues/guestbook
  17. -- REQUIREMENTS --
  18. None.
  19. -- INSTALLATION --
  20. * Install as usual, see http://drupal.org/node/70151 for further information.
  21. * Enable the module in administer >> Modules.
  22. -- CONFIGURATION --
  23. * Configure user permissions in administer >> Access control >> Guestbook.
  24. * Customize the settings in administer >> Site configuration >> Guestbook.
  25. -- FAQ --
  26. Q: How can guestbook entries be displayed in user profiles?
  27. A: You need to override the theme_user_profile() function. Add the following
  28. code to your override function (without tags):
  29. if module_exists('guestbook') {
  30. print module_invoke('guestbook', 'page', $user->uid);
  31. }
  32. See http://drupal.org/node/34484 for further information.
  33. Q: Anonymous users only see "n/a" instead of the actual guestbook entries. Why?
  34. A: Please ensure that the default input format (for anonymous users) is equal to
  35. the configured input format in Guestbook module's settings.
  36. -- CONTACT --
  37. Current maintainers:
  38. * Henrik Brautaset Aronsen (hba)
  39. * Daniel F. Kudwien (sun) - dev@unleashedmind.com
  40. Previous maintainers / contributors:
  41. * Jeff Warrington (jaydub) - http://drupal.org/user/46257
  42. * Stefan M. Kudwien (smk-ka) - dev@unleashedmind.com
  43. * JumpingJack@drupalcenter.de - http://drupal.org/user/56823 (port to 5.x)
  44. * tenrapid - http://drupal.org/user/37587 (port to 4.7)