Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F4145188
HTMLTableCellElement.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
20 KB
Referenced Files
None
Subscribers
None
HTMLTableCellElement.php
View Options
<?php
// AUTOMATICALLY GENERATED. DO NOT EDIT.
// Use `composer build` to regenerate.
namespace
Wikimedia\IDLeDOM\Helper
;
trait
HTMLTableCellElement
{
// 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
\H
TMLTableCellElement $this'
;
// @var \Wikimedia\IDLeDOM\HTMLTableCellElement $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
"innerHTML"
:
return
$this
->
getInnerHTML
();
case
"previousElementSibling"
:
return
$this
->
getPreviousElementSibling
();
case
"nextElementSibling"
:
return
$this
->
getNextElementSibling
();
case
"children"
:
return
$this
->
getChildren
();
case
"firstElementChild"
:
return
$this
->
getFirstElementChild
();
case
"lastElementChild"
:
return
$this
->
getLastElementChild
();
case
"childElementCount"
:
return
$this
->
getChildElementCount
();
case
"assignedSlot"
:
return
$this
->
getAssignedSlot
();
case
"namespaceURI"
:
return
$this
->
getNamespaceURI
();
case
"prefix"
:
return
$this
->
getPrefix
();
case
"localName"
:
return
$this
->
getLocalName
();
case
"tagName"
:
return
$this
->
getTagName
();
case
"id"
:
return
$this
->
getId
();
case
"className"
:
return
$this
->
getClassName
();
case
"classList"
:
return
$this
->
getClassList
();
case
"slot"
:
return
$this
->
getSlot
();
case
"attributes"
:
return
$this
->
getAttributes
();
case
"shadowRoot"
:
return
$this
->
getShadowRoot
();
case
"outerHTML"
:
return
$this
->
getOuterHTML
();
case
"style"
:
return
$this
->
getStyle
();
case
"contentEditable"
:
return
$this
->
getContentEditable
();
case
"enterKeyHint"
:
return
$this
->
getEnterKeyHint
();
case
"isContentEditable"
:
return
$this
->
getIsContentEditable
();
case
"inputMode"
:
return
$this
->
getInputMode
();
case
"onload"
:
return
$this
->
getOnload
();
case
"dataset"
:
return
$this
->
getDataset
();
case
"nonce"
:
return
$this
->
getNonce
();
case
"tabIndex"
:
return
$this
->
getTabIndex
();
case
"title"
:
return
$this
->
getTitle
();
case
"lang"
:
return
$this
->
getLang
();
case
"translate"
:
return
$this
->
getTranslate
();
case
"dir"
:
return
$this
->
getDir
();
case
"hidden"
:
return
$this
->
getHidden
();
case
"accessKey"
:
return
$this
->
getAccessKey
();
case
"accessKeyLabel"
:
return
$this
->
getAccessKeyLabel
();
case
"draggable"
:
return
$this
->
getDraggable
();
case
"spellcheck"
:
return
$this
->
getSpellcheck
();
case
"autocapitalize"
:
return
$this
->
getAutocapitalize
();
case
"innerText"
:
return
$this
->
getInnerText
();
case
"offsetParent"
:
return
$this
->
getOffsetParent
();
case
"offsetTop"
:
return
$this
->
getOffsetTop
();
case
"offsetLeft"
:
return
$this
->
getOffsetLeft
();
case
"offsetWidth"
:
return
$this
->
getOffsetWidth
();
case
"offsetHeight"
:
return
$this
->
getOffsetHeight
();
case
"colSpan"
:
return
$this
->
getColSpan
();
case
"rowSpan"
:
return
$this
->
getRowSpan
();
case
"headers"
:
return
$this
->
getHeaders
();
case
"cellIndex"
:
return
$this
->
getCellIndex
();
case
"scope"
:
return
$this
->
getScope
();
case
"abbr"
:
return
$this
->
getAbbr
();
case
"align"
:
return
$this
->
getAlign
();
case
"axis"
:
return
$this
->
getAxis
();
case
"height"
:
return
$this
->
getHeight
();
case
"width"
:
return
$this
->
getWidth
();
case
"ch"
:
return
$this
->
getCh
();
case
"chOff"
:
return
$this
->
getChOff
();
case
"noWrap"
:
return
$this
->
getNoWrap
();
case
"vAlign"
:
return
$this
->
getVAlign
();
case
"bgColor"
:
return
$this
->
getBgColor
();
default
:
break
;
}
'@phan-var
\W
ikimedia
\I
DLeDOM
\H
elper
\H
TMLTableCellElement $this'
;
// @var \Wikimedia\IDLeDOM\Helper\HTMLTableCellElement $this
return
$this
->
_getMissingProp
(
$name
);
}
/**
* @param string $name
* @return bool
*/
public
function
__isset
(
string
$name
):
bool
{
'@phan-var
\W
ikimedia
\I
DLeDOM
\H
TMLTableCellElement $this'
;
// @var \Wikimedia\IDLeDOM\HTMLTableCellElement $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
"innerHTML"
:
return
true
;
case
"previousElementSibling"
:
return
$this
->
getPreviousElementSibling
()
!==
null
;
case
"nextElementSibling"
:
return
$this
->
getNextElementSibling
()
!==
null
;
case
"children"
:
return
true
;
case
"firstElementChild"
:
return
$this
->
getFirstElementChild
()
!==
null
;
case
"lastElementChild"
:
return
$this
->
getLastElementChild
()
!==
null
;
case
"childElementCount"
:
return
true
;
case
"assignedSlot"
:
return
$this
->
getAssignedSlot
()
!==
null
;
case
"namespaceURI"
:
return
$this
->
getNamespaceURI
()
!==
null
;
case
"prefix"
:
return
$this
->
getPrefix
()
!==
null
;
case
"localName"
:
return
true
;
case
"tagName"
:
return
true
;
case
"id"
:
return
true
;
case
"className"
:
return
true
;
case
"classList"
:
return
true
;
case
"slot"
:
return
true
;
case
"attributes"
:
return
true
;
case
"shadowRoot"
:
return
$this
->
getShadowRoot
()
!==
null
;
case
"outerHTML"
:
return
true
;
case
"style"
:
return
true
;
case
"contentEditable"
:
return
true
;
case
"enterKeyHint"
:
return
true
;
case
"isContentEditable"
:
return
true
;
case
"inputMode"
:
return
true
;
case
"onload"
:
return
true
;
case
"dataset"
:
return
true
;
case
"nonce"
:
return
true
;
case
"tabIndex"
:
return
true
;
case
"title"
:
return
true
;
case
"lang"
:
return
true
;
case
"translate"
:
return
true
;
case
"dir"
:
return
true
;
case
"hidden"
:
return
true
;
case
"accessKey"
:
return
true
;
case
"accessKeyLabel"
:
return
true
;
case
"draggable"
:
return
true
;
case
"spellcheck"
:
return
true
;
case
"autocapitalize"
:
return
true
;
case
"innerText"
:
return
true
;
case
"offsetParent"
:
return
$this
->
getOffsetParent
()
!==
null
;
case
"offsetTop"
:
return
true
;
case
"offsetLeft"
:
return
true
;
case
"offsetWidth"
:
return
true
;
case
"offsetHeight"
:
return
true
;
case
"colSpan"
:
return
true
;
case
"rowSpan"
:
return
true
;
case
"headers"
:
return
true
;
case
"cellIndex"
:
return
true
;
case
"scope"
:
return
true
;
case
"abbr"
:
return
true
;
case
"align"
:
return
true
;
case
"axis"
:
return
true
;
case
"height"
:
return
true
;
case
"width"
:
return
true
;
case
"ch"
:
return
true
;
case
"chOff"
:
return
true
;
case
"noWrap"
:
return
true
;
case
"vAlign"
:
return
true
;
case
"bgColor"
:
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
\H
TMLTableCellElement $this'
;
// @var \Wikimedia\IDLeDOM\HTMLTableCellElement $this
switch
(
$name
)
{
case
"nodeValue"
:
$this
->
setNodeValue
(
$value
);
return
;
case
"textContent"
:
$this
->
setTextContent
(
$value
);
return
;
case
"innerHTML"
:
$this
->
setInnerHTML
(
$value
);
return
;
case
"id"
:
$this
->
setId
(
$value
);
return
;
case
"className"
:
$this
->
setClassName
(
$value
);
return
;
case
"classList"
:
$this
->
setClassList
(
$value
);
return
;
case
"slot"
:
$this
->
setSlot
(
$value
);
return
;
case
"outerHTML"
:
$this
->
setOuterHTML
(
$value
);
return
;
case
"style"
:
$this
->
setStyle
(
$value
);
return
;
case
"contentEditable"
:
$this
->
setContentEditable
(
$value
);
return
;
case
"enterKeyHint"
:
$this
->
setEnterKeyHint
(
$value
);
return
;
case
"inputMode"
:
$this
->
setInputMode
(
$value
);
return
;
case
"onload"
:
$this
->
setOnload
(
$value
);
return
;
case
"nonce"
:
$this
->
setNonce
(
$value
);
return
;
case
"tabIndex"
:
$this
->
setTabIndex
(
$value
);
return
;
case
"title"
:
$this
->
setTitle
(
$value
);
return
;
case
"lang"
:
$this
->
setLang
(
$value
);
return
;
case
"translate"
:
$this
->
setTranslate
(
$value
);
return
;
case
"dir"
:
$this
->
setDir
(
$value
);
return
;
case
"hidden"
:
$this
->
setHidden
(
$value
);
return
;
case
"accessKey"
:
$this
->
setAccessKey
(
$value
);
return
;
case
"draggable"
:
$this
->
setDraggable
(
$value
);
return
;
case
"spellcheck"
:
$this
->
setSpellcheck
(
$value
);
return
;
case
"autocapitalize"
:
$this
->
setAutocapitalize
(
$value
);
return
;
case
"innerText"
:
$this
->
setInnerText
(
$value
);
return
;
case
"colSpan"
:
$this
->
setColSpan
(
$value
);
return
;
case
"rowSpan"
:
$this
->
setRowSpan
(
$value
);
return
;
case
"headers"
:
$this
->
setHeaders
(
$value
);
return
;
case
"scope"
:
$this
->
setScope
(
$value
);
return
;
case
"abbr"
:
$this
->
setAbbr
(
$value
);
return
;
case
"align"
:
$this
->
setAlign
(
$value
);
return
;
case
"axis"
:
$this
->
setAxis
(
$value
);
return
;
case
"height"
:
$this
->
setHeight
(
$value
);
return
;
case
"width"
:
$this
->
setWidth
(
$value
);
return
;
case
"ch"
:
$this
->
setCh
(
$value
);
return
;
case
"chOff"
:
$this
->
setChOff
(
$value
);
return
;
case
"noWrap"
:
$this
->
setNoWrap
(
$value
);
return
;
case
"vAlign"
:
$this
->
setVAlign
(
$value
);
return
;
case
"bgColor"
:
$this
->
setBgColor
(
$value
);
return
;
default
:
break
;
}
'@phan-var
\W
ikimedia
\I
DLeDOM
\H
elper
\H
TMLTableCellElement $this'
;
// @var \Wikimedia\IDLeDOM\Helper\HTMLTableCellElement $this
$this
->
_setMissingProp
(
$name
,
$value
);
}
/**
* @param string $name
*/
public
function
__unset
(
string
$name
):
void
{
'@phan-var
\W
ikimedia
\I
DLeDOM
\H
TMLTableCellElement $this'
;
// @var \Wikimedia\IDLeDOM\HTMLTableCellElement $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
"innerHTML"
:
break
;
case
"previousElementSibling"
:
break
;
case
"nextElementSibling"
:
break
;
case
"children"
:
break
;
case
"firstElementChild"
:
break
;
case
"lastElementChild"
:
break
;
case
"childElementCount"
:
break
;
case
"assignedSlot"
:
break
;
case
"namespaceURI"
:
break
;
case
"prefix"
:
break
;
case
"localName"
:
break
;
case
"tagName"
:
break
;
case
"id"
:
break
;
case
"className"
:
break
;
case
"classList"
:
break
;
case
"slot"
:
break
;
case
"attributes"
:
break
;
case
"shadowRoot"
:
break
;
case
"outerHTML"
:
break
;
case
"style"
:
break
;
case
"contentEditable"
:
break
;
case
"enterKeyHint"
:
break
;
case
"isContentEditable"
:
break
;
case
"inputMode"
:
break
;
case
"onload"
:
break
;
case
"dataset"
:
break
;
case
"nonce"
:
break
;
case
"tabIndex"
:
break
;
case
"title"
:
break
;
case
"lang"
:
break
;
case
"translate"
:
break
;
case
"dir"
:
break
;
case
"hidden"
:
break
;
case
"accessKey"
:
break
;
case
"accessKeyLabel"
:
break
;
case
"draggable"
:
break
;
case
"spellcheck"
:
break
;
case
"autocapitalize"
:
break
;
case
"innerText"
:
break
;
case
"offsetParent"
:
break
;
case
"offsetTop"
:
break
;
case
"offsetLeft"
:
break
;
case
"offsetWidth"
:
break
;
case
"offsetHeight"
:
break
;
case
"colSpan"
:
break
;
case
"rowSpan"
:
break
;
case
"headers"
:
break
;
case
"cellIndex"
:
break
;
case
"scope"
:
break
;
case
"abbr"
:
break
;
case
"align"
:
break
;
case
"axis"
:
break
;
case
"height"
:
break
;
case
"width"
:
break
;
case
"ch"
:
break
;
case
"chOff"
:
break
;
case
"noWrap"
:
break
;
case
"vAlign"
:
break
;
case
"bgColor"
:
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
);
}
/**
* @return string
*/
public
function
getHeaders
():
string
{
'@phan-var
\W
ikimedia
\I
DLeDOM
\E
lement $this'
;
// @var \Wikimedia\IDLeDOM\Element $this
return
$this
->
getAttribute
(
'headers'
)
??
''
;
}
/**
* @param string $val
*/
public
function
setHeaders
(
string
$val
):
void
{
'@phan-var
\W
ikimedia
\I
DLeDOM
\E
lement $this'
;
// @var \Wikimedia\IDLeDOM\Element $this
$this
->
setAttribute
(
'headers'
,
$val
);
}
/**
* @return string
*/
public
function
getScope
():
string
{
'@phan-var
\W
ikimedia
\I
DLeDOM
\E
lement $this'
;
// @var \Wikimedia\IDLeDOM\Element $this
$val
=
$this
->
getAttribute
(
'scope'
);
if
(
$val
!==
null
)
{
$val
=
strtr
(
$val
,
'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
,
'abcdefghijklmnopqrstuvwxyz'
);
switch
(
$val
)
{
case
'row'
:
case
'col'
:
case
'rowgroup'
:
case
'colgroup'
:
return
$val
;
default
:
return
''
;
}
}
return
''
;
}
/**
* @param string $val
*/
public
function
setScope
(
string
$val
):
void
{
'@phan-var
\W
ikimedia
\I
DLeDOM
\E
lement $this'
;
// @var \Wikimedia\IDLeDOM\Element $this
$this
->
setAttribute
(
'scope'
,
$val
);
}
/**
* @return string
*/
public
function
getAbbr
():
string
{
'@phan-var
\W
ikimedia
\I
DLeDOM
\E
lement $this'
;
// @var \Wikimedia\IDLeDOM\Element $this
return
$this
->
getAttribute
(
'abbr'
)
??
''
;
}
/**
* @param string $val
*/
public
function
setAbbr
(
string
$val
):
void
{
'@phan-var
\W
ikimedia
\I
DLeDOM
\E
lement $this'
;
// @var \Wikimedia\IDLeDOM\Element $this
$this
->
setAttribute
(
'abbr'
,
$val
);
}
/**
* @return string
*/
public
function
getAlign
():
string
{
'@phan-var
\W
ikimedia
\I
DLeDOM
\E
lement $this'
;
// @var \Wikimedia\IDLeDOM\Element $this
return
$this
->
getAttribute
(
'align'
)
??
''
;
}
/**
* @param string $val
*/
public
function
setAlign
(
string
$val
):
void
{
'@phan-var
\W
ikimedia
\I
DLeDOM
\E
lement $this'
;
// @var \Wikimedia\IDLeDOM\Element $this
$this
->
setAttribute
(
'align'
,
$val
);
}
/**
* @return string
*/
public
function
getAxis
():
string
{
'@phan-var
\W
ikimedia
\I
DLeDOM
\E
lement $this'
;
// @var \Wikimedia\IDLeDOM\Element $this
return
$this
->
getAttribute
(
'axis'
)
??
''
;
}
/**
* @param string $val
*/
public
function
setAxis
(
string
$val
):
void
{
'@phan-var
\W
ikimedia
\I
DLeDOM
\E
lement $this'
;
// @var \Wikimedia\IDLeDOM\Element $this
$this
->
setAttribute
(
'axis'
,
$val
);
}
/**
* @return string
*/
public
function
getHeight
():
string
{
'@phan-var
\W
ikimedia
\I
DLeDOM
\E
lement $this'
;
// @var \Wikimedia\IDLeDOM\Element $this
return
$this
->
getAttribute
(
'height'
)
??
''
;
}
/**
* @param string $val
*/
public
function
setHeight
(
string
$val
):
void
{
'@phan-var
\W
ikimedia
\I
DLeDOM
\E
lement $this'
;
// @var \Wikimedia\IDLeDOM\Element $this
$this
->
setAttribute
(
'height'
,
$val
);
}
/**
* @return string
*/
public
function
getWidth
():
string
{
'@phan-var
\W
ikimedia
\I
DLeDOM
\E
lement $this'
;
// @var \Wikimedia\IDLeDOM\Element $this
return
$this
->
getAttribute
(
'width'
)
??
''
;
}
/**
* @param string $val
*/
public
function
setWidth
(
string
$val
):
void
{
'@phan-var
\W
ikimedia
\I
DLeDOM
\E
lement $this'
;
// @var \Wikimedia\IDLeDOM\Element $this
$this
->
setAttribute
(
'width'
,
$val
);
}
/**
* @return string
*/
public
function
getCh
():
string
{
'@phan-var
\W
ikimedia
\I
DLeDOM
\E
lement $this'
;
// @var \Wikimedia\IDLeDOM\Element $this
return
$this
->
getAttribute
(
'char'
)
??
''
;
}
/**
* @param string $val
*/
public
function
setCh
(
string
$val
):
void
{
'@phan-var
\W
ikimedia
\I
DLeDOM
\E
lement $this'
;
// @var \Wikimedia\IDLeDOM\Element $this
$this
->
setAttribute
(
'char'
,
$val
);
}
/**
* @return string
*/
public
function
getChOff
():
string
{
'@phan-var
\W
ikimedia
\I
DLeDOM
\E
lement $this'
;
// @var \Wikimedia\IDLeDOM\Element $this
return
$this
->
getAttribute
(
'charoff'
)
??
''
;
}
/**
* @param string $val
*/
public
function
setChOff
(
string
$val
):
void
{
'@phan-var
\W
ikimedia
\I
DLeDOM
\E
lement $this'
;
// @var \Wikimedia\IDLeDOM\Element $this
$this
->
setAttribute
(
'charoff'
,
$val
);
}
/**
* @return bool
*/
public
function
getNoWrap
():
bool
{
'@phan-var
\W
ikimedia
\I
DLeDOM
\E
lement $this'
;
// @var \Wikimedia\IDLeDOM\Element $this
return
$this
->
hasAttribute
(
'nowrap'
);
}
/**
* @param bool $val
*/
public
function
setNoWrap
(
bool
$val
):
void
{
'@phan-var
\W
ikimedia
\I
DLeDOM
\E
lement $this'
;
// @var \Wikimedia\IDLeDOM\Element $this
if
(
$val
)
{
$this
->
setAttribute
(
'nowrap'
,
''
);
}
else
{
$this
->
removeAttribute
(
'nowrap'
);
}
}
/**
* @return string
*/
public
function
getVAlign
():
string
{
'@phan-var
\W
ikimedia
\I
DLeDOM
\E
lement $this'
;
// @var \Wikimedia\IDLeDOM\Element $this
return
$this
->
getAttribute
(
'valign'
)
??
''
;
}
/**
* @param string $val
*/
public
function
setVAlign
(
string
$val
):
void
{
'@phan-var
\W
ikimedia
\I
DLeDOM
\E
lement $this'
;
// @var \Wikimedia\IDLeDOM\Element $this
$this
->
setAttribute
(
'valign'
,
$val
);
}
/**
* @return string
*/
public
function
getBgColor
():
string
{
'@phan-var
\W
ikimedia
\I
DLeDOM
\E
lement $this'
;
// @var \Wikimedia\IDLeDOM\Element $this
return
$this
->
getAttribute
(
'bgcolor'
)
??
''
;
}
/**
* @param ?string $val
*/
public
function
setBgColor
(
?
string
$val
):
void
{
'@phan-var
\W
ikimedia
\I
DLeDOM
\E
lement $this'
;
// @var \Wikimedia\IDLeDOM\Element $this
$this
->
setAttribute
(
'bgcolor'
,
$val
??
''
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Aug 19 2026, 17:32 (5 w, 3 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
76/c3/1a93685435d0931e5adce8e8b41e
Default Alt Text
HTMLTableCellElement.php (20 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment