Parsoid
A bidirectional parser between wikitext and HTML5
|
Helper class that provides missing DOM level 3 methods for the PHP DOM classes. More...
Static Public Member Functions | |
static | newDocument (bool $isHtml) |
Create a new empty document. | |
static | nodeName (Node $node) |
Return the lower-case version of the node name (HTML says this should be capitalized). | |
static | getTitle ( $document) |
Get document title. | |
static | setTitle ( $document, string $title) |
Set document title. | |
static | getElementById ( $node, string $id) |
Return the descendant with the specified ID. | |
static | setIdAttribute ( $element, string $id) |
Workaround bug in PHP's Document::getElementById() which doesn't actually index the 'id' attribute unless you use the non-standard Element::setIdAttribute method after the attribute is set; see https://www.php.net/manual/en/domdocument.getelementbyid.php for more details. | |
static | getElementsByTagName ( $node, string $tagName) |
Return all descendants with the specified tag name. | |
static | getFirstElementChild ( $node) |
Return the first child of the node that is an Element, or null otherwise. | |
static | getLastElementChild ( $node) |
Return the last child of the node that is an Element, or null otherwise. | |
static | querySelector ( $node, string $selector) |
static | querySelectorAll ( $node, string $selector) |
static | getPreviousElementSibling ( $node) |
Return the last preceding sibling of the node that is an element, or null otherwise. | |
static | getNextElementSibling ( $node) |
Return the first following sibling of the node that is an element, or null otherwise. | |
static | append ( $parentNode,... $nodes) |
Append the node to the parent node. | |
static | remove ( $node) |
Removes the node from the document. | |
static | getInnerHTML ( $element) |
Get innerHTML. | |
static | setInnerHTML ( $element, string $html) |
Set innerHTML. | |
static | getOuterHTML ( $element) |
Get outerHTML. | |
static | getAttribute ( $element, string $attributeName) |
Return the value of an element attribute. | |
static | getClassList ( $node) |
Return the class list of this element. | |
static | normalize ( $elt) |
static | replaceChildren ( $parentNode,... $nodes) |
ParentNode.replaceChildren() https://developer.mozilla.org/en-US/docs/Web/API/ParentNode/replaceChildren. | |
Helper class that provides missing DOM level 3 methods for the PHP DOM classes.
For a DOM method $node->foo( $bar) the equivalent helper is DOMCompat::foo( $node, $bar ). For a DOM property $node->foo there is a DOMCompat::getFoo( $node ) and DOMCompat::setFoo( $node, $value ).
Only implements the methods that are actually used by Parsoid.
Because this class may be used by code outside Parsoid it tries to be relatively tolerant of object types: you can call it either with PHP's DOM* types or with a "proper" DOM implementation, and it will attempt to Do The Right Thing regardless. As a result there are generally not parameter type hints for DOM object types, and the return types will be broad enough to accomodate the value a "real" DOM implementation would return, as well as the values our thunk will return. (For instance, we can't create a "real" NodeList in our compatibility thunk.)
|
static |
Append the node to the parent node.
Document | DocumentFragment | Element | $parentNode | |
Node|string | ...$nodes |
|
static |
Return the value of an element attribute.
Unlike PHP's version, this is spec-compliant and returns null
if the attribute is not present, allowing the caller to distinguish between "the attribute exists but has the empty string as its value" and "the attribute does not exist".
Element | $element | |
string | $attributeName |
null
if the attribute does not exist on the element.
|
static |
Return the class list of this element.
Element | $node |
|
static |
Return the descendant with the specified ID.
Workaround for https://bugs.php.net/bug.php?id=77686 and other issues related to inconsistent indexing behavior. XXX: 77686 is fixed in php 8.1.21
Document | DocumentFragment | $node | |
string | $id |
|
static |
Return all descendants with the specified tag name.
Workaround for PHP's getElementsByTagName being inexplicably slow in some situations and the lack of Element::getElementsByTagName().
Document | Element | $node | |
string | $tagName |
|
static |
Return the first child of the node that is an Element, or null otherwise.
Document | DocumentFragment | Element | $node |
|
static |
Get innerHTML.
Element | $element |
|
static |
Return the last child of the node that is an Element, or null otherwise.
Document | DocumentFragment | Element | $node |
|
static |
Return the first following sibling of the node that is an element, or null otherwise.
Node | $node |
|
static |
Get outerHTML.
Element | $element |
|
static |
Return the last preceding sibling of the node that is an element, or null otherwise.
Node | $node |
|
static |
Get document title.
Document | $document |
|
static |
Create a new empty document.
This is abstracted because the process is a little different depending on whether we're using Dodo or DOMDocument, and phan gets a little confused by this.
bool | $isHtml |
|
static |
Return the lower-case version of the node name (HTML says this should be capitalized).
Node | $node |
|
static |
Element | DocumentFragment | $elt | root of the DOM tree that needs to be normalized |
|
static |
Document | DocumentFragment | Element | $node | |
string | $selector |
|
static |
Document | DocumentFragment | Element | $node | |
string | $selector |
|
static |
Removes the node from the document.
Element | CharacterData | $node |
|
static |
ParentNode.replaceChildren() https://developer.mozilla.org/en-US/docs/Web/API/ParentNode/replaceChildren.
Document | DocumentFragment | Element | $parentNode | |
string|Node | ...$nodes |
|
static |
Workaround bug in PHP's Document::getElementById() which doesn't actually index the 'id' attribute unless you use the non-standard Element::setIdAttribute
method after the attribute is set; see https://www.php.net/manual/en/domdocument.getelementbyid.php for more details.
Element | $element | |
string | $id | The desired value for the id attribute on $element. |
|
static |
Set innerHTML.
Element | $element | |
string | $html |
|
static |
Set document title.
Document | $document | |
string | $title |