SimpleSitemapTypeInterface.php in Simple XML sitemap 4.x
Namespace
Drupal\simple_sitemap\EntityFile
src/Entity/SimpleSitemapTypeInterface.phpView source
<?php
namespace Drupal\simple_sitemap\Entity;
use Drupal\Core\Config\Entity\ConfigEntityInterface;
use Drupal\simple_sitemap\Plugin\simple_sitemap\SitemapGenerator\SitemapGeneratorInterface;
interface SimpleSitemapTypeInterface extends ConfigEntityInterface {
/**
* @return \Drupal\simple_sitemap\Plugin\simple_sitemap\SitemapGenerator\SitemapGeneratorInterface
*/
public function getSitemapGenerator() : SitemapGeneratorInterface;
/**
* @return \Drupal\simple_sitemap\Plugin\simple_sitemap\UrlGenerator\UrlGeneratorInterface[]
*/
public function getUrlGenerators() : array;
}
Interfaces
Name | Description |
---|---|
SimpleSitemapTypeInterface |