| 1 |
$Id: README.txt,v 1.3 2007/03/28 16:33:33 fago Exp $
|
| 2 |
|
| 3 |
Usernode Module
|
| 4 |
------------------------
|
| 5 |
by Wolfgang Ziegler, nuppla@zites.net
|
| 6 |
|
| 7 |
|
| 8 |
This module tries to make users nodes. It cares for automatic creation and
|
| 9 |
deletion of a node for each user, the so called usernode.
|
| 10 |
|
| 11 |
Features:
|
| 12 |
|
| 13 |
* Use views to build user listings or even searches. Usernode provides an
|
| 14 |
easy customizeable default view.
|
| 15 |
* Use it instead of the user account page located at /user. The advantage is
|
| 16 |
that you can theme it like any other node and
|
| 17 |
* use features, which other modules provide for nodes, with the usernode.
|
| 18 |
Think of comments, voting modules, taxonomy...
|
| 19 |
|
| 20 |
Notes:
|
| 21 |
The usernode itself is empty. It's just a placeholder for its user.
|
| 22 |
The usernodes of blocked users are set to unpublished.
|
| 23 |
Manual deletion of usernodes (without deleting its user) 'll be prevented.
|
| 24 |
|
| 25 |
|
| 26 |
If you want to link to the usernode instead of linking to the old user page
|
| 27 |
as default you can override the functions theme_username() and
|
| 28 |
theme_user_picture().
|
| 29 |
If you use a theme using the phptemplate engine just copy the template.php
|
| 30 |
file provided with this package to your theme's folder, or if the file
|
| 31 |
already exists, only append the two functions inside the file to your
|
| 32 |
existing file.
|
| 33 |
|
| 34 |
|
| 35 |
Installation
|
| 36 |
------------
|
| 37 |
* Copy the module to your modules directory and activate it.
|
| 38 |
|
| 39 |
|
| 40 |
Building userlists and searches
|
| 41 |
-------------------------------
|
| 42 |
The usernode module makes the user's data available in views. It provides an
|
| 43 |
easy customizeable default view 'userlist'.
|
| 44 |
|
| 45 |
You can extend your userlist with further information, which the user has entered
|
| 46 |
in a nodeprofile by using the views fusion module.
|
| 47 |
Have a look at http://drupal.org/project/views_fusion and its README.
|
| 48 |
|