HtmlExtension::translateEnabled()

XPathExpr translateEnabled(XPathExpr $xpath) Parameters XPathExpr $xpath Return Value XPathExpr

HtmlExtension::translateDisabled()

XPathExpr translateDisabled(XPathExpr $xpath) Parameters XPathExpr $xpath Return Value XPathExpr

HtmlExtension::translateChecked()

XPathExpr translateChecked(XPathExpr $xpath) Parameters XPathExpr $xpath Return Value XPathExpr

HtmlExtension::getPseudoClassTranslators()

callable[] getPseudoClassTranslators() Returns pseudo-class translators. Return Value callable[]

HtmlExtension::getName()

string getName() Returns extension name. Return Value string

HtmlExtension::getFunctionTranslators()

callable[] getFunctionTranslators() Returns function translators. Return Value callable[]

HtmlExtension

class HtmlExtension extends AbstractExtension XPath expression translator HTML extension. This component is a port of the Python cssselect 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. callab

HtmlDumper::setStyles()

setStyles(array $styles) Configures styles. Parameters array $styles A map of style names to style definitions

HtmlDumper::setDumpHeader()

setDumpHeader(string $header) Sets an HTML header that will be dumped once in the output stream. Parameters string $header An HTML string

HtmlDumper::setDumpBoundaries()

setDumpBoundaries(string $prefix, string $suffix) Sets an HTML prefix and suffix that will encapse every single dump. Parameters string $prefix The prepended HTML string string $suffix The appended HTML string