blob: 8945b15f5ce3445036da1b9f0449222986fdddb0 (
plain)
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
|
<?php
namespace OOUI;
/**
* Label widget.
*/
class LabelWidget extends Widget {
/* Static Properties */
public static $tagName = 'span';
/* Properties */
/**
* Associated input element.
*
* @var InputWidget|null
*/
protected $input;
/**
* @param array $config Configuration options
* @param InputWidget $config['input'] Input widget this label is for
*/
public function __construct( array $config = array() ) {
// Parent constructor
parent::__construct( $config );
// Mixins
$this->mixin( new LabelElement( $this,
array_merge( $config, array( 'labelElement' => $this ) ) ) );
// Properties
$this->input = isset( $config['input'] ) ? $config['input'] : null;
// Initialization
$this->addClasses( array( 'oo-ui-labelWidget' ) );
}
public function getConfig( &$config ) {
if ( $this->input !== null ) {
$config['input'] = $this->input;
}
return parent::getConfig( $config );
}
}
|