ComputedTestCacheableStringItem.php
Same filename in other branches
Namespace
Drupal\entity_test\Plugin\Field\FieldTypeFile
-
core/
modules/ system/ tests/ modules/ entity_test/ src/ Plugin/ Field/ FieldType/ ComputedTestCacheableStringItem.php
View source
<?php
namespace Drupal\entity_test\Plugin\Field\FieldType;
use Drupal\Core\Field\FieldStorageDefinitionInterface;
use Drupal\Core\Field\Plugin\Field\FieldType\StringItem;
use Drupal\Core\StringTranslation\TranslatableMarkup;
use Drupal\Core\TypedData\DataDefinition;
/**
* Defines the 'string' entity field type with cacheability metadata.
*
* @FieldType(
* id = "computed_test_cacheable_string_item",
* label = @Translation("Test Text (plain string with cacheability)"),
* description = @Translation("A test field containing a plain string value and cacheability metadata."),
* category = @Translation("Text"),
* no_ui = TRUE,
* default_widget = "string_textfield",
* default_formatter = "string"
* )
*/
class ComputedTestCacheableStringItem extends StringItem {
/**
* {@inheritdoc}
*/
public static function propertyDefinitions(FieldStorageDefinitionInterface $field_definition) {
$properties['value'] = DataDefinition::create('computed_test_cacheable_string')->setLabel(new TranslatableMarkup('Text value'))
->setSetting('case_sensitive', $field_definition->getSetting('case_sensitive'))
->setRequired(TRUE);
return $properties;
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
ComputedTestCacheableStringItem | Defines the 'string' entity field type with cacheability metadata. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.