class SitemapWriter in Simple XML sitemap 8.3
Same name and namespace in other branches
- 4.x src/Plugin/simple_sitemap/SitemapGenerator/SitemapWriter.php \Drupal\simple_sitemap\Plugin\simple_sitemap\SitemapGenerator\SitemapWriter
Class SitemapWriter @package Drupal\simple_sitemap\Plugin\simple_sitemap\SitemapGenerator
Hierarchy
- class \Drupal\simple_sitemap\Plugin\simple_sitemap\SitemapGenerator\SitemapWriter extends \Drupal\simple_sitemap\Plugin\simple_sitemap\SitemapGenerator\XMLWriter
Expanded class hierarchy of SitemapWriter
1 string reference to 'SitemapWriter'
1 service uses SitemapWriter
File
- src/
Plugin/ simple_sitemap/ SitemapGenerator/ SitemapWriter.php, line 11
Namespace
Drupal\simple_sitemap\Plugin\simple_sitemap\SitemapGeneratorView source
class SitemapWriter extends \XMLWriter {
const GENERATED_BY = 'Generated by the Simple XML Sitemap Drupal module: https://drupal.org/project/simple_sitemap.';
const XML_VERSION = '1.0';
const ENCODING = 'UTF-8';
/**
* @var \Drupal\Core\Routing\RouteProvider
*/
protected $routeProvider;
public function __construct(RouteProviderInterface $route_provider) {
$this->routeProvider = $route_provider;
}
/**
* Adds the XML stylesheet to the XML page.
*/
public function writeXsl() {
// Using this instead of URL::fromRoute() to avoid creating a path with the
// subdomain from which creation was triggered which might lead to a CORS
// problem. See https://www.drupal.org/project/simple_sitemap/issues/3131672.
$xsl_url = $this->routeProvider
->getRouteByName('simple_sitemap.sitemap_xsl')
->getPath();
// The above workaround however generates an incorrect path when the site is
// located in a subdirectory, which is why the following logic adds the base
// path of the installation.
// See https://www.drupal.org/project/simple_sitemap/issues/3154494.
// All of this seems to be an over engineered way of writing 'sitemap.xsl',
// but may be useful in cases where another module alters the routes.
$xsl_url = base_path() . ltrim($xsl_url, '/');
$this
->writePI('xml-stylesheet', 'type="text/xsl" href="' . $xsl_url . '"');
}
public function writeGeneratedBy() {
$this
->writeComment(self::GENERATED_BY);
}
public function startSitemapDocument() {
$this
->startDocument(self::XML_VERSION, self::ENCODING);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
SitemapWriter:: |
protected | property | ||
SitemapWriter:: |
constant | |||
SitemapWriter:: |
constant | |||
SitemapWriter:: |
public | function | ||
SitemapWriter:: |
public | function | ||
SitemapWriter:: |
public | function | Adds the XML stylesheet to the XML page. | |
SitemapWriter:: |
constant | |||
SitemapWriter:: |
public | function |