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

Breadcrumb

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

class SpecificityAdjustmentNode

Represents a "<selector>:where(<subSelectorList>)" node.

This component is a port of the Python cssselect library, which is copyright Ian Bicking, @author Hubert Lenoir <lenoir.hubert@gmail.com>

@internal

Hierarchy

  • class \Symfony\Component\CssSelector\Node\AbstractNode implements \Symfony\Component\CssSelector\Node\NodeInterface
    • class \Symfony\Component\CssSelector\Node\SpecificityAdjustmentNode extends \Symfony\Component\CssSelector\Node\AbstractNode

Expanded class hierarchy of SpecificityAdjustmentNode

See also

https://github.com/SimonSapin/cssselect.

File

vendor/symfony/css-selector/Node/SpecificityAdjustmentNode.php, line 24

Namespace

Symfony\Component\CssSelector\Node
View source
class SpecificityAdjustmentNode extends AbstractNode {
    
    /**
     * @param array<NodeInterface> $arguments
     */
    public function __construct(NodeInterface $selector, array $arguments = []) {
    }
    public function getSpecificity() : Specificity {
        return $this->selector
            ->getSpecificity();
    }
    public function __toString() : string {
        $selectorArguments = array_map(fn($n) => ltrim((string) $n, '*'), $this->arguments);
        return \sprintf('%s[%s:where(%s)]', $this->getNodeName(), $this->selector, implode(', ', $selectorArguments));
    }

}

Members

Title Sort descending Modifiers Object type Summary Overriden Title
AbstractNode::$nodeName private property
AbstractNode::getNodeName public function Overrides NodeInterface::getNodeName
SpecificityAdjustmentNode::getSpecificity public function Overrides NodeInterface::getSpecificity
SpecificityAdjustmentNode::__construct public function
SpecificityAdjustmentNode::__toString public function

API Navigation

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