Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F1432436
LabelWidget.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
LabelWidget.php
View Options
<?php
namespace
OOUI
;
/**
* Label widget.
*/
class
LabelWidget
extends
Widget
{
use
LabelElement
;
/* Static Properties */
/** @var string */
public
static
$tagName
=
'label'
;
/* Properties */
/**
* Associated input element.
*
* @var InputWidget|null
*/
protected
$input
;
/**
* @param array $config Configuration options
* - InputWidget $config['input'] Input widget this label is for
*/
public
function
__construct
(
array
$config
=
[]
)
{
// Parent constructor
parent
::
__construct
(
$config
);
// Traits
$this
->
initializeLabelElement
(
array_merge
(
[
'labelElement'
=>
$this
],
$config
)
);
// Properties
$this
->
input
=
$config
[
'input'
]
??
null
;
// Initialization
if
(
$this
->
input
&&
$this
->
input
->
getInputId
()
)
{
$this
->
setAttributes
(
[
'for'
=>
$this
->
input
->
getInputId
()
]
);
}
$this
->
addClasses
(
[
'oo-ui-labelWidget'
]
);
}
/** @inheritDoc */
public
function
getConfig
(
&
$config
)
{
if
(
$this
->
input
!==
null
)
{
$config
[
'input'
]
=
$this
->
input
;
}
return
parent
::
getConfig
(
$config
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sat, May 16, 21:45 (1 d, 4 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
5e/cb/12afa5aea7205fd5a3c9b292df62
Default Alt Text
LabelWidget.php (1 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment