public function ListDataDefinition::setDataType

public ListDataDefinition::setDataType($type)

Sets the data type.

Parameters

string $type: The data type to set.

Return value

static The object itself for chaining.

Overrides DataDefinition::setDataType

File

core/lib/Drupal/Core/TypedData/ListDataDefinition.php, line 65

Class

ListDataDefinition
A typed data definition class for defining lists.

Namespace

Drupal\Core\TypedData

Code

public function setDataType($type) {
  if ($type != 'list') {
    throw new \LogicException('Lists must always be of data type "list".');
  }
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!TypedData!ListDataDefinition.php/function/ListDataDefinition::setDataType/8.1.x