blob: 12bea5a7eb3e5c896ac4a69dd71505f908931aee (
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
|
<?php
/**
* Code for JavaScript enhanced \<option> selectors.
* @file
* @author Niklas Laxström
* @copyright Copyright © 2010 Niklas Laxström
* @license GPL-2.0+
*/
/**
* Code for JavaScript enhanced \<option> selectors.
*/
class JsSelectToInput {
/// Id of the text field where stuff is appended
protected $targetId;
/// Id of the \<option> field
protected $sourceId;
/**
* @var XmlSelect
*/
protected $select;
/// Id on the button
protected $buttonId;
/**
* @var string Text for the append button
*/
protected $msg = 'translate-jssti-add';
public function __construct( XmlSelect $select = null ) {
$this->select = $select;
}
/**
* Set the source id of the selector
* @param string $id
*/
public function setSourceId( $id ) {
$this->sourceId = $id;
}
/// @return string
public function getSourceId() {
return $this->sourceId;
}
/**
* Set the id of the target text field
* @param string $id
*/
public function setTargetId( $id ) {
$this->targetId = $id;
}
/**
* @return string
*/
public function getTargetId() {
return $this->targetId;
}
/**
* Set the message key.
* @param string $message
*/
public function setMessage( $message ) {
$this->msg = $message;
}
/// @return string Message key.
public function getMessage() {
return $this->msg;
}
/**
* Returns the whole input element and injects needed JavaScript
* @throws MWException
* @return string Html code.
*/
public function getHtmlAndPrepareJS() {
if ( $this->sourceId === false ) {
if ( is_callable( array( $this->select, 'getAttribute' ) ) ) {
$this->sourceId = $this->select->getAttribute['id'];
}
if ( !$this->sourceId ) {
throw new MWException( "ID needs to be specified for the selector" );
}
}
self::injectJs();
$html = $this->select->getHtml();
$html .= $this->getButton( $this->msg, $this->sourceId, $this->targetId );
return $html;
}
/**
* Constructs the append button.
* @param string $msg Message key.
* @param string $source Html id.
* @param string $target Html id.
* @return string
*/
protected function getButton( $msg, $source, $target ) {
$html = Xml::element( 'input', array(
'type' => 'button',
'value' => wfMessage( $msg )->text(),
'onclick' => Xml::encodeJsCall( 'appendFromSelect', array( $source, $target ) )
) );
return $html;
}
/// Inject needed JavaScript in the page.
public static function injectJs() {
static $done = false;
if ( $done ) {
return;
}
RequestContext::getMain()->getOutput()->addModules( 'ext.translate.selecttoinput' );
}
}
|