MediaWiki  1.29.2
HTMLFormFieldCloner Class Reference

A container for HTMLFormFields that allows for multiple copies of the set of fields to be displayed to and entered by the user. More...

Inheritance diagram for HTMLFormFieldCloner:
Collaboration diagram for HTMLFormFieldCloner:

Public Member Functions

 __construct ( $params)
 Initialise the object. More...
 
 cancelSubmit ( $values, $alldata)
 Override this function if the control can somehow trigger a form submission that shouldn't actually submit the HTMLForm. More...
 
 getDefault ()
 
 getInputHTML ( $values)
 This function must be implemented to return the HTML to generate the input object itself. More...
 
 loadDataFromRequest ( $request)
 Get the value that this input has been set to from a posted form, or the input's default value if it has not been set. More...
 
 validate ( $values, $alldata)
 Override this function to add specific validation checks on the field input. More...
 
- Public Member Functions inherited from HTMLFormField
 canDisplayErrors ()
 True if this field type is able to display errors; false if validation errors need to be displayed in the main HTMLForm error area. More...
 
 filter ( $value, $alldata)
 
 getAttributes (array $list)
 Returns the given attributes from the parameters. More...
 
 getDiv ( $value)
 Get the complete div for the input, including help text, labels, and whatever. More...
 
 getErrorsAndErrorClass ( $value)
 Determine form errors to display and their classes. More...
 
 getErrorsRaw ( $value)
 Determine form errors to display, returning them in an array. More...
 
 getHelpText ()
 Determine the help text to display. More...
 
 getHelpTextHtmlDiv ( $helptext)
 Generate help text HTML in div format. More...
 
 getHelpTextHtmlRaw ( $helptext)
 Generate help text HTML formatted for raw output. More...
 
 getHelpTextHtmlTable ( $helptext)
 Generate help text HTML in table format. More...
 
 getInline ( $value)
 Get the complete field as an inline element. More...
 
 getInputOOUI ( $value)
 Same as getInputHTML, but returns an OOUI object. More...
 
 getLabel ()
 
 getLabelHtml ( $cellAttributes=[])
 
 getNotices ()
 Determine notices to display for the field. More...
 
 getOOUI ( $value)
 Get the OOUI version of the div. More...
 
 getOptions ()
 Fetch the array of options from the field's parameters. More...
 
 getOptionsOOUI ()
 Get options and make them into arrays suitable for OOUI. More...
 
 getRaw ( $value)
 Get the complete raw fields for the input, including help text, labels, and whatever. More...
 
 getTableRow ( $value)
 Get the complete table row for the input, including help text, labels, and whatever. More...
 
 getTooltipAndAccessKey ()
 Returns the attributes required for the tooltip and accesskey. More...
 
 getVForm ( $value)
 Get the complete field for the input, including help text, labels, and whatever. More...
 
 hasVisibleOutput ()
 If this field has a user-visible output or not. More...
 
 isHidden ( $alldata)
 Test whether this field is supposed to be hidden, based on the values of the other form fields. More...
 
 msg ()
 Get a translated interface message. More...
 
 needsJSForHtml5FormValidation ()
 Whether this field requires the user agent to have JavaScript enabled for the client-side HTML5 form validation to work correctly. More...
 
 setShowEmptyLabel ( $show)
 Tell the field whether to generate a separate label element if its label is blank. More...
 
 skipLoadData ( $request)
 Skip this field when collecting data. More...
 

Protected Member Functions

 createFieldsForKey ( $key)
 Create the HTMLFormFields that go inside this element, using the specified key. More...
 
 getInputHTMLForKey ( $key, array $values)
 Get the input HTML for the specified key. More...
 
 needsLabel ()
 Should this field have a label, or is there no input element with the appropriate id for the label to point to? More...
 
 rekeyValuesArray ( $key, $values)
 Re-key the specified values array to match the names applied by createFieldsForKey(). More...
 
- Protected Member Functions inherited from HTMLFormField
 getFieldLayoutOOUI ( $inputField, $config)
 Get a FieldLayout (or subclass thereof) to wrap this field in when using OOUI output. More...
 
 getLabelAlignOOUI ()
 Get label alignment when generating field for OOUI. More...
 
 getMessage ( $value)
 Turns a *-message parameter (which could be a MessageSpecifier, or a message name, or a name + parameters array) into a Message. More...
 
 getNearestFieldByName ( $alldata, $name)
 Fetch a field value from $alldata for the closest field matching a given name. More...
 
 getOOUIModules ()
 Get the list of extra ResourceLoader modules which must be loaded client-side before it's possible to infuse this field's OOjs UI widget. More...
 
 isHiddenRecurse (array $alldata, array $params)
 Helper function for isHidden to handle recursive data structures. More...
 
 isSubmitAttempt (WebRequest $request)
 Can we assume that the request is an attempt to submit a HTMLForm, as opposed to an attempt to just view it? This can't normally be distinguished for e.g. More...
 
 shouldInfuseOOUI ()
 Whether the field should be automatically infused. More...
 

Protected Attributes

string $uniqueId
 String uniquely identifying this cloner instance and unlikely to exist otherwise in the generated HTML, while still being valid as part of an HTML id. More...
 
- Protected Attributes inherited from HTMLFormField
 $mClass = ''
 
 $mDefault
 
 $mDir
 
 $mFilterCallback
 
 $mHelpClass = false
 
 $mHideIf = null
 
 $mID
 
 $mLabel
 
 $mName
 
 $mOptions = false
 
 $mOptionsLabelsNotFromMessage = false
 
bool $mShowEmptyLabels = true
 If true will generate an empty div element with no label. More...
 
 $mValidationCallback
 
 $mVFormClass = ''
 

Static Private Attributes

static $counter = 0
 

Additional Inherited Members

- Static Public Member Functions inherited from HTMLFormField
static flattenOptions ( $options)
 flatten an array of options to a single array, for instance, a set of "<options>" inside "<optgroups>". More...
 
static forceToStringRecursive ( $array)
 Recursively forces values in an array to strings, because issues arise with integer 0 as a value. More...
 
- Public Attributes inherited from HTMLFormField
 $mParams
 
HTMLForm null $mParent
 
- Static Protected Member Functions inherited from HTMLFormField
static formatErrors ( $errors)
 Formats one or more errors as accepted by field validation-callback. More...
 

Detailed Description

A container for HTMLFormFields that allows for multiple copies of the set of fields to be displayed to and entered by the user.

Recognized parameters, besides the general ones, include: fields - HTMLFormField descriptors for the subfields this cloner manages. The format is just like for the HTMLForm. A field with key 'delete' is special: it must have type = submit and will serve to delete the group of fields. required - If specified, at least one group of fields must be submitted. format - HTMLForm display format to use when displaying the subfields: 'table', 'div', or 'raw'. row-legend - If non-empty, each group of subfields will be enclosed in a fieldset. The value is the name of a message key to use as the legend. create-button-message - Message to use as the text of the button to add an additional group of fields. delete-button-message - Message to use as the text of automatically- generated 'delete' button. Ignored if 'delete' is included in 'fields'.

In the generated HTML, the subfields will be named along the lines of "clonerName[index][fieldname]", with ids "clonerId--index--fieldid". 'index' may be a number or an arbitrary string, and may likely change when the page is resubmitted. Cloners may be nested, resulting in field names along the lines of "cloner1Name[index1][cloner2Name][index2][fieldname]" and corresponding ids.

Use of cloner may result in submissions of the page that are not submissions of the HTMLForm, when non-JavaScript clients use the create or remove buttons.

The result is an array, with values being arrays mapping subfield names to their values. On non-HTMLForm-submission page loads, there may also be additional (string) keys present with other types of values.

Since
1.23

Definition at line 38 of file HTMLFormFieldCloner.php.

Constructor & Destructor Documentation

◆ __construct()

HTMLFormFieldCloner::__construct (   $params)

Initialise the object.

Parameters
array$paramsAssociative Array. See HTMLForm doc for syntax.
Since
1.22 The 'label' attribute no longer accepts raw HTML, use 'label-raw' instead
Exceptions
MWException

Reimplemented from HTMLFormField.

Definition at line 48 of file HTMLFormFieldCloner.php.

References $params, and class.

Member Function Documentation

◆ cancelSubmit()

HTMLFormFieldCloner::cancelSubmit (   $value,
  $alldata 
)

Override this function if the control can somehow trigger a form submission that shouldn't actually submit the HTMLForm.

Since
1.23
Parameters
string | array$valueThe value the field was submitted with
array$alldataThe data collected from the form
Returns
bool True to cancel the submission

Reimplemented from HTMLFormField.

