: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in
* This file is part of the Symfony package.
* (c) Fabien Potencier <fabien@symfony.com>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
namespace WPForms\Vendor\Symfony\Component\CssSelector\XPath;
* XPath expression translator interface.
* This component is a port of the Python cssselect library,
* which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect.
* @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>
* @param string $condition
* @param bool $starPrefix
public function __construct($path = '', $element = '*', $condition = '', $starPrefix = \false)
$this->element = $element;
$this->condition = $condition;
public function getElement()
public function addCondition($condition)
$this->condition = $this->condition ? \sprintf('%s and (%s)', $this->condition, $condition) : $condition;
public function getCondition()
public function addNameTest()
if ('*' !== $this->element) {
$this->addCondition('name() = ' . Translator::getXpathLiteral($this->element));
public function addStarPrefix()
* Joins another XPathExpr with a combiner.
* @param string $combiner
public function join($combiner, XPathExpr $expr)
$path = $this->__toString() . $combiner;
if ('*/' !== $expr->path) {
$this->element = $expr->element;
$this->condition = $expr->condition;
public function __toString()
$path = $this->path . $this->element;
$condition = null === $this->condition || '' === $this->condition ? '' : '[' . $this->condition . ']';
return $path . $condition;