Unverified Commit 36aedf08 authored by Lauri Timmanee's avatar Lauri Timmanee
Browse files

Issue #3270434 by Spokje, dww, longwave, catch, smustgrave: Mark Quick Edit deprecated

(cherry picked from commit 63792002)
parent c5b5b279
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -14,9 +14,6 @@
 *   field_types = {
 *     "string_long",
 *     "email"
 *   },
 *   quickedit = {
 *     "editor" = "plain_text"
 *   }
 * )
 */
+0 −3
Original line number Diff line number Diff line
@@ -20,9 +20,6 @@
 *   field_types = {
 *     "string",
 *     "uri",
 *   },
 *   quickedit = {
 *     "editor" = "plain_text"
 *   }
 * )
 */
+2 −0
Original line number Diff line number Diff line
name: Quick Edit
type: module
description: 'In-place content editing.'
lifecycle: deprecated
lifecycle_link: https://www.drupal.org/node/3223395#s-quick-edit
package: Core
version: VERSION
dependencies:
+3 −0
Original line number Diff line number Diff line
@@ -125,6 +125,9 @@ function quickedit_field_formatter_info_alter(&$info) {
    }
  }

  $info['basic_string']['quickedit'] = ['editor' => 'plain_text'];
  $info['string']['quickedit'] = ['editor' => 'plain_text'];

  // Update \Drupal\text\Plugin\Field\FieldFormatter\TextDefaultFormatter's
  // annotation to indicate that it supports the 'editor' in-place editor
  // provided by this module, if enabled.
+1 −0
Original line number Diff line number Diff line
@@ -11,6 +11,7 @@
 * Tests Quick Edit module integration endpoints.
 *
 * @group quickedit
 * @group legacy
 */
class EditorIntegrationLoadingTest extends BrowserTestBase {

Loading