DefaultHreflangSitemapType.php 576 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace Drupal\simple_sitemap\Plugin\simple_sitemap\SitemapType;
  3. /**
  4. * Class DefaultHreflangSitemapType
  5. * @package Drupal\simple_sitemap\Plugin\simple_sitemap\SitemapType
  6. *
  7. * @SitemapType(
  8. * id = "default_hreflang",
  9. * label = @Translation("Default hreflang"),
  10. * description = @Translation("The default hreflang sitemap type."),
  11. * sitemapGenerator = "default",
  12. * urlGenerators = {
  13. * "custom",
  14. * "entity",
  15. * "entity_menu_link_content",
  16. * "arbitrary",
  17. * },
  18. * )
  19. */
  20. class DefaultHreflangSitemapType extends SitemapTypeBase {
  21. }