FavoriteAction.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 FavoriteAction 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 'favorite';
  14. }
  15. /**
  16. * @return string A translated string
  17. * @since 11.0.0
  18. */
  19. public function getName() {
  20. return $this->l->t('A file has been added to or removed from your <strong>favorites</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 5;
  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 false;
  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. /**
  53. * @return bool True when the option can be changed for the stream
  54. * @since 11.0.0
  55. */
  56. public function isDefaultEnabledMail() {
  57. return false;
  58. }
  59. /**
  60. * @return bool True when the option can be changed for the notification
  61. * @since 20.0.0
  62. */
  63. public function canChangeNotification() {
  64. return false;
  65. }
  66. }