; $Id: README.txt,v 1.1.4.2 2011-01-14 23:28:11 berdir Exp $ 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