public function TelephoneItem::getPropertyDefinitions

Implements ComplexDataInterface::getPropertyDefinitions().

Overrides Map::getPropertyDefinitions

File

drupal/core/modules/telephone/lib/Drupal/telephone/Type/TelephoneItem.php, line 29
Contains \Drupal\telephone\Type\TelephoneItem.

Class

TelephoneItem
Defines the 'telephone_field' entity field items.

Namespace

Drupal\telephone\Type

Code

public function getPropertyDefinitions() {
  if (!isset(static::$propertyDefinitions)) {
    static::$propertyDefinitions['value'] = array(
      'type' => 'string',
      'label' => t('Telephone number'),
    );
  }
  return static::$propertyDefinitions;
}