You are here

README.txt in User Relationships 5.2

User Relationship Invites Module
--------------------------------
This is a plugin module for the User Relationships and Invite modules.

It allows users to invite friends and specify a relationship at invite time.

Send comments to Jeff Smick: http://drupal.org/user/107579/contact, or post an issue at
http://drupal.org/project/user_relationships.


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


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

Please note: we had to patch invite module to make this work, so you'll need to use a version of invite dated after 10/14/2007 or apply the patch yourself. The patch can be found at http://drupal.org/node/175518.

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

-- 
-- Table structure for table `user_relationship_invites`
-- 
CREATE TABLE IF NOT EXISTS `user_relationship_invites` (
  `inviter_uid` int(10) unsigned NOT NULL default '0',
  `rtid` int(10) unsigned NOT NULL default '0',
  `invite_code` varchar(64) NOT NULL default '',
  KEY `invite_code` (`invite_code`)
) 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_invites/README.txt
View source
  1. User Relationship Invites Module
  2. --------------------------------
  3. This is a plugin module for the User Relationships and Invite modules.
  4. It allows users to invite friends and specify a relationship at invite time.
  5. Send comments to Jeff Smick: http://drupal.org/user/107579/contact, or post an issue at
  6. http://drupal.org/project/user_relationships.
  7. Requirements
  8. ------------
  9. Drupal 5
  10. User Relationships Module
  11. Invite
  12. Installation
  13. ------------
  14. Enable User Relationship Invites in the "Site building -> modules" administration screen.
  15. Please note: we had to patch invite module to make this work, so you'll need to use a version of invite dated after 10/14/2007 or apply the patch yourself. The patch can be found at http://drupal.org/node/175518.
  16. Database Schema
  17. ---------------
  18. MySQL
  19. =====
  20. --
  21. -- Table structure for table `user_relationship_invites`
  22. --
  23. CREATE TABLE IF NOT EXISTS `user_relationship_invites` (
  24. `inviter_uid` int(10) unsigned NOT NULL default '0',
  25. `rtid` int(10) unsigned NOT NULL default '0',
  26. `invite_code` varchar(64) NOT NULL default '',
  27. KEY `invite_code` (`invite_code`)
  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