UrlGeneratorInterface.php in Simple XML sitemap 4.x
Same filename and directory in other branches
File
src/Plugin/simple_sitemap/UrlGenerator/UrlGeneratorInterface.phpView source
<?php
namespace Drupal\simple_sitemap\Plugin\simple_sitemap\UrlGenerator;
use Drupal\simple_sitemap\Entity\SimpleSitemapInterface;
use Drupal\simple_sitemap\Plugin\simple_sitemap\SimpleSitemapPluginInterface;
/**
* Interface UrlGeneratorInterface
*/
interface UrlGeneratorInterface extends SimpleSitemapPluginInterface {
public function setSitemapVariant(SimpleSitemapInterface $sitemap_variant) : UrlGeneratorInterface;
public function getDataSets() : array;
public function generate($data_set) : array;
}
Interfaces
Name | Description |
---|---|
UrlGeneratorInterface | Interface UrlGeneratorInterface |