I'd like to add watcher feature to user profile.
One click - Watch User link would:
- send info about new nodes created by watched user
- add the user to the list of my 'observed users' and also in second way 'users who observe me' (Views)
- send info about new comments created by this user
- send info that somebody started watching me

... so actually I would like to have Watcher functionality not for the Node, but also for User.
Is that possible ? If not, maybe some other module would do that ?
Thanks.

Comments

bhavin.ahya’s picture

Yes, It is possible

please follow the link : http://drupal.org/node/836216

Using user relationship module, you can create relationships like 'freind', 'follower' etc..
then you need to integrate the given watcher_ur module with user relationship and watcher module

By this way you can manage the functionality like 'Watch a user'.

verynic’s picture

that's a good idea,but how to watch contents(new created,modified,commented,and deleted or unpublished) by content type or taxonomy

bhavin.ahya’s picture

watcher module already providing some of the features (for new created, modified, commented contents).
I have provided one link in my previous post to integrate with user relationship module. In this module you will find watcher_ur_db_get_users_notify_comment_insert function. you can alter this function as per your requirements.

cheers