You are here

simple_sitemap.api.php in Simple XML sitemap 8.3

Same filename and directory in other branches
  1. 8.2 simple_sitemap.api.php
  2. 4.x simple_sitemap.api.php

Hooks provided by the Simple XML Sitemap module.

File

simple_sitemap.api.php
View source
<?php

/**
 * @file
 * Hooks provided by the Simple XML Sitemap module.
 */

/**
 * @addtogroup hooks
 * @{
 */

/**
 * Alter the generated link data before the sitemap is saved.
 * This hook gets invoked for every sitemap chunk generated.
 *
 * @param array &$links
 *   Array containing multilingual links generated for each path to be indexed
 *
 * @param string $sitemap_variant
 */
function hook_simple_sitemap_links_alter(array &$links, $sitemap_variant) {

  // Remove German URL for a certain path in the hreflang sitemap.
  foreach ($links as $key => $link) {
    if ($link['meta']['path'] === 'node/1') {

      // Remove 'loc' URL if it points to a german site.
      if ($link['langcode'] === 'de') {
        unset($links[$key]);
      }
      else {
        unset($links[$key]['alternate_urls']['de']);
      }
    }
  }
}

/**
 * Add arbitrary links to the sitemap.
 *
 * @param array &$arbitrary_links
 * @param string $sitemap_variant
 */
function hook_simple_sitemap_arbitrary_links_alter(array &$arbitrary_links, $sitemap_variant) {

  // Add an arbitrary link to all sitemap variants.
  $arbitrary_links[] = [
    'url' => 'http://some-arbitrary-link/',
    'priority' => '0.5',
    // An ISO8601 formatted date.
    'lastmod' => '2012-10-12T17:40:30+02:00',
    'changefreq' => 'weekly',
    'images' => [
      [
        'path' => 'http://path-to-image.png',
      ],
    ],
    // Add alternate URLs for every language of a multilingual site.
    // Not necessary for monolingual sites.
    'alternate_urls' => [
      'en' => 'http://this-is-your-life.net/de/tyler',
      'de' => 'http://this-is-your-life.net/en/tyler',
    ],
  ];

  // Add an arbitrary link to the 'fight_club' sitemap variant only.
  switch ($sitemap_variant) {
    case 'fight_club':
      $arbitrary_links[] = [
        'url' => 'http://this-is-your-life.net/tyler',
      ];
      break;
  }
}

/**
 * Alters the sitemap attributes shortly before XML document generation.
 * Attributes can be added, changed and removed.
 *
 * @param array &$attributes
 * @param string $sitemap_variant
 */
function hook_simple_sitemap_attributes_alter(array &$attributes, $sitemap_variant) {

  // Remove the xhtml attribute e.g. if no xhtml sitemap elements are present.
  unset($attributes['xmlns:xhtml']);
}

/**
 * Alters attributes of the sitemap index shortly before XML document generation.
 * Attributes can be added, changed and removed.
 *
 * @param array &$index_attributes
 * @param string $sitemap_variant
 */
function hook_simple_sitemap_index_attributes_alter(array &$index_attributes, $sitemap_variant) {

  // Add some attribute to the sitemap index.
  $index_attributes['name'] = 'value';
}

/**
 * Alter properties of and remove URL generator plugins.
 *
 * @param array $url_generators
 */
function hook_simple_sitemap_url_generators_alter(array &$url_generators) {

  // Remove the entity generator.
  unset($url_generators['entity']);
}

/**
 * Alter properties of and remove sitemap generator plugins.
 *
 * @param array $sitemap_generators
 */
function hook_simple_sitemap_sitemap_generators_alter(array &$sitemap_generators) {

  // Remove the default generator.
  unset($sitemap_generators['default']);
}

/**
 * Alter properties of and remove sitemap type plugins.
 *
 * @param array $sitemap_types
 */
function hook_simple_sitemap_sitemap_types_alter(array &$sitemap_types) {
}

/**
 * @} End of "addtogroup hooks".
 */

Functions

Namesort descending Description
hook_simple_sitemap_arbitrary_links_alter Add arbitrary links to the sitemap.
hook_simple_sitemap_attributes_alter Alters the sitemap attributes shortly before XML document generation. Attributes can be added, changed and removed.
hook_simple_sitemap_index_attributes_alter Alters attributes of the sitemap index shortly before XML document generation. Attributes can be added, changed and removed.
hook_simple_sitemap_links_alter Alter the generated link data before the sitemap is saved. This hook gets invoked for every sitemap chunk generated.
hook_simple_sitemap_sitemap_generators_alter Alter properties of and remove sitemap generator plugins.
hook_simple_sitemap_sitemap_types_alter Alter properties of and remove sitemap type plugins.
hook_simple_sitemap_url_generators_alter Alter properties of and remove URL generator plugins.