You are here

interface LingotekTranslatableEntity in Lingotek Translation 7.3

Same name and namespace in other branches
  1. 7.7 lib/Drupal/lingotek/LingotekTranslatableEntity.php \LingotekTranslatableEntity
  2. 7.2 lib/Drupal/lingotek/LingotekTranslatableEntity.php \LingotekTranslatableEntity
  3. 7.4 lib/Drupal/lingotek/LingotekTranslatableEntity.php \LingotekTranslatableEntity
  4. 7.5 lib/Drupal/lingotek/LingotekTranslatableEntity.php \LingotekTranslatableEntity
  5. 7.6 lib/Drupal/lingotek/LingotekTranslatableEntity.php \LingotekTranslatableEntity

An interface for entities that are eligible for translation via the Lingotek platform.

Hierarchy

Expanded class hierarchy of LingotekTranslatableEntity

All classes that implement LingotekTranslatableEntity

File

lib/Drupal/lingotek/LingotekTranslatableEntity.php, line 11
Defines LingotekTranslatableEntity.

View source
interface LingotekTranslatableEntity {

  /**
   * Gets the contents of this item formatted as XML that can be sent to Lingotek.
   *
   * @return string
   *   The XML document representing the entity's translatable content.
   */
  public function documentLingotekXML();

  /**
   * Gets a Lingotek metadata value for this item.
   *
   * @param string $key
   *   The key whose value should be returned.
   *
   * @return string
   *   The value for the specified key, if it exists.
   */
  public function getMetadataValue($key);

  /**
   * Sets a Lingotek metadata value for this item.
   *
   * @param string $key
   *   The key for a name/value pair.
   * @param string $value
   *   The value for a name/value pair.
   */
  public function setMetadataValue($key, $value);

  /**
   * Updates the local content with data from a Lingotek Document.
   *
   * @return bool
   *   TRUE if the content updates succeeded, FALSE otherwise.
   */
  public function updateLocalContent();

  /**
   * Updates the local content of $target_code with data from a Lingotek Document
   *
   * @param string $lingotek_locale
   *   The code for the language that needs to be updated.
   * @return bool
   *   TRUE if the content updates succeeded, FALSE otherwise.
   */
  public function updateLocalContentByTarget($lingotek_locale);

  /**
   * Gets the Lingotek document ID for this entity.
   *
   * @return mixed
   *   The integer document ID if the entity is associated with a
   *   Lingotek document. FALSE otherwise.
   */
  public function lingotekDocumentId();

}

Members

Namesort descending Modifiers Type Description Overrides
LingotekTranslatableEntity::documentLingotekXML public function Gets the contents of this item formatted as XML that can be sent to Lingotek. 3
LingotekTranslatableEntity::getMetadataValue public function Gets a Lingotek metadata value for this item. 3
LingotekTranslatableEntity::lingotekDocumentId public function Gets the Lingotek document ID for this entity. 3
LingotekTranslatableEntity::setMetadataValue public function Sets a Lingotek metadata value for this item. 3
LingotekTranslatableEntity::updateLocalContent public function Updates the local content with data from a Lingotek Document. 3
LingotekTranslatableEntity::updateLocalContentByTarget public function Updates the local content of $target_code with data from a Lingotek Document 3