Remove html_entities for PHP 5

Created on 21 April 2024, 12 months ago
Updated 6 May 2024, 11 months ago

Problem/Motivation

In resources/html_entities.php, there is a function that is no longer called in the codebase. It says it is used for handling PHP < 5.4, which is ancient, so this code should be removed.

📌 Task
Status

Fixed

Version

1.0

Component

Code

Created by

🇯🇵Japan ptmkenny

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

  • Issue created by @ptmkenny
  • Open in Jenkins → Open on Drupal.org →
    Core: 9.5.5 + Environment: PHP 7.4 & MySQL 5.7
    last update 12 months ago
    113 pass
  • Pipeline finished with Success
    12 months ago
    Total: 381s
    #152528
  • Status changed to Needs review 12 months ago
  • Status changed to RTBC 12 months ago
  • 🇮🇳India mitthukumawat

    Taking these changes removing the html_entities.php file. And found this is not called anywhere in entire codebase so it is good to be merged.

  • Pipeline finished with Skipped
    12 months ago
    #153236
  • First commit to issue fork.
  • Open in Jenkins → Open on Drupal.org →
    Core: 9.5.5 + Environment: PHP 7.4 & MySQL 5.7
    last update 12 months ago
    113 pass
  • Status changed to Fixed 12 months ago
  • 🇳🇱Netherlands megachriz

    I checked how it was used in the D7 version and there the reference to html_entities.php was in FeedsExXmlUtility::decodeNamedHtmlEntities():

    /**
     * Converts named HTML entities to their UTF-8 equivalent.
     *
     * @param string $markup
     *   The string.
     *
     * @return string
     *   The converted string.
     */
    public static function decodeNamedHtmlEntities($markup) {
      if (version_compare(PHP_VERSION, '5.4.0', '<')) {
        $map = require dirname(dirname(dirname(__FILE__))) . '/resources/html_entities.php';
      }
      else {
        $map = array_flip(get_html_translation_table(HTML_ENTITIES, ENT_NOQUOTES | ENT_HTML5, 'UTF-8'));
        unset($map['&amp;'], $map['&lt;'], $map['&gt;']);
      }
    
      return strtr($markup, $map);
    }
    

    But that line is gone in the equivalent of the code (\Drupal\feeds_ex\Utility\XmlUtility::decodeNamedHtmlEntities(). So yes, the file can be safely removed.

    Merged!

  • Automatically closed - issue fixed for 2 weeks with no activity.

Production build 0.71.5 2024