CommentsEvent.php 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, ownCloud, Inc.
  4. *
  5. * @author Arthur Schiwon <blizzz@arthur-schiwon.de>
  6. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  7. * @author Joas Schilling <coding@schilljs.com>
  8. *
  9. * @license AGPL-3.0
  10. *
  11. * This code is free software: you can redistribute it and/or modify
  12. * it under the terms of the GNU Affero General Public License, version 3,
  13. * as published by the Free Software Foundation.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU Affero General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU Affero General Public License, version 3,
  21. * along with this program. If not, see <http://www.gnu.org/licenses/>
  22. *
  23. */
  24. namespace OCP\Comments;
  25. use OCP\EventDispatcher\Event;
  26. /**
  27. * Class CommentsEvent
  28. *
  29. * @since 9.0.0
  30. */
  31. class CommentsEvent extends Event {
  32. /**
  33. * @since 11.0.0
  34. * @deprecated 22.0.0
  35. */
  36. public const EVENT_ADD = 'OCP\Comments\ICommentsManager::addComment';
  37. /**
  38. * @since 11.0.0
  39. * @deprecated 22.0.0
  40. */
  41. public const EVENT_PRE_UPDATE = 'OCP\Comments\ICommentsManager::preUpdateComment';
  42. /**
  43. * @since 11.0.0
  44. * @deprecated 22.0.0
  45. */
  46. public const EVENT_UPDATE = 'OCP\Comments\ICommentsManager::updateComment';
  47. /**
  48. * @since 11.0.0
  49. * @deprecated 22.0.0
  50. */
  51. public const EVENT_DELETE = 'OCP\Comments\ICommentsManager::deleteComment';
  52. /** @var string */
  53. protected $event;
  54. /** @var IComment */
  55. protected $comment;
  56. /**
  57. * DispatcherEvent constructor.
  58. *
  59. * @param string $event
  60. * @param IComment $comment
  61. * @since 9.0.0
  62. */
  63. public function __construct($event, IComment $comment) {
  64. $this->event = $event;
  65. $this->comment = $comment;
  66. }
  67. /**
  68. * @return string
  69. * @since 9.0.0
  70. */
  71. public function getEvent() {
  72. return $this->event;
  73. }
  74. /**
  75. * @return IComment
  76. * @since 9.0.0
  77. */
  78. public function getComment() {
  79. return $this->comment;
  80. }
  81. }