modusermessage.class.php 930 B

1234567891011121314151617181920212223242526
  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 message.
  12. *
  13. * @property string $type The type of message.
  14. * @property string $subject The subject of the message
  15. * @property string $message The body text of the message
  16. * @property int $sender The ID of the User that sent this message
  17. * @property int $recipient The ID of the User that was the recipient of the message
  18. * @property boolean $private Whether or not this message is private. Deprecated.
  19. * @property datetime $date_sent The date and time this message was sent
  20. * @property boolean $read Whether or not this message has been read by the User
  21. *
  22. * @see modUser
  23. * @package modx
  24. */
  25. class modUserMessage extends xPDOSimpleObject {}