You are here

public function FormEditor::getAttachments in Quick Edit 7

Implements QuickEditInPlaceEditorInterface::getAttachments().

Overrides QuickEditInPlaceEditorInterface::getAttachments

See also

Drupal 8's \Drupal\quickedit\Plugin\InPlaceEditor\FormEditor::isCompatible().

File

InPlaceEditors/formEditor.php, line 40

Class

FormEditor
Defines the form in-place editor.

Code

public function getAttachments() {
  return array(
    'library' => array(
      array(
        'quickedit',
        'quickedit.inPlaceEditor.form',
      ),
    ),
  );
}