You are here

public function PlainTextEditor::isCompatible in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/quickedit/src/Plugin/InPlaceEditor/PlainTextEditor.php \Drupal\quickedit\Plugin\InPlaceEditor\PlainTextEditor::isCompatible()
  2. 9 core/modules/quickedit/src/Plugin/InPlaceEditor/PlainTextEditor.php \Drupal\quickedit\Plugin\InPlaceEditor\PlainTextEditor::isCompatible()

File

core/modules/quickedit/src/Plugin/InPlaceEditor/PlainTextEditor.php, line 20

Class

PlainTextEditor
Defines the plain text in-place editor.

Namespace

Drupal\quickedit\Plugin\InPlaceEditor

Code

public function isCompatible(FieldItemListInterface $items) {
  $field_definition = $items
    ->getFieldDefinition();

  // This editor is incompatible with multivalued fields.
  return $field_definition
    ->getFieldStorageDefinition()
    ->getCardinality() == 1;
}