| 1 |
nodeauthor README
|
| 2 |
|
| 3 |
(C) Copyright 2006 Pavel Prochazka & Jakub Suchy <redakce@drupal.cz>
|
| 4 |
|
| 5 |
Description
|
| 6 |
------------
|
| 7 |
|
| 8 |
Nodeauthor module is very simple module which allows users to edit additional
|
| 9 |
information about them in user-edit form. This information is then displayed
|
| 10 |
below nodes created by such users.
|
| 11 |
|
| 12 |
Administrators are allowed to restrict displaying info to particular node types.
|
| 13 |
|
| 14 |
Installation
|
| 15 |
------------
|
| 16 |
|
| 17 |
To install, you move this directory and all its subdirectories
|
| 18 |
to your /modules directory. Enable the nodeauthor.module, then go to
|
| 19 |
http://www.your-drupal-site.com/admin/settings/nodeauthor and check node types
|
| 20 |
which will display author information.
|
| 21 |
|
| 22 |
Then go to http://www.your-drupal-site.com/user/YOUR-ID/edit and edit form
|
| 23 |
field named Additional user info -> Short info.
|
| 24 |
|
| 25 |
Then go to http://www.your-drupal-site.com/admin/access and edit permissions for nodeauthor module:
|
| 26 |
- edit own info - If checked for a role, user will be allowed to edit own author information. You should allow it for anonymous users if you want to allow editing authoring information at register form
|
| 27 |
- view author info - If checked for a role, user will be allowed to view authoring information for nodes. You would probably want to permit it for ALL roles (including anonymous)
|
| 28 |
|
| 29 |
Everything done, enjoy.
|
| 30 |
|
| 31 |
Theming
|
| 32 |
-------
|
| 33 |
|
| 34 |
Info is by default displayed as:
|
| 35 |
<div class="nodeauthor-info">
|
| 36 |
<span>About author</span>
|
| 37 |
...your information...
|
| 38 |
</div>
|
| 39 |
|
| 40 |
You can theme the display by editing nodeauthor.css in this directory
|
| 41 |
|
| 42 |
Bugs
|
| 43 |
----
|
| 44 |
Please feel free to report any bugs you find to Drupal.org issue tracker.
|