WysiwygEditor.php

Same filename and directory in other branches
  1. 8.9.x core/modules/quickedit/tests/modules/src/Plugin/InPlaceEditor/WysiwygEditor.php

Namespace

Drupal\quickedit_test\Plugin\InPlaceEditor

File

core/modules/quickedit/tests/modules/src/Plugin/InPlaceEditor/WysiwygEditor.php

View source
<?php

namespace Drupal\quickedit_test\Plugin\InPlaceEditor;

use Drupal\Core\Field\FieldItemListInterface;
use Drupal\quickedit\Plugin\InPlaceEditorBase;

/**
 * Defines the 'wysiwyg' in-place editor.
 *
 * @InPlaceEditor(
 *   id = "wysiwyg",
 * )
 */
class WysiwygEditor extends InPlaceEditorBase {
    
    /**
     * {@inheritdoc}
     */
    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';
    }
    
    /**
     * {@inheritdoc}
     */
    public function getMetadata(FieldItemListInterface $items) {
        $metadata['format'] = $items[0]->format;
        return $metadata;
    }
    
    /**
     * {@inheritdoc}
     */
    public function getAttachments() {
        return [
            'library' => [
                'quickedit_test/not-existing-wysiwyg',
            ],
        ];
    }

}

Classes

Title Deprecated Summary
WysiwygEditor Defines the 'wysiwyg' in-place editor.

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