W3cubDocs

/Symfony 2.7

Symfony\Component\CssSelector\XPath\Extension\AttributeMatchingExtension

class AttributeMatchingExtension extends AbstractExtension

XPath expression translator attribute extension.

This component is a port of the Python cssselector library, which is copyright Ian Bicking, see https://github.com/SimonSapin/cssselect.

Methods

callable[] getNodeTranslators()

Returns node translators.

from AbstractExtension
callable[] getCombinationTranslators()

Returns combination translators.

from AbstractExtension
callable[] getFunctionTranslators()

Returns function translators.

from AbstractExtension
callable[] getPseudoClassTranslators()

Returns pseudo-class translators.

from AbstractExtension
callable[] getAttributeMatchingTranslators()

Returns attribute operation translators.

XPathExpr translateExists(XPathExpr $xpath, string $attribute, string $value)
XPathExpr translateEquals(XPathExpr $xpath, string $attribute, string $value)
XPathExpr translateIncludes(XPathExpr $xpath, string $attribute, string $value)
XPathExpr translateDashMatch(XPathExpr $xpath, string $attribute, string $value)
XPathExpr translatePrefixMatch(XPathExpr $xpath, string $attribute, string $value)
XPathExpr translateSuffixMatch(XPathExpr $xpath, string $attribute, string $value)
XPathExpr translateSubstringMatch(XPathExpr $xpath, string $attribute, string $value)
XPathExpr translateDifferent(XPathExpr $xpath, string $attribute, string $value)
string getName()

Returns extension name.

Details

public callable[] getNodeTranslators()

Returns node translators.

These callables will receive the node as first argument and the translator as second argument.

Return Value

callable[]

public callable[] getCombinationTranslators()

Returns combination translators.

Return Value

callable[]

public callable[] getFunctionTranslators()

Returns function translators.

Return Value

callable[]

public callable[] getPseudoClassTranslators()

Returns pseudo-class translators.

Return Value

callable[]

public callable[] getAttributeMatchingTranslators()

Returns attribute operation translators.

Return Value

callable[]

public XPathExpr translateExists(XPathExpr $xpath, string $attribute, string $value)

Parameters

XPathExpr $xpath
string $attribute
string $value

Return Value

XPathExpr

public XPathExpr translateEquals(XPathExpr $xpath, string $attribute, string $value)

Parameters

XPathExpr $xpath
string $attribute
string $value

Return Value

XPathExpr

public XPathExpr translateIncludes(XPathExpr $xpath, string $attribute, string $value)

Parameters

XPathExpr $xpath
string $attribute
string $value

Return Value

XPathExpr

public XPathExpr translateDashMatch(XPathExpr $xpath, string $attribute, string $value)

Parameters

XPathExpr $xpath
string $attribute
string $value

Return Value

XPathExpr

public XPathExpr translatePrefixMatch(XPathExpr $xpath, string $attribute, string $value)

Parameters

XPathExpr $xpath
string $attribute
string $value

Return Value

XPathExpr

public XPathExpr translateSuffixMatch(XPathExpr $xpath, string $attribute, string $value)

Parameters

XPathExpr $xpath
string $attribute
string $value

Return Value

XPathExpr

public XPathExpr translateSubstringMatch(XPathExpr $xpath, string $attribute, string $value)

Parameters

XPathExpr $xpath
string $attribute
string $value

Return Value

XPathExpr

public XPathExpr translateDifferent(XPathExpr $xpath, string $attribute, string $value)

Parameters

XPathExpr $xpath
string $attribute
string $value

Return Value

XPathExpr

public string getName()

Returns extension name.

Return Value

string