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
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
drupal
Commits
fee42cb6
Commit
fee42cb6
authored
Jul 3, 2014
by
catch
Browse files
Options
Downloads
Patches
Plain Diff
Issue
#2247095
by yched, xjm, alexpott: Optimize loading of deleted fields.
parent
6e70062d
Branches
Branches containing commit
Tags
Tags containing commit
2 merge requests
!7452
Issue #1797438. HTML5 validation is preventing form submit and not fully...
,
!789
Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
core/modules/field/src/FieldConfigStorage.php
+16
-10
16 additions, 10 deletions
core/modules/field/src/FieldConfigStorage.php
core/modules/field/src/FieldInstanceConfigStorage.php
+16
-10
16 additions, 10 deletions
core/modules/field/src/FieldInstanceConfigStorage.php
with
32 additions
and
20 deletions
core/modules/field/src/FieldConfigStorage.php
+
16
−
10
View file @
fee42cb6
...
...
@@ -97,7 +97,12 @@ public function loadByProperties(array $conditions = array()) {
$include_deleted
=
isset
(
$conditions
[
'include_deleted'
])
?
$conditions
[
'include_deleted'
]
:
FALSE
;
unset
(
$conditions
[
'include_deleted'
]);
// Get fields stored in configuration.
$fields
=
array
();
// Get fields stored in configuration. If we are explicitly looking for
// deleted fields only, this can be skipped, because they will be retrieved
// from state below.
if
(
empty
(
$conditions
[
'deleted'
]))
{
if
(
isset
(
$conditions
[
'entity_type'
])
&&
isset
(
$conditions
[
'field_name'
]))
{
// Optimize for the most frequent case where we do have a specific ID.
$id
=
$conditions
[
'entity_type'
]
.
$conditions
[
'field_name'
];
...
...
@@ -107,9 +112,10 @@ public function loadByProperties(array $conditions = array()) {
// No specific ID, we need to examine all existing fields.
$fields
=
$this
->
loadMultiple
();
}
}
// Merge deleted fields (stored in state) if needed.
if
(
$include_deleted
)
{
if
(
$include_deleted
||
!
empty
(
$conditions
[
'deleted'
])
)
{
$deleted_fields
=
$this
->
state
->
get
(
'field.field.deleted'
)
?:
array
();
foreach
(
$deleted_fields
as
$id
=>
$config
)
{
$fields
[
$id
]
=
$this
->
create
(
$config
);
...
...
This diff is collapsed.
Click to expand it.
core/modules/field/src/FieldInstanceConfigStorage.php
+
16
−
10
View file @
fee42cb6
...
...
@@ -104,7 +104,12 @@ public function loadByProperties(array $conditions = array()) {
$include_deleted
=
isset
(
$conditions
[
'include_deleted'
])
?
$conditions
[
'include_deleted'
]
:
FALSE
;
unset
(
$conditions
[
'include_deleted'
]);
// Get instances stored in configuration.
$instances
=
array
();
// Get instances stored in configuration. If we are explicitly looking for
// deleted instances only, this can be skipped, because they will be
// retrieved from state below.
if
(
empty
(
$conditions
[
'deleted'
]))
{
if
(
isset
(
$conditions
[
'entity_type'
])
&&
isset
(
$conditions
[
'bundle'
])
&&
isset
(
$conditions
[
'field_name'
]))
{
// Optimize for the most frequent case where we do have a specific ID.
$id
=
$conditions
[
'entity_type'
]
.
'.'
.
$conditions
[
'bundle'
]
.
'.'
.
$conditions
[
'field_name'
];
...
...
@@ -114,9 +119,10 @@ public function loadByProperties(array $conditions = array()) {
// No specific ID, we need to examine all existing instances.
$instances
=
$this
->
loadMultiple
();
}
}
// Merge deleted instances (stored in state) if needed.
if
(
$include_deleted
)
{
if
(
$include_deleted
||
!
empty
(
$conditions
[
'deleted'
])
)
{
$deleted_instances
=
$this
->
state
->
get
(
'field.instance.deleted'
)
?:
array
();
$deleted_fields
=
$this
->
state
->
get
(
'field.field.deleted'
)
?:
array
();
foreach
(
$deleted_instances
as
$id
=>
$config
)
{
...
...
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