SimpleSitemapPluginInterface.php in Simple XML sitemap 4.x
File
src/Plugin/simple_sitemap/SimpleSitemapPluginInterface.phpView source
<?php
namespace Drupal\simple_sitemap\Plugin\simple_sitemap;
use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
/**
* Interface SimpleSitemapPluginInterface
*/
interface SimpleSitemapPluginInterface extends ContainerFactoryPluginInterface {
public function label() : string;
public function description() : string;
public function settings() : array;
}
Interfaces
Name | Description |
---|---|
SimpleSitemapPluginInterface | Interface SimpleSitemapPluginInterface |