moddbregistermessage.class.php 957 B

1234567891011121314151617181920212223242526272829
  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 database-based registry message.
  12. *
  13. * @param int $topic The topic this message belongs to
  14. * @param string $id The ID of the message
  15. * @param datetime $created The time this message was created
  16. * @param datetime $valid The time this message was validated
  17. * @param int $accessed The UNIX timestamp when this message was accessed
  18. * @param int $expires The UNIX timestamp when this message will automatically expire
  19. * @param string $payload The payload of this message
  20. * @param boolean Whether or not to kill the message
  21. *
  22. * @see modDbRegisterQueue
  23. * @see modDbRegisterTopic
  24. *
  25. * @package modx
  26. * @subpackage registry.db
  27. */
  28. class modDbRegisterMessage extends xPDOObject {}