modusergroupmember.class.php 824 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /*
  3. * This file is part of MODX Revolution.
  4. *
  5. * Copyright (c) MODX, LLC. All Rights Reserved.
  6. *
  7. * For complete copyright and license information, see the COPYRIGHT and LICENSE
  8. * files found in the top-level directory of this distribution.
  9. */
  10. /**
  11. * Represents a user membership in a user group.
  12. *
  13. * @property int $user_group The ID of the related User Group
  14. * @property int $member The ID of the related User
  15. * @property int $role The ID of the Role the User has for this User Group
  16. * @property int $rank Used when sorting memberships within a User Group
  17. *
  18. * @property modUser $User
  19. * @property modUserGroup $UserGroup
  20. * @property modUserGroupRole $UserGroupRole
  21. *
  22. * @see modUser
  23. * @see modUserGroup
  24. * @see modUserGroupRole
  25. * @package modx
  26. */
  27. class modUserGroupMember extends xPDOSimpleObject {}