PoItem::setFromArray

public PoItem::setFromArray(array $values = array())

Create the PoItem from a structured array.

Parameters

array $values:

File

core/lib/Drupal/Component/Gettext/PoItem.php, line 174

Class

PoItem
PoItem handles one translation.

Namespace

Drupal\Component\Gettext

Code

public function setFromArray(array $values = array()) {
  if (isset($values['context'])) {
    $this->setContext($values['context']);
  }
  if (isset($values['source'])) {
    $this->setSource($values['source']);
  }
  if (isset($values['translation'])) {
    $this->setTranslation($values['translation']);
  }
  if (isset($values['comment'])) {
    $this->setComment($values['comment']);
  }
  if (isset($this->_source) && 
    strpos($this->_source, LOCALE_PLURAL_DELIMITER) !== FALSE) {
    $this->setSource(explode(LOCALE_PLURAL_DELIMITER, $this->_source));
    $this->setTranslation(explode(LOCALE_PLURAL_DELIMITER, $this->_translation));
    $this->setPlural(count($this->_source) > 1);
  }
}
doc_Drupal
2016-10-29 09:34:35
Comments
Leave a Comment

Please login to continue.