Definition at line 214 of file HTMLFormFieldCloner.php.

References $value, as, and createFieldsForKey().

◆ createFieldsForKey()

HTMLFormFieldCloner::createFieldsForKey (   $key)
protected

Create the HTMLFormFields that go inside this element, using the specified key.

Parameters
string$keyArray key under which these fields should be named
Returns
HTMLFormField[]

Definition at line 86 of file HTMLFormFieldCloner.php.

References HTMLFormField\$mHideIf, $name, as, and HTMLForm\loadInputFromParameters().

Referenced by cancelSubmit(), getDefault(), getInputHTMLForKey(), loadDataFromRequest(), and validate().

◆ getDefault()

HTMLFormFieldCloner::getDefault ( )

Reimplemented from HTMLFormField.

Definition at line 193 of file HTMLFormFieldCloner.php.

References $ret, as, and createFieldsForKey().

Referenced by loadDataFromRequest().

◆ getInputHTML()

HTMLFormFieldCloner::getInputHTML (   $value)

This function must be implemented to return the HTML to generate the input object itself.

It should not implement the surrounding table cells/rows, or labels/help messages.

Parameters
string$valueThe value to set the input to; eg a default text for a text input.
Returns
string Valid HTML.

Reimplemented from HTMLFormField.

Definition at line 361 of file HTMLFormFieldCloner.php.

References $html, $name, $template, $value, array(), as, getInputHTMLForKey(), HTMLFormField\getMessage(), HTMLForm\loadInputFromParameters(), Html\rawElement(), and text.

◆ getInputHTMLForKey()

HTMLFormFieldCloner::getInputHTMLForKey (   $key,
array  $values 
)
protected

Get the input HTML for the specified key.

Parameters
string$keyArray key under which the fields should be named
array$values
Returns
string

Definition at line 275 of file HTMLFormFieldCloner.php.

References $attribs, $html, $name, $params, $value, as, createFieldsForKey(), Xml\fieldset(), HTMLFormField\getMessage(), Html\hidden(), list, HTMLForm\loadInputFromParameters(), HTMLFormField\msg(), Html\rawElement(), and text.

Referenced by getInputHTML().

◆ loadDataFromRequest()

HTMLFormFieldCloner::loadDataFromRequest (   $request)

Get the value that this input has been set to from a posted form, or the input's default value if it has not been set.

Parameters
WebRequest$request
Returns
string The value

Reimplemented from HTMLFormField.

Definition at line 138 of file HTMLFormFieldCloner.php.

References $request, $ret, $value, as, createFieldsForKey(), getDefault(), and rekeyValuesArray().

◆ needsLabel()

HTMLFormFieldCloner::needsLabel ( )
protected

Should this field have a label, or is there no input element with the appropriate id for the label to point to?

Returns
bool True to output a label, false to suppress

Reimplemented from HTMLFormField.

Definition at line 134 of file HTMLFormFieldCloner.php.

◆ rekeyValuesArray()

HTMLFormFieldCloner::rekeyValuesArray (   $key,
  $values 
)
protected

Re-key the specified values array to match the names applied by createFieldsForKey().

Parameters
string$keyArray key under which these fields should be named
array$valuesValues array from the request
Returns
array

Definition at line 125 of file HTMLFormFieldCloner.php.

References $name, $value, and as.

Referenced by loadDataFromRequest().

◆ validate()

HTMLFormFieldCloner::validate (   $value,
  $alldata 
)

Override this function to add specific validation checks on the field input.

Don't forget to call parent::validate() to ensure that the user-defined callback mValidationCallback is still run

Parameters
string | array$valueThe value the field was submitted with
array$alldataThe data collected from the form
Returns
bool|string|Message True on success, or String/Message error to display, or false to fail validation without displaying an error.

Reimplemented from HTMLFormField.

Definition at line 234 of file HTMLFormFieldCloner.php.

References $value, as, createFieldsForKey(), and HTMLFormField\msg().

Member Data Documentation

◆ $counter

HTMLFormFieldCloner::$counter = 0
staticprivate

Definition at line 39 of file HTMLFormFieldCloner.php.

◆ $uniqueId

string HTMLFormFieldCloner::$uniqueId
protected

String uniquely identifying this cloner instance and unlikely to exist otherwise in the generated HTML, while still being valid as part of an HTML id.

Definition at line 46 of file HTMLFormFieldCloner.php.


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