You are here

interface XmlSitemapLinkStorageInterface in XML sitemap 2.x

Same name and namespace in other branches
  1. 8 src/XmlSitemapLinkStorageInterface.php \Drupal\xmlsitemap\XmlSitemapLinkStorageInterface

Provides an interface defining a XmlSitemapLinkStorage service.

Hierarchy

Expanded class hierarchy of XmlSitemapLinkStorageInterface

All classes that implement XmlSitemapLinkStorageInterface

4 files declare their use of XmlSitemapLinkStorageInterface
XmlSitemapCustomAddForm.php in xmlsitemap_custom/src/Form/XmlSitemapCustomAddForm.php
XmlSitemapCustomDeleteForm.php in xmlsitemap_custom/src/Form/XmlSitemapCustomDeleteForm.php
XmlSitemapCustomEditForm.php in xmlsitemap_custom/src/Form/XmlSitemapCustomEditForm.php
XmlSitemapSettingsForm.php in src/Form/XmlSitemapSettingsForm.php

File

src/XmlSitemapLinkStorageInterface.php, line 10

Namespace

Drupal\xmlsitemap
View source
interface XmlSitemapLinkStorageInterface {

  /**
   * Create a sitemap link from an entity.
   *
   * The link will be saved as $entity->xmlsitemap.
   *
   * @param \Drupal\Core\Entity\EntityInterface $entity
   *   The entity whose sitemap link will be created.
   */
  public function create(EntityInterface $entity);

  /**
   * Saves or updates a sitemap link.
   *
   * @param array $link
   *   An array with a sitemap link.
   */
  public function save(array $link);

  /**
   * Check if there is sitemap link is changed from the existing data.
   *
   * @param array $link
   *   An array of the sitemap link.
   * @param array $original_link
   *   An optional array of the existing data. This should only contain the
   *   fields necessary for comparison. If not provided the existing data will
   *   be loaded from the database.
   * @param bool $flag
   *   An optional boolean that if TRUE, will set the regenerate needed flag if
   *   there is a match. Defaults to FALSE.
   *
   * @return bool
   *   TRUE if the link is changed, or FALSE otherwise.
   */
  public function checkChangedLink(array $link, array $original_link = NULL, $flag = FALSE);

  /**
   * Check if there is a visible sitemap link given a certain set of conditions.
   *
   * @param array $conditions
   *   An array of values to match keyed by field.
   * @param array $updates
   *   Updates to be made.
   * @param bool $flag
   *   An optional boolean that if TRUE, will set the regenerate needed flag if
   *   there is a match. Defaults to FALSE.
   *
   * @return bool
   *   TRUE if there is a visible link, or FALSE otherwise.
   */
  public function checkChangedLinks(array $conditions = [], array $updates = [], $flag = FALSE);

  /**
   * Delete a specific sitemap link from the database.
   *
   * If a visible sitemap link was deleted, this will automatically set the
   * regenerate needed flag.
   *
   * @param string $entity_type
   *   A string with the entity type.
   * @param string $entity_id
   *   Entity ID to be deleted.
   * @param string $langcode
   *   (optional) The language code for the link that should be deleted.
   *   If omitted, links for that entity will be removed in all languages.
   *
   * @return int
   *   The number of links that were deleted.
   */
  public function delete($entity_type, $entity_id, $langcode = NULL);

  /**
   * Delete multiple sitemap links from the database.
   *
   * If visible sitemap links were deleted, this will automatically set the
   * regenerate needed flag.
   *
   * @param array $conditions
   *   An array of conditions on the {xmlsitemap} table in the form
   *   'field' => $value.
   *
   * @return int
   *   The number of links that were deleted.
   */
  public function deleteMultiple(array $conditions);

  /**
   * Perform a mass update of sitemap data.
   *
   * If visible links are updated, this will automatically set the regenerate
   * needed flag to TRUE.
   *
   * @param array $updates
   *   An array of values to update fields to, keyed by field name.
   * @param array $conditions
   *   An array of values to match keyed by field.
   * @param bool $check_flag
   *   An bool with check flag.
   *
   * @return int
   *   The number of links that were updated.
   */
  public function updateMultiple(array $updates = [], array $conditions = [], $check_flag = TRUE);

  /**
   * Load a specific sitemap link from the database.
   *
   * @param string $entity_type
   *   A string with the entity type id.
   * @param string $entity_id
   *   Entity ID.
   *
   * @return array
   *   A sitemap link (array) or FALSE if the conditions were not found.
   */
  public function load($entity_type, $entity_id);

  /**
   * Load sitemap links from the database.
   *
   * @param array $conditions
   *   An array of conditions on the {xmlsitemap} table in the form
   *   'field' => $value.
   *
   * @return array
   *   An array of sitemap link arrays.
   */
  public function loadMultiple(array $conditions = []);

}

Members

Namesort descending Modifiers Type Description Overrides
XmlSitemapLinkStorageInterface::checkChangedLink public function Check if there is sitemap link is changed from the existing data. 1
XmlSitemapLinkStorageInterface::checkChangedLinks public function Check if there is a visible sitemap link given a certain set of conditions. 1
XmlSitemapLinkStorageInterface::create public function Create a sitemap link from an entity. 1
XmlSitemapLinkStorageInterface::delete public function Delete a specific sitemap link from the database. 1
XmlSitemapLinkStorageInterface::deleteMultiple public function Delete multiple sitemap links from the database. 1
XmlSitemapLinkStorageInterface::load public function Load a specific sitemap link from the database. 1
XmlSitemapLinkStorageInterface::loadMultiple public function Load sitemap links from the database. 1
XmlSitemapLinkStorageInterface::save public function Saves or updates a sitemap link. 1
XmlSitemapLinkStorageInterface::updateMultiple public function Perform a mass update of sitemap data. 1