class LanguageItem

Defines the 'language_field' entity field item.

Hierarchy

Expanded class hierarchy of LanguageItem

File

drupal/core/lib/Drupal/Core/Entity/Field/Type/LanguageItem.php, line 16
Definition of Drupal\Core\Entity\Field\Type\LanguageItem.

Namespace

Drupal\Core\Entity\Field\Type
View source
class LanguageItem extends FieldItemBase {

  /**
   * Array of property definitions of contained properties.
   *
   * @see PropertyEntityReferenceItem::getPropertyDefinitions()
   *
   * @var array
   */
  static $propertyDefinitions;

  /**
   * Implements ComplexDataInterface::getPropertyDefinitions().
   */
  public function getPropertyDefinitions() {
    if (!isset(self::$propertyDefinitions)) {
      self::$propertyDefinitions['value'] = array(
        'type' => 'string',
        'label' => t('Language code'),
      );
      self::$propertyDefinitions['language'] = array(
        'type' => 'language',
        'label' => t('Language object'),
        // The language object is retrieved via the language code.
        'computed' => TRUE,
        'read-only' => FALSE,
        'settings' => array(
          'langcode source' => 'value',
        ),
      );
    }
    return self::$propertyDefinitions;
  }

  /**
   * Overrides FieldItemBase::setValue().
   */
  public function setValue($values) {

    // Treat the values as property value of the object property, if no array
    // is given.
    if (!is_array($values)) {
      $values = array(
        'language' => $values,
      );
    }

    // Language is computed out of the langcode, so we only need to update the
    // langcode. Only set the language property if no langcode is given.
    if (!empty($values['value'])) {
      $this->properties['value']
        ->setValue($values['value']);
    }
    else {
      $this->properties['language']
        ->setValue(isset($values['language']) ? $values['language'] : NULL);
    }
    unset($values['language'], $values['value']);
    if ($values) {
      throw new InvalidArgumentException('Property ' . key($values) . ' is unknown.');
    }
  }

}

Members

Namesort descending Modifiers Type Description Overrides
FieldItemBase::$name protected property The item delta or name.
FieldItemBase::$parent protected property The parent entity field.
FieldItemBase::$properties protected property The array of properties.
FieldItemBase::get public function Implements ComplexDataInterface::get(). Overrides ComplexDataInterface::get
FieldItemBase::getIterator public function Implements IteratorAggregate::getIterator().
FieldItemBase::getName public function Implements ContextAwareInterface::getName(). Overrides ContextAwareInterface::getName
FieldItemBase::getParent public function Implements ContextAwareInterface::getParent(). Overrides ContextAwareInterface::getParent
FieldItemBase::getProperties public function Implements ComplexDataInterface::getProperties(). Overrides ComplexDataInterface::getProperties
FieldItemBase::getPropertyDefinition public function Implements ComplexDataInterface::getPropertyDefinition(). Overrides ComplexDataInterface::getPropertyDefinition
FieldItemBase::getPropertyValues public function Implements ComplexDataInterface::getPropertyValues(). Overrides ComplexDataInterface::getPropertyValues
FieldItemBase::getString public function Implements TypedDataInterface::getString(). Overrides TypedData::getString
FieldItemBase::getValue public function Implements TypedDataInterface::getValue(). Overrides TypedData::getValue
FieldItemBase::isEmpty public function Implements ComplexDataInterface::isEmpty(). Overrides ComplexDataInterface::isEmpty
FieldItemBase::set public function Implements ComplexDataInterface::set(). Overrides ComplexDataInterface::set
FieldItemBase::setName public function Implements ContextAwareInterface::setName(). Overrides ContextAwareInterface::setName
FieldItemBase::setParent public function Implements ContextAwareInterface::setParent(). Overrides ContextAwareInterface::setParent
FieldItemBase::setPropertyValues public function Implements ComplexDataInterface::setPropertyValues(). Overrides ComplexDataInterface::setPropertyValues
FieldItemBase::validate public function Implements TypedDataInterface::validate(). Overrides TypedDataInterface::validate
FieldItemBase::__clone public function Implements a deep clone.
FieldItemBase::__construct public function Implements TypedDataInterface::__construct(). Overrides TypedData::__construct
FieldItemBase::__get public function Implements FieldItemInterface::__get(). Overrides FieldItemInterface::__get
FieldItemBase::__isset public function Implements FieldItemInterface::__isset(). Overrides FieldItemInterface::__isset
FieldItemBase::__set public function Implements FieldItemInterface::__set(). Overrides FieldItemInterface::__set
FieldItemBase::__unset public function Implements FieldItemInterface::__unset(). Overrides FieldItemInterface::__unset
LanguageItem::$propertyDefinitions static property Array of property definitions of contained properties.
LanguageItem::getPropertyDefinitions public function Implements ComplexDataInterface::getPropertyDefinitions(). Overrides ComplexDataInterface::getPropertyDefinitions
LanguageItem::setValue public function Overrides FieldItemBase::setValue(). Overrides FieldItemBase::setValue
TypedData::$definition protected property The data definition.
TypedData::getDefinition public function Implements TypedDataInterface::getDefinition(). Overrides TypedDataInterface::getDefinition
TypedData::getType public function Implements TypedDataInterface::getType(). Overrides TypedDataInterface::getType