LingotekConfigMetadataInterface.php in Lingotek Translation 3.3.x
Same filename and directory in other branches
- 8 src/LingotekConfigMetadataInterface.php
- 8.2 src/LingotekConfigMetadataInterface.php
- 4.0.x src/LingotekConfigMetadataInterface.php
- 3.0.x src/LingotekConfigMetadataInterface.php
- 3.1.x src/LingotekConfigMetadataInterface.php
- 3.2.x src/LingotekConfigMetadataInterface.php
- 3.4.x src/LingotekConfigMetadataInterface.php
- 3.5.x src/LingotekConfigMetadataInterface.php
- 3.6.x src/LingotekConfigMetadataInterface.php
- 3.7.x src/LingotekConfigMetadataInterface.php
- 3.8.x src/LingotekConfigMetadataInterface.php
Namespace
Drupal\lingotekFile
src/LingotekConfigMetadataInterface.phpView source
<?php
namespace Drupal\lingotek;
use Drupal\Core\Config\Entity\ConfigEntityInterface;
interface LingotekConfigMetadataInterface extends ConfigEntityInterface {
/**
* Gets the document id.
*/
public function getDocumentId();
/**
* Sets the document id.
*
* @param string $document_id
* The document id.
*
* @return $this
*/
public function setDocumentId($document_id);
/**
* Gets the source status.
*/
public function getSourceStatus();
/**
* Sets the source status.
*
* @param array $source_status
* The source status, as an associative array langcode => status_code.
*
* @return $this
*/
public function setSourceStatus(array $source_status);
/**
* Gets the target status.
*/
public function getTargetStatus();
/**
* Sets the target status.
*
* @param array $target_status
* The target status, as an associative array langcode => status_code.
*
* @return $this
*/
public function setTargetStatus(array $target_status);
/**
* Gets the profile of the document.
*/
public function getProfile();
/**
* Sets the profile of the document.
*
* @param string $profile
* The profile of the document.
*
* @return $this
*/
public function setProfile($profile);
/**
* Gets the hash of the uploaded document.
*/
public function getHash();
/**
* Sets the hash of the uploaded document.
*
* @param string $hash
* The hash of the uploaded document.
*
* @return $this
*/
public function setHash($hash);
/**
* Gets the job ID of the uploaded document.
*/
public function getJobId();
/**
* Sets the job ID of the uploaded document.
*
* @param string $job_id
* The job ID of the uploaded document.
*
* @return $this
*/
public function setJobId($job_id);
}
Interfaces
Name | Description |
---|---|
LingotekConfigMetadataInterface |