blob: 5f1317c4c4ac3d3e80f395da96d0ff2a4a20903c (
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
<?php
namespace OOUI;
/**
* Element with a title.
*
* Titles are rendered by the browser and are made visible when hovering the element. Titles are
* not visible on touch devices.
*
* @abstract
*/
class TitledElement extends ElementMixin {
/**
* Title text.
*
* @var string
*/
protected $title = null;
public static $targetPropertyName = 'titled';
/**
* @param Element $element Element being mixed into
* @param array $config Configuration options
* @param string $config['title'] Title. If not provided, the static property 'title' is used.
*/
public function __construct( Element $element, array $config = array() ) {
// Parent constructor
$target = isset( $config['titled'] ) ? $config['titled'] : $element;
parent::__construct( $element, $target, $config );
// Initialization
$this->setTitle(
isset( $config['title'] ) ? $config['title'] :
( isset( $element::$title ) ? $element::$title : null )
);
}
/**
* Set title.
*
* @param string|null $title Title text or null for no title
* @chainable
*/
public function setTitle( $title ) {
if ( $this->title !== $title ) {
$this->title = $title;
if ( $title !== null ) {
$this->target->setAttributes( array( 'title' => $title ) );
} else {
$this->target->removeAttributes( array( 'title' ) );
}
}
return $this;
}
/**
* Get title.
*
* @return string Title string
*/
public function getTitle() {
return $this->title;
}
public function getConfig( &$config ) {
if ( $this->title !== null ) {
$config['title'] = $this->title;
}
return parent::getConfig( $config );
}
}
|