You are here

public function AttributeMatchingExtension::translateIncludes in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/css-selector/XPath/Extension/AttributeMatchingExtension.php \Symfony\Component\CssSelector\XPath\Extension\AttributeMatchingExtension::translateIncludes()

Parameters

XPathExpr $xpath:

string $attribute:

string $value:

Return value

XPathExpr

File

vendor/symfony/css-selector/XPath/Extension/AttributeMatchingExtension.php, line 75

Class

AttributeMatchingExtension
XPath expression translator attribute extension.

Namespace

Symfony\Component\CssSelector\XPath\Extension

Code

public function translateIncludes(XPathExpr $xpath, $attribute, $value) {
  return $xpath
    ->addCondition($value ? sprintf('%1$s and contains(concat(\' \', normalize-space(%1$s), \' \'), %2$s)', $attribute, Translator::getXpathLiteral(' ' . $value . ' ')) : '0');
}