function WysiwygEditor::isCompatible

File

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

Class

WysiwygEditor
Defines the 'wysiwyg' in-place editor.

Namespace

Drupal\quickedit_test\Plugin\InPlaceEditor

Code

public function isCompatible(FieldItemListInterface $items) {
  $field_definition = $items->getFieldDefinition();
  // This editor is incompatible with multivalued fields.
  if ($field_definition->getFieldStorageDefinition()
    ->getCardinality() != 1) {
    return FALSE;
  }
  // This editor is compatible with formatted ("rich") text fields; but only
  // if there is a currently active text format and that text format is the
  // 'full_html' text format.
  return $items[0]->format === 'full_html';
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.