Custom entity without label field generates warning for PHP 8.1

Created on 4 November 2022, over 2 years ago
Updated 15 February 2023, about 2 years ago

Problem/Motivation

The PHP 8.1 generates Deprecated function: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in ...
for any custom entity without "label" field.

Steps to reproduce

- create entity class with drush gen content-entity
- remove label field from code
- open edit entity form

Proposed resolution

Fix code here: web/core/lib/Drupal/Core/Entity/Controller/EntityController.php:267

    if ($entity = $this->doGetEntity($route_match, $_entity)) {
      return $this->t('Edit %label', ['%label' => $entity->label()]);
    }

to

    if ($entity = $this->doGetEntity($route_match, $_entity)) {
      return $this->t('Edit %label', ['%label' => $entity->label() ?? '']);
    }
🐛 Bug report
Status

Needs work

Version

9.5

Component
Entity 

Last updated about 11 hours ago

Created by

🇷🇺Russia Andrew Answer Novosibirsk

Live updates comments and jobs are added and updated live.
  • Needs tests

    The change is currently missing an automated test that fails when run with the original code, and succeeds when the bug has been fixed.

Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

Production build 0.71.5 2024