-
Notifications
You must be signed in to change notification settings - Fork 120
Expand file tree
/
Copy pathHTML5DOMElement.php
More file actions
115 lines (94 loc) · 2.91 KB
/
HTML5DOMElement.php
File metadata and controls
115 lines (94 loc) · 2.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<?php
namespace Masterminds\HTML5;
/**
* Shared template-aware behavior for DOMElement implementations.
*/
class HTML5DOMElementBase extends \DOMElement
{
/**
* @var \DOMDocumentFragment|null
*/
protected $templateContents;
/**
* @param \DOMDocumentFragment|null $fragment
*/
public function html5PhpSetTemplateContents($fragment)
{
$this->templateContents = $fragment;
}
/**
* @return \DOMDocumentFragment|null
*/
public function html5PhpTemplateContents()
{
return $this->templateContents;
}
protected function html5PhpHasDetachedTemplateContents()
{
return 'template' === strtolower($this->tagName) && $this->templateContents instanceof \DOMDocumentFragment;
}
protected function html5PhpCloneNode($deep = false)
{
$clone = parent::cloneNode($deep);
TemplateContents::copySubtree($this, $clone, $deep);
return $clone;
}
protected function html5PhpAppendChild($node)
{
if ($this->html5PhpHasDetachedTemplateContents()) {
return $this->templateContents->appendChild($node);
}
return parent::appendChild($node);
}
protected function html5PhpInsertBefore($newnode, $refnode = null)
{
if ($this->html5PhpHasDetachedTemplateContents()) {
if (null === $refnode) {
return $this->templateContents->appendChild($newnode);
}
return $this->templateContents->insertBefore($newnode, $refnode);
}
return parent::insertBefore($newnode, $refnode);
}
protected function html5PhpReplaceChild($newnode, $oldnode)
{
if ($this->html5PhpHasDetachedTemplateContents()) {
return $this->templateContents->replaceChild($newnode, $oldnode);
}
return parent::replaceChild($newnode, $oldnode);
}
protected function html5PhpRemoveChild($oldnode)
{
if ($this->html5PhpHasDetachedTemplateContents()) {
return $this->templateContents->removeChild($oldnode);
}
return parent::removeChild($oldnode);
}
}
if (PHP_VERSION_ID >= 80100) {
require __DIR__ . '/HTML5DOMElement81.php';
} else {
class HTML5DOMElement extends HTML5DOMElementBase
{
public function cloneNode($deep = false)
{
return $this->html5PhpCloneNode($deep);
}
public function appendChild($node)
{
return $this->html5PhpAppendChild($node);
}
public function insertBefore($newnode, $refnode = null)
{
return $this->html5PhpInsertBefore($newnode, $refnode);
}
public function replaceChild($newnode, $oldnode)
{
return $this->html5PhpReplaceChild($newnode, $oldnode);
}
public function removeChild($oldnode)
{
return $this->html5PhpRemoveChild($oldnode);
}
}
}