Mercurial > hg > cmmr2012-drupal-site
diff core/modules/quickedit/src/EditorSelectorInterface.php @ 0:c75dbcec494b
Initial commit from drush-created site
author | Chris Cannam |
---|---|
date | Thu, 05 Jul 2018 14:24:15 +0000 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/core/modules/quickedit/src/EditorSelectorInterface.php Thu Jul 05 14:24:15 2018 +0000 @@ -0,0 +1,38 @@ +<?php + +namespace Drupal\quickedit; + +use Drupal\Core\Field\FieldItemListInterface; + +/** + * Interface for selecting an in-place editor (an Editor plugin) for a field. + */ +interface EditorSelectorInterface { + + /** + * Returns the in-place editor (an InPlaceEditor plugin) to use for a field. + * + * @param string $formatter_type + * The field's formatter type name. + * @param \Drupal\Core\Field\FieldItemListInterface $items + * The field values to be in-place edited. + * + * @return string|null + * The editor to use, or NULL to not enable in-place editing. + */ + public function getEditor($formatter_type, FieldItemListInterface $items); + + /** + * Returns the attachments for all editors. + * + * @param array $editor_ids + * A list of all in-place editor IDs that should be attached. + * + * @return array + * An array of attachments, for use with #attached. + * + * @see \Drupal\Core\Render\AttachmentsResponseProcessorInterface::processAttachments() + */ + public function getEditorAttachments(array $editor_ids); + +}