public function FormEditor::getAttachments in Drupal 9
Same name and namespace in other branches
- 8 core/modules/quickedit/src/Plugin/InPlaceEditor/FormEditor.php \Drupal\quickedit\Plugin\InPlaceEditor\FormEditor::getAttachments()
Returns the attachments for this editor.
Return value
array An array of attachments, for use with #attached.
Overrides InPlaceEditorInterface::getAttachments
See also
\Drupal\Core\Render\AttachmentsResponseProcessorInterface::processAttachments()
File
- core/
modules/ quickedit/ src/ Plugin/ InPlaceEditor/ FormEditor.php, line 27
Class
- FormEditor
- Defines the form in-place editor.
Namespace
Drupal\quickedit\Plugin\InPlaceEditorCode
public function getAttachments() {
return [
'library' => [
'quickedit/quickedit.inPlaceEditor.form',
],
];
}