blob: b933a3094c2132505b9a5d62d0adfd0e2b1305e1 (
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
|
<?php
namespace OOUI;
/**
* Indicator widget.
*
* See IndicatorElement for more information.
*/
class IndicatorWidget extends Widget {
/* Static Properties */
public static $tagName = 'span';
/**
* @param array $config Configuration options
*/
public function __construct( array $config = array() ) {
// Parent constructor
parent::__construct( $config );
// Mixins
$this->mixin( new IndicatorElement( $this,
array_merge( $config, array( 'indicatorElement' => $this ) ) ) );
$this->mixin( new TitledElement( $this,
array_merge( $config, array( 'titled' => $this ) ) ) );
// Initialization
$this->addClasses( array( 'oo-ui-indicatorWidget' ) );
}
}
|