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

Breadcrumb

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

function HtmlExtension::translateDisabled

1 call to HtmlExtension::translateDisabled()
HtmlExtension::getPseudoClassTranslators in vendor/symfony/css-selector/XPath/Extension/HtmlExtension.php
Returns pseudo-class translators.

File

vendor/symfony/css-selector/XPath/Extension/HtmlExtension.php, line 74

Class

HtmlExtension
XPath expression translator HTML extension.

Namespace

Symfony\Component\CssSelector\XPath\Extension

Code

public function translateDisabled(XPathExpr $xpath) : XPathExpr {
    return $xpath->addCondition('(' . '@disabled and' . '(' . "(name(.) = 'input' and @type != 'hidden')" . " or name(.) = 'button'" . " or name(.) = 'select'" . " or name(.) = 'textarea'" . " or name(.) = 'command'" . " or name(.) = 'fieldset'" . " or name(.) = 'optgroup'" . " or name(.) = 'option'" . ')' . ') or (' . "(name(.) = 'input' and @type != 'hidden')" . " or name(.) = 'button'" . " or name(.) = 'select'" . " or name(.) = 'textarea'" . ')' . ' and ancestor::fieldset[@disabled]');
    // todo: in the second half, add "and is not a descendant of that fieldset element's first legend element child, if any."
}

API Navigation

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