StringData.php
Same filename in other branches
Namespace
Drupal\Core\TypedData\Plugin\DataTypeFile
-
core/
lib/ Drupal/ Core/ TypedData/ Plugin/ DataType/ StringData.php
View source
<?php
namespace Drupal\Core\TypedData\Plugin\DataType;
use Drupal\Core\TypedData\PrimitiveBase;
use Drupal\Core\TypedData\Type\StringInterface;
/**
* The string data type.
*
* The plain value of a string is a regular PHP string. For setting the value
* any PHP variable that casts to a string may be passed.
*
* @DataType(
* id = "string",
* label = @Translation("String")
* )
*/
class StringData extends PrimitiveBase implements StringInterface {
/**
* {@inheritdoc}
*/
public function getCastedValue() {
return $this->getString();
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
StringData | The string data type. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.