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