function Editor::getMetadata
Generates metadata that is needed specifically for this editor.
Will only be called by \Drupal\quickedit\MetadataGeneratorInterface::generate() when the passed in field & item values will use this editor.
Parameters
\Drupal\Core\Field\FieldItemListInterface $items: The field values to be in-place edited.
Return value
array A keyed array with metadata. Each key should be prefixed with the plugin ID of the editor.
Overrides InPlaceEditorInterface::getMetadata
File
- 
              core/
modules/ quickedit/ src/ Plugin/ InPlaceEditor/ Editor.php, line 47  
Class
- Editor
 - Defines the formatted text in-place editor.
 
Namespace
Drupal\quickedit\Plugin\InPlaceEditorCode
public function getMetadata(FieldItemListInterface $items) {
  $format_id = $items[0]->format;
  $metadata['format'] = $format_id;
  $metadata['formatHasTransformations'] = $this->textFormatHasTransformationFilters($format_id);
  return $metadata;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.