Remove the support for the Quick Edit module

Created on 20 March 2024, 8 months ago
Updated 8 April 2024, 8 months ago

The Quick Edit module has been deprecated in Drupal 9.5 and removed from Drupal 10.0. The support for that module should be removed.

The only change required for this project is changing the annotation for its formatter.

/**
 * @FieldFormatter(
 *   id = "short_scale_formatter",
 *   module = "short_scale_formatter",
 *   label = @Translation("Short scale formatter"),
 *   description = @Translation("Format a number shortening it to thousands (K) or millions (M)."),
 *   field_types = {
 *     "integer",
 *     "decimal",
 *     "float"
 *   },
 *   quickedit = {
 *     "editor" = "disabled"
 *   },
 * )
 */

Without support for the Quick Edit module, that annotation becomes:

/**
 * @FieldFormatter(
 *   id = "short_scale_formatter",
 *   module = "short_scale_formatter",
 *   label = @Translation("Short scale formatter"),
 *   description = @Translation("Format a number shortening it to thousands (K) or millions (M)."),
 *   field_types = {
 *     "integer",
 *     "decimal",
 *     "float"
 *   },
 * )
 */
📌 Task
Status

Fixed

Version

1.0

Component

Code

Created by

🇮🇹Italy apaderno Brescia, 🇮🇹

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

Production build 0.71.5 2024