public function JobItem::getExistingLangCodes

Gets existing translation language codes of the job item source.

Return value

array Array of language codes.

Overrides JobItemInterface::getExistingLangCodes

File

src/Entity/JobItem.php, line 1014

Class

JobItem
Entity class for the tmgmt_job_item entity.

Namespace

Drupal\tmgmt\Entity

Code

public function getExistingLangCodes() {
  return $this
    ->getSourcePlugin()
    ->getExistingLangCodes($this);
}