UrlGeneratorInterface.php 375 B

123456789101112131415161718
  1. <?php
  2. namespace Drupal\simple_sitemap\Plugin\simple_sitemap\UrlGenerator;
  3. /**
  4. * Interface UrlGeneratorInterface
  5. * @package Drupal\simple_sitemap\Plugin\simple_sitemap\UrlGenerator
  6. */
  7. interface UrlGeneratorInterface {
  8. function setSettings(array $settings);
  9. function setSitemapVariant($sitemap_variant);
  10. function getDataSets();
  11. function generate($data_set);
  12. }