You are here

README.txt in User Relationships 7

User Relationship Implications Module
-------------------------------------
This is a plugin module for the User Relationships module.

It allows admins to set up implied relationships (ex: Manager implies Coworker).
These implies relationships will be automatically created. If a relationship that is
implied by another is deleted the implied by relationship is also deleted.

Implied relationships can be chained (ex: Manager implies Coworker implies Officemate)

Comments: please post an issue at http://drupal.org/project/user_relationships


Scenarios
---------
User creates a "manager" relationship to another user: The "coworker" relationship will
be automatically created between them.

User removes a "coworker" relationship to another user: The "manager" relationship will
be automatically deleted.


Requirements
------------
Drupal 7
User Relationships API
User Relationships UI


Installation
------------
* Enable User Relationship Implications in the "Site building -> modules" administration screen.
* If you want to use the implications relationships page, override the
theme_user_relationships_page in your theme's template.php with the
implications page. E.g.
  function phptemplate_user_relationships_page($uid = NULL, $relationship = NULL) {
    return return theme('user_relationship_implications_page', $uid, $relationship);
  }


Credits
-------
Written by Jeff Smick.
Written originally for and financially supported by OurChart Inc. (http://www.ourchart.com)
Thanks to the BuddyList module team for their inspiration

File

user_relationship_implications/README.txt
View source
  1. User Relationship Implications Module
  2. -------------------------------------
  3. This is a plugin module for the User Relationships module.
  4. It allows admins to set up implied relationships (ex: Manager implies Coworker).
  5. These implies relationships will be automatically created. If a relationship that is
  6. implied by another is deleted the implied by relationship is also deleted.
  7. Implied relationships can be chained (ex: Manager implies Coworker implies Officemate)
  8. Comments: please post an issue at http://drupal.org/project/user_relationships
  9. Scenarios
  10. ---------
  11. User creates a "manager" relationship to another user: The "coworker" relationship will
  12. be automatically created between them.
  13. User removes a "coworker" relationship to another user: The "manager" relationship will
  14. be automatically deleted.
  15. Requirements
  16. ------------
  17. Drupal 7
  18. User Relationships API
  19. User Relationships UI
  20. Installation
  21. ------------
  22. * Enable User Relationship Implications in the "Site building -> modules" administration screen.
  23. * If you want to use the implications relationships page, override the
  24. theme_user_relationships_page in your theme's template.php with the
  25. implications page. E.g.
  26. function phptemplate_user_relationships_page($uid = NULL, $relationship = NULL) {
  27. return return theme('user_relationship_implications_page', $uid, $relationship);
  28. }
  29. Credits
  30. -------
  31. Written by Jeff Smick.
  32. Written originally for and financially supported by OurChart Inc. (http://www.ourchart.com)
  33. Thanks to the BuddyList module team for their inspiration