IMimeIconProvider.php 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>
  4. *
  5. * @author John Molakvoæ <skjnldsv@protonmail.com>
  6. *
  7. * @license AGPL-3.0-or-later
  8. *
  9. * This code is free software: you can redistribute it and/or modify
  10. * it under the terms of the GNU Affero General Public License, version 3,
  11. * as published by the Free Software Foundation.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU Affero General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Affero General Public License, version 3,
  19. * along with this program. If not, see <http://www.gnu.org/licenses/>
  20. *
  21. */
  22. namespace OCP\Preview;
  23. /**
  24. * Interface IMimeIconProvider
  25. *
  26. * @since 28.0.0
  27. */
  28. interface IMimeIconProvider {
  29. /**
  30. * Get the URL to the icon for the given mime type
  31. * Used by the preview provider to show a mime icon
  32. * if no preview is available.
  33. * @since 28.0.0
  34. */
  35. public function getMimeIconUrl(string $mime): string|null;
  36. }