You are here

SimpleSitemapPluginInterface.php in Simple XML sitemap 4.x

File

src/Plugin/simple_sitemap/SimpleSitemapPluginInterface.php
View 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

Namesort descending Description
SimpleSitemapPluginInterface Interface SimpleSitemapPluginInterface