From ad5810ed20ab5f94ba42a620df958fddf9ee50ab Mon Sep 17 00:00:00 2001 From: webchick <webchick@24967.no-reply.drupal.org> Date: Sat, 5 Oct 2013 16:10:27 -0700 Subject: [PATCH] Issue #2047997 follow-up by asimmonds: Remove FIELD_BEHAVIOR_* constants. --- core/modules/field/field.module | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/core/modules/field/field.module b/core/modules/field/field.module index 099fd5a371ff..84fd0419690d 100644 --- a/core/modules/field/field.module +++ b/core/modules/field/field.module @@ -80,32 +80,6 @@ */ const FIELD_CARDINALITY_UNLIMITED = -1; -/** - * Value for field API indicating a widget doesn't accept default values. - * - * @see hook_field_widget_info() - */ -const FIELD_BEHAVIOR_NONE = 0x0001; - -/** - * Value for field API concerning widget default and multiple value settings. - * - * @see hook_field_widget_info() - * - * When used in a widget default context, indicates the widget accepts default - * values. When used in a multiple value context for a widget that allows the - * input of one single field value, indicates that the widget will be repeated - * for each value input. - */ -const FIELD_BEHAVIOR_DEFAULT = 0x0002; - -/** - * Value for field API indicating a widget can receive several field values. - * - * @see hook_field_widget_info() - */ -const FIELD_BEHAVIOR_CUSTOM = 0x0004; - /** * Implements hook_help(). */ -- GitLab