CommentsEvent.php 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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. * @deprecated 22.0.0
  34. */
  35. public const EVENT_ADD = 'OCP\Comments\ICommentsManager::addComment';
  36. /**
  37. * @deprecated 22.0.0
  38. */
  39. public const EVENT_PRE_UPDATE = 'OCP\Comments\ICommentsManager::preUpdateComment';
  40. /**
  41. * @deprecated 22.0.0
  42. */
  43. public const EVENT_UPDATE = 'OCP\Comments\ICommentsManager::updateComment';
  44. /**
  45. * @deprecated 22.0.0
  46. */
  47. public const EVENT_DELETE = 'OCP\Comments\ICommentsManager::deleteComment';
  48. /** @var string */
  49. protected $event;
  50. /** @var IComment */
  51. protected $comment;
  52. /**
  53. * DispatcherEvent constructor.
  54. *
  55. * @param string $event
  56. * @param IComment $comment
  57. * @since 9.0.0
  58. */
  59. public function __construct($event, IComment $comment) {
  60. $this->event = $event;
  61. $this->comment = $comment;
  62. }
  63. /**
  64. * @return string
  65. * @since 9.0.0
  66. */
  67. public function getEvent() {
  68. return $this->event;
  69. }
  70. /**
  71. * @return IComment
  72. * @since 9.0.0
  73. */
  74. public function getComment() {
  75. return $this->comment;
  76. }
  77. }