You are here

README.txt in User Relationships 5

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


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
  6. Requirements
  7. ------------
  8. Drupal 5
  9. User Relationships Module
  10. Invite
  11. Installation
  12. ------------
  13. Enable User Relationship Invites in the "Site building -> modules" administration screen.
  14. 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.
  15. Database Schema
  16. ---------------
  17. MySQL
  18. =====
  19. --
  20. -- Table structure for table `user_relationship_invites`
  21. --
  22. CREATE TABLE IF NOT EXISTS `user_relationship_invites` (
  23. `inviter_uid` int(10) unsigned NOT NULL default '0',
  24. `rtid` int(10) unsigned NOT NULL default '0',
  25. `invite_code` varchar(64) NOT NULL default '',
  26. KEY `invite_code` (`invite_code`)
  27. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  28. Credits
  29. -------
  30. Written by Jeff Smick.
  31. Written originally for and financially supported by OurChart Inc. (http://www.ourchart.com)
  32. Thanks to the BuddyList module team for their inspiration