Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal-3036862
Manage
Activity
Members
Labels
Plan
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
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
Issue forks
drupal-3036862
Commits
62a4dac1
Commit
62a4dac1
authored
3 years ago
by
Jonathan Shaw
Browse files
Options
Downloads
Patches
Plain Diff
Nuke the tangle
parent
3087e7b5
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
core/modules/node/node.module
+3
-26
3 additions, 26 deletions
core/modules/node/node.module
core/modules/node/templates/node.html.twig
+0
-19
0 additions, 19 deletions
core/modules/node/templates/node.html.twig
with
3 additions
and
45 deletions
core/modules/node/node.module
+
3
−
26
View file @
62a4dac1
...
...
@@ -493,32 +493,9 @@ function template_preprocess_node(&$variables) {
$variables
[
'node'
]
=
$variables
[
'elements'
][
'#node'
];
/** @var \Drupal\node\NodeInterface $node */
$node
=
$variables
[
'node'
];
$skip_custom_preprocessing
=
$node
->
getEntityType
()
->
get
(
'enable_base_field_custom_preprocess_skipping'
);
// Make created, uid and title fields available separately. Skip this custom
// preprocessing if the field display is configurable and skipping has been
// enabled.
// @todo https://www.drupal.org/project/drupal/issues/3015623
// Eventually delete this code and matching template lines. Using
// $variables['content'] is more flexible and consistent.
$submitted_configurable
=
$node
->
getFieldDefinition
(
'created'
)
->
isDisplayConfigurable
(
'view'
)
||
$node
->
getFieldDefinition
(
'uid'
)
->
isDisplayConfigurable
(
'view'
);
if
(
!
$skip_custom_preprocessing
||
!
$submitted_configurable
)
{
$variables
[
'date'
]
=
\Drupal
::
service
(
'renderer'
)
->
render
(
$variables
[
'elements'
][
'created'
]);
unset
(
$variables
[
'elements'
][
'created'
]);
$variables
[
'author_name'
]
=
\Drupal
::
service
(
'renderer'
)
->
render
(
$variables
[
'elements'
][
'uid'
]);
unset
(
$variables
[
'elements'
][
'uid'
]);
}
// If the title is configurable, then it will only be a child element if it is configured to not be hidden.
// Custom preprocess will be skipped if skipping is requested by flag, or title is configured to display normally not hide,
// or custom code has requested the field to be not configurable.
if
(
!
$skip_custom_preprocessing
&&
!
isset
(
$variables
[
'elements'
][
'title'
]
))
{
@
trigger_error
(
"Custom preprocessing for node titles in template_node_preprocess is deprecated.
Configure the title to display like any other field, or set 'enable_base_field_custom_preprocess_skipping'
to silence this error if you do wish to hide the title and are using node templates other than those provided by core."
)
$variables
[
'label'
]
=
$variables
[
'elements'
][
'title'
];
unset
(
$variables
[
'elements'
][
'title'
]);
}
if
(
$node
->
getEntityType
()
->
get
(
'enable_base_field_custom_preprocess_skipping'
)
{
trigger_error
(
"The enable_base_field_custom_preprocess_skipping node flag is deprecated. No replacement is needed, code that sets it can be removed."
,
E_USER_DEPRECATED
)
};
$variables
[
'url'
]
=
!
$node
->
isNew
()
?
$node
->
toUrl
(
'canonical'
)
->
toString
()
:
NULL
;
...
...
This diff is collapsed.
Click to expand it.
core/modules/node/templates/node.html.twig
+
0
−
19
View file @
62a4dac1
...
...
@@ -70,25 +70,6 @@
#}
<article
{{
attributes
}}
>
{{
title_prefix
}}
{%
if
label
and
not
page
%}
{%
deprecated
'Core node templates will no longer render titles automatically, configure the display of the title like other fields.'
%}
<h2
{{
title_attributes
}}
>
<a
href=
"
{{
url
}}
"
rel=
"bookmark"
>
{{
label
}}
</a>
</h2>
{%
endif
%}
{{
title_suffix
}}
{%
if
display_submitted
%}
<footer>
{{
author_picture
}}
<div
{{
author_attributes
}}
>
{%
trans
%}
Submitted by
{{
author_name
}}
on
{{
date
}}{%
endtrans
%}
{{
metadata
}}
</div>
</footer>
{%
endif
%}
<div
{{
content_attributes
}}
>
{{
content
}}
</div>
...
...
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