FileFavoriteChanged.php 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <?php
  2. /**
  3. * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
  4. * SPDX-License-Identifier: AGPL-3.0-or-later
  5. */
  6. namespace OCA\Files\Activity\Settings;
  7. class FileFavoriteChanged extends FileActivitySettings {
  8. /**
  9. * @return string Lowercase a-z and underscore only identifier
  10. * @since 11.0.0
  11. */
  12. public function getIdentifier() {
  13. return 'file_favorite_changed';
  14. }
  15. /**
  16. * @return string A translated string
  17. * @since 11.0.0
  18. */
  19. public function getName() {
  20. return $this->l->t('A favorite file or folder has been <strong>changed</strong>');
  21. }
  22. /**
  23. * @return int whether the filter should be rather on the top or bottom of
  24. * the admin section. The filters are arranged in ascending order of the
  25. * priority values. It is required to return a value between 0 and 100.
  26. * @since 11.0.0
  27. */
  28. public function getPriority() {
  29. return 1;
  30. }
  31. /**
  32. * @return bool True when the option can be changed for the stream
  33. * @since 11.0.0
  34. */
  35. public function canChangeStream() {
  36. return true;
  37. }
  38. /**
  39. * @return bool True when the option can be changed for the stream
  40. * @since 11.0.0
  41. */
  42. public function isDefaultEnabledStream() {
  43. return true;
  44. }
  45. /**
  46. * @return bool True when the option can be changed for the mail
  47. * @since 11.0.0
  48. */
  49. public function canChangeMail() {
  50. return false;
  51. }
  52. public function canChangeNotification() {
  53. return false;
  54. }
  55. /**
  56. * @return bool True when the option can be changed for the stream
  57. * @since 11.0.0
  58. */
  59. public function isDefaultEnabledMail() {
  60. return false;
  61. }
  62. public function isDefaultEnabledNotification() {
  63. return false;
  64. }
  65. }