Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. Elements.php

function Elements::normalizeSvgElement

Normalize a SVG element name to its proper case and form.

Parameters

string $name The name of the element.:

Return value

string the normalized form of the element name.

3 calls to Elements::normalizeSvgElement()
DOMTreeBuilder::endTag in vendor/masterminds/html5/src/HTML5/Parser/DOMTreeBuilder.php
An end-tag.
DOMTreeBuilder::startTag in vendor/masterminds/html5/src/HTML5/Parser/DOMTreeBuilder.php
Process the start tag.
OutputRules::element in vendor/masterminds/html5/src/HTML5/Serializer/OutputRules.php
Write an element.

File

vendor/masterminds/html5/src/HTML5/Elements.php, line 591

Class

Elements
This class provides general information about HTML5 elements, including syntactic and semantic issues. Parsers and serializers can use this class as a reference point for information about the rules of various HTML5 elements.

Namespace

Masterminds\HTML5

Code

public static function normalizeSvgElement($name) {
    $name = strtolower($name);
    if (isset(static::$svgCaseSensitiveElementMap[$name])) {
        $name = static::$svgCaseSensitiveElementMap[$name];
    }
    return $name;
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal