Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F4117993
HTMLTextFieldWithButton.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
972 B
Referenced Files
None
Subscribers
None
HTMLTextFieldWithButton.php
View Options
<?php
namespace
MediaWiki\HTMLForm\Field
;
use
MediaWiki\HTMLForm\HTMLFormActionFieldLayout
;
/**
* Creates a text input field with a button assigned to the input field.
*
* @stable to extend
*/
class
HTMLTextFieldWithButton
extends
HTMLTextField
{
/** @var HTMLFormFieldWithButton */
protected
$mClassWithButton
=
null
;
/**
* @stable to call
* @inheritDoc
*/
public
function
__construct
(
$info
)
{
$this
->
mClassWithButton
=
new
HTMLFormFieldWithButton
(
$info
);
parent
::
__construct
(
$info
);
}
public
function
getInputHTML
(
$value
)
{
return
$this
->
mClassWithButton
->
getElement
(
parent
::
getInputHTML
(
$value
)
);
}
protected
function
getFieldLayoutOOUI
(
$inputField
,
$config
)
{
$buttonWidget
=
$this
->
mClassWithButton
->
getInputOOUI
(
''
);
return
new
HTMLFormActionFieldLayout
(
$inputField
,
$buttonWidget
,
$config
);
}
}
/** @deprecated class alias since 1.42 */
class_alias
(
HTMLTextFieldWithButton
::
class
,
'HTMLTextFieldWithButton'
);
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Wed, Aug 19, 02:27 (2 w, 2 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
d0/4a/0390c1ae4dc017e9f1a277ae556a
Default Alt Text
HTMLTextFieldWithButton.php (972 B)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment