Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
drupal
Commits
f5a65a8a
Commit
f5a65a8a
authored
10 months ago
by
Joshua Sedler
Browse files
Options
Downloads
Patches
Plain Diff
Add update hook
parent
7d9bbb4c
No related branches found
No related tags found
2 merge requests
!8282
Issue #2230909: Simple decimals fail to pass validation
,
!579
Issue #2230909: Simple decimals fail to pass validation
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
core/modules/field/field.install
+37
-0
37 additions, 0 deletions
core/modules/field/field.install
with
37 additions
and
0 deletions
core/modules/field/field.install
+
37
−
0
View file @
f5a65a8a
...
@@ -11,3 +11,40 @@
...
@@ -11,3 +11,40 @@
function
field_update_last_removed
()
{
function
field_update_last_removed
()
{
return
8500
;
return
8500
;
}
}
/**
* Update existing DecimalItem fields to match the new maximum value.
*/
function
field_update_8001
()
{
// Load all decimal field storage entities:
$decimalFieldStorageEntities
=
\Drupal
::
entityTypeManager
()
->
getStorage
(
'field_storage_config'
)
->
loadByProperties
([
'type'
=>
'decimal'
,
]);
foreach
(
$decimalFieldStorageEntities
as
$decimalFieldStorageEntity
)
{
/** @var \Drupal\field\Entity\FieldStorageConfig $decimalFieldStorageEntity*/
$castedInitialPrecisionValue
=
(
int
)
$decimalFieldStorageEntity
->
getSetting
(
'precision'
);
// Adjust the precision value, if it is higher, than the allowed
// initial precision configuration option value:
$precisionValue
=
$decimalFieldStorageEntity
->
getSetting
(
'precision'
);
$newPrecisionMaxValue
=
$castedInitialPrecisionValue
<=
10
?
10
:
$castedInitialPrecisionValue
;
// Set the new precision value:
$newPrecisionValue
=
$precisionValue
>
$newPrecisionMaxValue
?
$newPrecisionMaxValue
:
$precisionValue
;
// Adjust the scale value, if it is higher, than the allowed
// initial precision configuration option value:
$scaleValue
=
$decimalFieldStorageEntity
->
getSetting
(
'scale'
);
// Set the new scale value:
$newScaleValue
=
$scaleValue
>
$castedInitialPrecisionValue
?
$castedInitialPrecisionValue
:
$scaleValue
;
// Set the new precision and scale values and save the entity:
$decimalFieldStorageEntity
->
setSetting
(
'precision'
,
$newPrecisionValue
);
$decimalFieldStorageEntity
->
setSetting
(
'scale'
,
$newScaleValue
);
$decimalFieldStorageEntity
->
save
();
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment