Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F4111257
ShadowRoot.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
6 KB
Referenced Files
None
Subscribers
None
ShadowRoot.php
View Options
<?php
// AUTOMATICALLY GENERATED. DO NOT EDIT.
// Use `composer build` to regenerate.
namespace
Wikimedia\IDLeDOM\Helper
;
trait
ShadowRoot
{
// Underscore is used to avoid conflicts with DOM-reserved names
// phpcs:disable PSR2.Methods.MethodDeclaration.Underscore
// phpcs:disable MediaWiki.NamingConventions.LowerCamelFunctionsName.FunctionName
/**
* Handle an attempt to get a non-existing property on this
* object. The default implementation raises an exception
* but the implementor can choose a different behavior:
* return null (like JavaScript), dynamically create the
* property, etc.
* @param string $prop the name of the property requested
* @return mixed
*/
abstract
protected
function
_getMissingProp
(
string
$prop
);
/**
* Handle an attempt to set a non-existing property on this
* object. The default implementation raises an exception
* but the implementor can choose a different behavior:
* ignore the operation (like JavaScript), dynamically create
* the property, etc.
* @param string $prop the name of the property requested
* @param mixed $value the value to set
*/
abstract
protected
function
_setMissingProp
(
string
$prop
,
$value
):
void
;
// phpcs:enable
/**
* @param string $name
* @return mixed
*/
public
function
__get
(
string
$name
)
{
'@phan-var
\W
ikimedia
\I
DLeDOM
\S
hadowRoot $this'
;
// @var \Wikimedia\IDLeDOM\ShadowRoot $this
switch
(
$name
)
{
case
"nodeType"
:
return
$this
->
getNodeType
();
case
"nodeName"
:
return
$this
->
getNodeName
();
case
"baseURI"
:
return
$this
->
getBaseURI
();
case
"isConnected"
:
return
$this
->
getIsConnected
();
case
"ownerDocument"
:
return
$this
->
getOwnerDocument
();
case
"parentNode"
:
return
$this
->
getParentNode
();
case
"parentElement"
:
return
$this
->
getParentElement
();
case
"childNodes"
:
return
$this
->
getChildNodes
();
case
"firstChild"
:
return
$this
->
getFirstChild
();
case
"lastChild"
:
return
$this
->
getLastChild
();
case
"previousSibling"
:
return
$this
->
getPreviousSibling
();
case
"nextSibling"
:
return
$this
->
getNextSibling
();
case
"nodeValue"
:
return
$this
->
getNodeValue
();
case
"textContent"
:
return
$this
->
getTextContent
();
case
"children"
:
return
$this
->
getChildren
();
case
"firstElementChild"
:
return
$this
->
getFirstElementChild
();
case
"lastElementChild"
:
return
$this
->
getLastElementChild
();
case
"childElementCount"
:
return
$this
->
getChildElementCount
();
case
"styleSheets"
:
return
$this
->
getStyleSheets
();
case
"innerHTML"
:
return
$this
->
getInnerHTML
();
case
"mode"
:
return
$this
->
getMode
();
case
"host"
:
return
$this
->
getHost
();
case
"onslotchange"
:
return
$this
->
getOnslotchange
();
default
:
break
;
}
'@phan-var
\W
ikimedia
\I
DLeDOM
\H
elper
\S
hadowRoot $this'
;
// @var \Wikimedia\IDLeDOM\Helper\ShadowRoot $this
return
$this
->
_getMissingProp
(
$name
);
}
/**
* @param string $name
* @return bool
*/
public
function
__isset
(
string
$name
):
bool
{
'@phan-var
\W
ikimedia
\I
DLeDOM
\S
hadowRoot $this'
;
// @var \Wikimedia\IDLeDOM\ShadowRoot $this
switch
(
$name
)
{
case
"nodeType"
:
return
true
;
case
"nodeName"
:
return
true
;
case
"baseURI"
:
return
true
;
case
"isConnected"
:
return
true
;
case
"ownerDocument"
:
return
$this
->
getOwnerDocument
()
!==
null
;
case
"parentNode"
:
return
$this
->
getParentNode
()
!==
null
;
case
"parentElement"
:
return
$this
->
getParentElement
()
!==
null
;
case
"childNodes"
:
return
true
;
case
"firstChild"
:
return
$this
->
getFirstChild
()
!==
null
;
case
"lastChild"
:
return
$this
->
getLastChild
()
!==
null
;
case
"previousSibling"
:
return
$this
->
getPreviousSibling
()
!==
null
;
case
"nextSibling"
:
return
$this
->
getNextSibling
()
!==
null
;
case
"nodeValue"
:
return
$this
->
getNodeValue
()
!==
null
;
case
"textContent"
:
return
$this
->
getTextContent
()
!==
null
;
case
"children"
:
return
true
;
case
"firstElementChild"
:
return
$this
->
getFirstElementChild
()
!==
null
;
case
"lastElementChild"
:
return
$this
->
getLastElementChild
()
!==
null
;
case
"childElementCount"
:
return
true
;
case
"styleSheets"
:
return
true
;
case
"innerHTML"
:
return
true
;
case
"mode"
:
return
true
;
case
"host"
:
return
true
;
case
"onslotchange"
:
return
true
;
default
:
break
;
}
return
false
;
}
/**
* @param string $name
* @param mixed $value
*/
public
function
__set
(
string
$name
,
$value
):
void
{
'@phan-var
\W
ikimedia
\I
DLeDOM
\S
hadowRoot $this'
;
// @var \Wikimedia\IDLeDOM\ShadowRoot $this
switch
(
$name
)
{
case
"nodeValue"
:
$this
->
setNodeValue
(
$value
);
return
;
case
"textContent"
:
$this
->
setTextContent
(
$value
);
return
;
case
"innerHTML"
:
$this
->
setInnerHTML
(
$value
);
return
;
case
"onslotchange"
:
$this
->
setOnslotchange
(
$value
);
return
;
default
:
break
;
}
'@phan-var
\W
ikimedia
\I
DLeDOM
\H
elper
\S
hadowRoot $this'
;
// @var \Wikimedia\IDLeDOM\Helper\ShadowRoot $this
$this
->
_setMissingProp
(
$name
,
$value
);
}
/**
* @param string $name
*/
public
function
__unset
(
string
$name
):
void
{
'@phan-var
\W
ikimedia
\I
DLeDOM
\S
hadowRoot $this'
;
// @var \Wikimedia\IDLeDOM\ShadowRoot $this
switch
(
$name
)
{
case
"nodeType"
:
break
;
case
"nodeName"
:
break
;
case
"baseURI"
:
break
;
case
"isConnected"
:
break
;
case
"ownerDocument"
:
break
;
case
"parentNode"
:
break
;
case
"parentElement"
:
break
;
case
"childNodes"
:
break
;
case
"firstChild"
:
break
;
case
"lastChild"
:
break
;
case
"previousSibling"
:
break
;
case
"nextSibling"
:
break
;
case
"nodeValue"
:
$this
->
setNodeValue
(
null
);
return
;
case
"textContent"
:
$this
->
setTextContent
(
null
);
return
;
case
"children"
:
break
;
case
"firstElementChild"
:
break
;
case
"lastElementChild"
:
break
;
case
"childElementCount"
:
break
;
case
"styleSheets"
:
break
;
case
"innerHTML"
:
break
;
case
"mode"
:
break
;
case
"host"
:
break
;
case
"onslotchange"
:
break
;
default
:
return
;
}
$trace
=
debug_backtrace
();
while
(
count
(
$trace
)
>
0
&&
$trace
[
0
][
'function'
]
!==
"__unset"
)
{
array_shift
(
$trace
);
}
trigger_error
(
'Undefined property'
.
' via '
.
(
$trace
[
0
][
'function'
]
??
''
)
.
'(): '
.
$name
.
' in '
.
(
$trace
[
0
][
'file'
]
??
''
)
.
' on line '
.
(
$trace
[
0
][
'line'
]
??
''
),
E_USER_NOTICE
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, Aug 18, 22:15 (1 d, 23 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
b9/35/4b621efbf98034085270aa1f92b5
Default Alt Text
ShadowRoot.php (6 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment