From 3454b3440bbe09f9f3708107fdcf8c663dcd9678 Mon Sep 17 00:00:00 2001 From: Alex Pott <alex.a.pott@googlemail.com> Date: Mon, 29 Jul 2013 15:02:23 +0200 Subject: [PATCH] Issue #2015691 follow-up by amateescu: Convert field type to typed data plugin for number module. --- .../lib/Drupal/number/Plugin/field/field_type/DecimalItem.php | 1 - .../lib/Drupal/number/Plugin/field/field_type/FloatItem.php | 1 - .../lib/Drupal/number/Plugin/field/field_type/IntegerItem.php | 1 - 3 files changed, 3 deletions(-) diff --git a/core/modules/number/lib/Drupal/number/Plugin/field/field_type/DecimalItem.php b/core/modules/number/lib/Drupal/number/Plugin/field/field_type/DecimalItem.php index e7ec27d40b76..c7bd78a41e28 100644 --- a/core/modules/number/lib/Drupal/number/Plugin/field/field_type/DecimalItem.php +++ b/core/modules/number/lib/Drupal/number/Plugin/field/field_type/DecimalItem.php @@ -17,7 +17,6 @@ * * @FieldType( * id = "number_decimal", - * module = "number", * label = @Translation("Decimal"), * description = @Translation("This field stores a number in the database in a fixed decimal format."), * settings = { diff --git a/core/modules/number/lib/Drupal/number/Plugin/field/field_type/FloatItem.php b/core/modules/number/lib/Drupal/number/Plugin/field/field_type/FloatItem.php index 0cd5e6eeb1ab..98bd97cf1ca2 100644 --- a/core/modules/number/lib/Drupal/number/Plugin/field/field_type/FloatItem.php +++ b/core/modules/number/lib/Drupal/number/Plugin/field/field_type/FloatItem.php @@ -16,7 +16,6 @@ * * @FieldType( * id = "number_float", - * module = "number", * label = @Translation("Float"), * description = @Translation("This field stores a number in the database in a floating point format."), * instance_settings = { diff --git a/core/modules/number/lib/Drupal/number/Plugin/field/field_type/IntegerItem.php b/core/modules/number/lib/Drupal/number/Plugin/field/field_type/IntegerItem.php index 29f0e34b2681..3c43df601d0a 100644 --- a/core/modules/number/lib/Drupal/number/Plugin/field/field_type/IntegerItem.php +++ b/core/modules/number/lib/Drupal/number/Plugin/field/field_type/IntegerItem.php @@ -16,7 +16,6 @@ * * @FieldType( * id = "number_integer", - * module = "number", * label = @Translation("Integer"), * description = @Translation("This field stores a number in the database as an integer."), * instance_settings = { -- GitLab