OEmbedLink.php 602 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * OEmbedLink
  4. *
  5. * This file is part of Grav MediaEmbed plugin.
  6. *
  7. * Dual licensed under the MIT or GPL Version 3 licenses, see LICENSE.
  8. * http://benjamin-regler.de/license/
  9. */
  10. namespace Grav\Plugin\MediaEmbed\OEmbed;
  11. use Grav\Plugin\MediaEmbed\OEmbed\OEmbed;
  12. /**
  13. * OEmbedLink
  14. *
  15. * Responses of this type allow a provider to return any generic embed
  16. * data (such as title and author_name), without providing either the
  17. * url or html parameters. The consumer may then link to the resource,
  18. * using the URL specified in the original request.
  19. */
  20. class OEmbedLink extends OEmbed
  21. {
  22. }