You are here

README.txt in User Relationships 5

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

It allows admins to set default relationships that are created between users when a new user joins.
Think of it like Tom from MySpace.

Send comments to Jeff Smick: http://drupal.org/user/107579/contact


Requirements
------------
Drupal 5
User Relationships Module


Installation
------------
Enable User Relationship Invites in the "Site building -> modules" administration screen.


Database Schema
---------------
MySQL
=====

-- 
-- Table structure for table `user_relationship_defaults`
-- 
CREATE TABLE IF NOT EXISTS `user_relationship_defaults` (
  `rdid` int(10) unsigned NOT NULL default '0',
  `uid` int(10) unsigned NOT NULL default '0',
  `rtid` int(10) unsigned NOT NULL default '0',
  PRIMARY KEY  (`rdid`),
  KEY `uid` (`uid`),
  KEY `rtid` (`rtid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;


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

plugins/user_relationship_defaults/README.txt
View source
  1. User Relationship Defaults Module
  2. ---------------------------------
  3. This is a plugin module for the User Relationships module.
  4. It allows admins to set default relationships that are created between users when a new user joins.
  5. Think of it like Tom from MySpace.
  6. Send comments to Jeff Smick: http://drupal.org/user/107579/contact
  7. Requirements
  8. ------------
  9. Drupal 5
  10. User Relationships Module
  11. Installation
  12. ------------
  13. Enable User Relationship Invites in the "Site building -> modules" administration screen.
  14. Database Schema
  15. ---------------
  16. MySQL
  17. =====
  18. --
  19. -- Table structure for table `user_relationship_defaults`
  20. --
  21. CREATE TABLE IF NOT EXISTS `user_relationship_defaults` (
  22. `rdid` int(10) unsigned NOT NULL default '0',
  23. `uid` int(10) unsigned NOT NULL default '0',
  24. `rtid` int(10) unsigned NOT NULL default '0',
  25. PRIMARY KEY (`rdid`),
  26. KEY `uid` (`uid`),
  27. KEY `rtid` (`rtid`)
  28. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  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