Go to the documentation of this file.
21 parent::__construct( $params );
23 $type = !empty( $params[
'options'] ) ?
'selectorother' :
'text';
33 return $this->relativeField->getInputHTML( $value );
46 'mediawiki.widgets.expiry',
48 $this->relativeField->getOOUIModules()
57 $this->relativeField->getInputOOUI( $value ),
60 'required' => $this->mParams[
'required'] ??
false,
69 return $this->relativeField->loadDataFromRequest( $request );
81 $params[
'type'] =
$type;
82 $params[
'class'] = $class;
85 unset( $params[
'label-message'] );
86 return new $class( $params );
getInputHTML( $value)
This function must be implemented to return the HTML to generate the input object itself....
getInputOOUI( $value)
Same as getInputHTML, but returns an OOUI object.Defaults to false, which getOOUI will interpret as "...
shouldInfuseOOUI()
Whether the field should be automatically infused.
loadDataFromRequest( $request)
Get the value that this input has been set to from a posted form, or the input's default value if it ...
HTMLFormField $relativeField
getFieldByType( $type)
Get the HTMLForm field by the type string.
Expiry Field that allows the user to specify a precise date or a relative date string.
getOOUIModules()
Get the list of extra ResourceLoader modules which must be loaded client-side before it's possible to...
__construct(array $params=[])
Relative Date Time Field.