TranslationString::__construct

public TranslationString::__construct($values = array())

Constructs a new locale string object.

Parameters

object|array $values: Object or array with initial values.

Overrides StringBase::__construct

File

core/modules/locale/src/TranslationString.php, line 45

Class

TranslationString
Defines the locale translation string object.

Namespace

Drupal\locale

Code

public function __construct($values = array()) {
  parent::__construct($values);
  if (!isset($this->isNew)) {
    // We mark the string as not new if it is a complete translation.
    // This will work when loading from database, otherwise the storage
    // controller that creates the string object must handle it.
    $this->isNew = !$this->isTranslation();
  }
}
doc_Drupal
2016-10-29 09:49:27
Comments
Leave a Comment

Please login to continue.