You are here

SitemapGeneratorInterface.php in Simple XML sitemap 8.3

File

src/Plugin/simple_sitemap/SitemapGenerator/SitemapGeneratorInterface.php
View source
<?php

namespace Drupal\simple_sitemap\Plugin\simple_sitemap\SitemapGenerator;


/**
 * Interface SitemapGeneratorInterface
 * @package Drupal\simple_sitemap\Plugin\simple_sitemap\SitemapGenerator
 */
interface SitemapGeneratorInterface {
  public function setSitemapVariant($sitemap_variant);
  public function setSettings(array $settings);
  public function generate(array $links);
  public function generateIndex();
  public function publish();
  public function remove();
  public function getSitemapUrl($delta = NULL);

}

Interfaces

Namesort descending Description
SitemapGeneratorInterface Interface SitemapGeneratorInterface @package Drupal\simple_sitemap\Plugin\simple_sitemap\SitemapGenerator