LinkAction.php 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <?php
  2. /**
  3. * @copyright 2017 Christoph Wurst <christoph@winzerhof-wurst.at>
  4. *
  5. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  6. *
  7. * @license GNU AGPL version 3 or any later version
  8. *
  9. * This program is free software: you can redistribute it and/or modify
  10. * it under the terms of the GNU Affero General Public License as
  11. * published by the Free Software Foundation, either version 3 of the
  12. * License, or (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU Affero General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Affero General Public License
  20. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  21. *
  22. */
  23. namespace OC\Contacts\ContactsMenu\Actions;
  24. use OCP\Contacts\ContactsMenu\ILinkAction;
  25. class LinkAction implements ILinkAction {
  26. private string $icon = '';
  27. private string $name = '';
  28. private string $href = '';
  29. private int $priority = 10;
  30. private string $appId = '';
  31. /**
  32. * @param string $icon absolute URI to an icon
  33. */
  34. public function setIcon(string $icon) {
  35. $this->icon = $icon;
  36. }
  37. public function setName(string $name) {
  38. $this->name = $name;
  39. }
  40. public function getName(): string {
  41. return $this->name;
  42. }
  43. public function setPriority(int $priority) {
  44. $this->priority = $priority;
  45. }
  46. public function getPriority(): int {
  47. return $this->priority;
  48. }
  49. public function setHref(string $href) {
  50. $this->href = $href;
  51. }
  52. public function getHref(): string {
  53. return $this->href;
  54. }
  55. /**
  56. * @since 23.0.0
  57. */
  58. public function setAppId(string $appId) {
  59. $this->appId = $appId;
  60. }
  61. /**
  62. * @since 23.0.0
  63. */
  64. public function getAppId(): string {
  65. return $this->appId;
  66. }
  67. public function jsonSerialize(): array {
  68. return [
  69. 'title' => $this->name,
  70. 'icon' => $this->icon,
  71. 'hyperlink' => $this->href,
  72. 'appId' => $this->appId,
  73. ];
  74. }
  75. }