6 class HTMLCheckField
extends HTMLFormField
{
7 function getInputHTML( $value ) {
8 if ( !empty( $this->mParams
['invert'] ) ) {
12 $attr = $this->getTooltipAndAccessKey();
13 $attr['id'] = $this->mID
;
15 $attr +
= $this->getAttributes( array( 'disabled', 'tabindex' ) );
17 if ( $this->mClass
!== '' ) {
18 $attr['class'] = $this->mClass
;
21 if ( $this->mParent
->isVForm() ) {
22 // Nest checkbox inside label.
23 return Html
::rawElement( 'label',
25 'class' => 'mw-ui-checkbox-label'
27 Xml
::check( $this->mName
, $value, $attr ) . // Html:rawElement doesn't escape contents.
28 htmlspecialchars( $this->mLabel
) );
30 return Xml
::check( $this->mName
, $value, $attr )
32 . Html
::rawElement( 'label', array( 'for' => $this->mID
), $this->mLabel
);
37 * For a checkbox, the label goes on the right hand side, and is
38 * added in getInputHTML(), rather than HTMLFormField::getRow()
46 * checkboxes don't need a label.
49 protected function needsLabel() {
54 * @param WebRequest $request
58 function loadDataFromRequest( $request ) {
60 if ( isset( $this->mParams
['invert'] ) && $this->mParams
['invert'] ) {
64 // GetCheck won't work like we want for checks.
65 // Fetch the value in either one of the two following case:
66 // - we have a valid token (form got posted or GET forged by the user)
67 // - checkbox name has a value (false or true), ie is not null
68 if ( $request->getCheck( 'wpEditToken' ) ||
$request->getVal( $this->mName
) !== null ) {
69 // XOR has the following truth table, which is what we want
70 // INVERT VALUE | OUTPUT
73 // false false | false
75 return $request->getBool( $this->mName
) xor $invert;
77 return $this->getDefault();