OOUI
Object-Oriented User Interface
OOUI\CheckboxInputWidget Class Reference

Checkbox input widget. More...

+ Inheritance diagram for OOUI\CheckboxInputWidget:
+ Collaboration diagram for OOUI\CheckboxInputWidget:

Public Member Functions

 __construct (array $config=[])
 
 setSelected ( $state)
 Set selection state of this checkbox. More...
 
 isSelected ()
 Check if this checkbox is selected. More...
 
 setIndeterminate ( $state)
 Set indeterminate state of this checkbox. More...
 
 isIndeterminate ()
 Check if this checkbox is indeterminate. More...
 
 getConfig (&$config)
 @inheritDoc
 
- Public Member Functions inherited from OOUI\InputWidget
 getValue ()
 Get the value of the input. More...
 
 setDir ( $dir)
 Set the directionality of the input. More...
 
 setValue ( $value)
 Set the value of the input. More...
 
 setDisabled ( $disabled)
 @inheritDoc
 
 setInputId ( $id)
 Set the 'id' attribute of the <input> element. More...
 
- Public Member Functions inherited from OOUI\Widget
 isDisabled ()
 Check if the widget is disabled. More...
 
 getInputId ()
 Get an ID of a labelable node which is part of this widget, if any, to be used for <label for> value. More...
 
 setLabelledBy ( $id)
 Set the element with the given ID as a label for this widget. More...
 
- Public Member Functions inherited from OOUI\Element
 getTagName ()
 Get the HTML tag name. More...
 
 toggle ( $show=null)
 Toggle visibility of an element. More...
 
 getData ()
 Get element data. More...
 
 setData ( $data)
 Set element data. More...
 
 supports ( $methods)
 Check if element supports one or more methods. More...
 
 registerConfigCallback (callable $func)
 Register an additional function to call when building the config. More...
 
 toString ()
 Render element into HTML. More...
 
- Public Member Functions inherited from OOUI\Tag
 __construct ( $tag='div')
 Create element. More...
 
 hasClass ( $class)
 Check for CSS class. More...
 
 addClasses (array $classes)
 Add CSS classes. More...
 
 removeClasses (array $classes)
 Remove CSS classes. More...
 
 toggleClasses (array $classes, $toggle=null)
 Toggle CSS classes. More...
 
 getTag ()
 
 getAttribute ( $key)
 Get HTML attribute value. More...
 
 setAttributes (array $attributes)
 Add HTML attributes. More...
 
 removeAttributes (array $keys)
 Remove HTML attributes. More...
 
 removeContent (... $content)
 Remove any items that match by reference. More...
 
 appendContent (... $content)
 Add content to the end. More...
 
 prependContent (... $content)
 Add content to the beginning. More...
 
 clearContent ()
 Remove all content. More...
 
 getElementGroup ()
 Get group element is in. More...
 
 setElementGroup ( $group)
 Set group element is in. More...
 
 setInfusable ( $infusable)
 Enable widget for client-side infusion. More...
 
 isInfusable ()
 Get client-side infusability. More...
 
 ensureInfusableId ()
 Ensure that this given Tag is infusable and has a unique id attribute. More...
 
 __toString ()
 Magic method implementation. More...
 

Static Public Attributes

static string $tagName = 'span'
 
- Static Public Attributes inherited from OOUI\Element
static string $tagName = 'div'
 HTML tag name. More...
 
static string $defaultDir = 'ltr'
 Default text direction, used for some layout calculations. More...
 

Protected Member Functions

 getInputElement ( $config)
 @inheritDoc
 
- Protected Member Functions inherited from OOUI\InputWidget
 cleanUpValue ( $value)
 Clean up incoming value. More...
 
- Protected Member Functions inherited from OOUI\Element
 getJavaScriptClassName ()
 The class name of the JavaScript version of this widget. More...
 
 getGeneratedAttributes ()
 

Protected Attributes

bool $selected
 Whether the checkbox is selected.
 
bool $indeterminate
 
IconWidget $checkIcon
 
- Protected Attributes inherited from OOUI\InputWidget
Tag $input
 Input element.
 
string $value = ''
 Input value.
 
- Protected Attributes inherited from OOUI\Widget
bool $disabled = false
 Disabled. More...
 
- Protected Attributes inherited from OOUI\Element
mixed $data = null
 Element data.
 
bool $visible = true
 
array $ownClasses = []
 Strings of the CSS classes explicitly configured for this element (as opposed to $classes, which contains all classes for this element).
 
callable[] $configCallbacks = []
 
- Protected Attributes inherited from OOUI\Tag
string $tag = ''
 Tag name for this instance. More...
 
array $attributes = []
 Attributes. More...
 
array $classes = []
 Classes. More...
 
array $content = []
 Content. More...
 
GroupElement null $elementGroup = null
 Group. More...
 
bool $infusable = false
 Infusion support. More...
 

Additional Inherited Members

- Static Public Member Functions inherited from OOUI\Element
static warnDeprecation ( $message='')
 Emits a deprecation warning with provided message. More...
 
static getDir (Tag $element)
 Get the direction of the user interface for a given element. More...
 
static setDefaultDir ( $dir)
 Set the default direction of the user interface. More...
 
static configFromHtmlAttributes (array $attrs)
 A helper method to massage an array of HTML attributes into a format that is more likely to work with an OOUI PHP element, camel-casing attribute names and setting values of boolean ones to true. More...
 
- Static Public Member Functions inherited from OOUI\Tag
static generateElementId ()
 Generate a unique ID for element. More...
 
static isSafeUrl ( $url)
 Check whether user-supplied URL is safe, that is, whether outputting it will not result in XSS vulnerability. More...
 

Detailed Description

Checkbox input widget.

Constructor & Destructor Documentation

◆ __construct()

OOUI\CheckboxInputWidget::__construct ( array  $config = [])
Parameters
array$configConfiguration options
  • bool $config['selected'] Whether the checkbox is initially selected (default: false)
  • bool $config['indeterminate'] Whether the checkbox is in the indeterminate state. (default: false)

Reimplemented from OOUI\InputWidget.

Member Function Documentation

◆ isIndeterminate()

OOUI\CheckboxInputWidget::isIndeterminate ( )

Check if this checkbox is indeterminate.

Returns
bool Checkbox is indeterminate

◆ isSelected()

OOUI\CheckboxInputWidget::isSelected ( )

Check if this checkbox is selected.

Returns
bool Checkbox is selected

◆ setIndeterminate()

OOUI\CheckboxInputWidget::setIndeterminate (   $state)

Set indeterminate state of this checkbox.

Parameters
bool$stateWhether the checkbox is indeterminate
Returns
$this

◆ setSelected()

OOUI\CheckboxInputWidget::setSelected (   $state)

Set selection state of this checkbox.

Parameters
bool$stateWhether the checkbox is selected
Returns
$this

The documentation for this class was generated from the following file: