mParent->msg() if $this->mParent is set * and wfMessage() otherwise. * * Parameters are the same as wfMessage(). * * @return Message object */ function msg() { $args = func_get_args(); if ( $this->mParent ) { $callback = array( $this->mParent, 'msg' ); } else { $callback = 'wfMessage'; } return call_user_func_array( $callback, $args ); } /** * 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 * * @param string $value The value the field was submitted with * @param array $alldata The data collected from the form * * @return Mixed Bool true on success, or String error to display. */ function validate( $value, $alldata ) { if ( isset( $this->mParams['required'] ) && $this->mParams['required'] !== false && $value === '' ) { return $this->msg( 'htmlform-required' )->parse(); } if ( isset( $this->mValidationCallback ) ) { return call_user_func( $this->mValidationCallback, $value, $alldata, $this->mParent ); } return true; } function filter( $value, $alldata ) { if ( isset( $this->mFilterCallback ) ) { $value = call_user_func( $this->mFilterCallback, $value, $alldata, $this->mParent ); } return $value; } /** * Should this field have a label, or is there no input element with the * appropriate id for the label to point to? * * @return bool True to output a label, false to suppress */ protected function needsLabel() { return true; } /** * Tell the field whether to generate a separate label element if its label * is blank. * * @since 1.22 * * @param bool $show Set to false to not generate a label. * @return void */ public function setShowEmptyLabel( $show ) { $this->mShowEmptyLabels = $show; } /** * 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. * * @param WebRequest $request * @return String the value */ function loadDataFromRequest( $request ) { if ( $request->getCheck( $this->mName ) ) { return $request->getText( $this->mName ); } else { return $this->getDefault(); } } /** * Initialise the object * * @param array $params Associative Array. See HTMLForm doc for syntax. * * @since 1.22 The 'label' attribute no longer accepts raw HTML, use 'label-raw' instead * @throws MWException */ function __construct( $params ) { $this->mParams = $params; # Generate the label from a message, if possible if ( isset( $params['label-message'] ) ) { $msgInfo = $params['label-message']; if ( is_array( $msgInfo ) ) { $msg = array_shift( $msgInfo ); } else { $msg = $msgInfo; $msgInfo = array(); } $this->mLabel = wfMessage( $msg, $msgInfo )->parse(); } elseif ( isset( $params['label'] ) ) { if ( $params['label'] === ' ' ) { // Apparently some things set   directly and in an odd format $this->mLabel = ' '; } else { $this->mLabel = htmlspecialchars( $params['label'] ); } } elseif ( isset( $params['label-raw'] ) ) { $this->mLabel = $params['label-raw']; } $this->mName = "wp{$params['fieldname']}"; if ( isset( $params['name'] ) ) { $this->mName = $params['name']; } $validName = Sanitizer::escapeId( $this->mName ); if ( $this->mName != $validName && !isset( $params['nodata'] ) ) { throw new MWException( "Invalid name '{$this->mName}' passed to " . __METHOD__ ); } $this->mID = "mw-input-{$this->mName}"; if ( isset( $params['default'] ) ) { $this->mDefault = $params['default']; } if ( isset( $params['id'] ) ) { $id = $params['id']; $validId = Sanitizer::escapeId( $id ); if ( $id != $validId ) { throw new MWException( "Invalid id '$id' passed to " . __METHOD__ ); } $this->mID = $id; } if ( isset( $params['cssclass'] ) ) { $this->mClass = $params['cssclass']; } if ( isset( $params['validation-callback'] ) ) { $this->mValidationCallback = $params['validation-callback']; } if ( isset( $params['filter-callback'] ) ) { $this->mFilterCallback = $params['filter-callback']; } if ( isset( $params['flatlist'] ) ) { $this->mClass .= ' mw-htmlform-flatlist'; } if ( isset( $params['hidelabel'] ) ) { $this->mShowEmptyLabels = false; } } /** * Get the complete table row for the input, including help text, * labels, and whatever. * * @param string $value The value to set the input to. * * @return string Complete HTML table row. */ function getTableRow( $value ) { list( $errors, $errorClass ) = $this->getErrorsAndErrorClass( $value ); $inputHtml = $this->getInputHTML( $value ); $fieldType = get_class( $this ); $helptext = $this->getHelpTextHtmlTable( $this->getHelpText() ); $cellAttributes = array(); if ( !empty( $this->mParams['vertical-label'] ) ) { $cellAttributes['colspan'] = 2; $verticalLabel = true; } else { $verticalLabel = false; } $label = $this->getLabelHtml( $cellAttributes ); $field = Html::rawElement( 'td', array( 'class' => 'mw-input' ) + $cellAttributes, $inputHtml . "\n$errors" ); if ( $verticalLabel ) { $html = Html::rawElement( 'tr', array( 'class' => 'mw-htmlform-vertical-label' ), $label ); $html .= Html::rawElement( 'tr', array( 'class' => "mw-htmlform-field-$fieldType {$this->mClass} $errorClass" ), $field ); } else { $html = Html::rawElement( 'tr', array( 'class' => "mw-htmlform-field-$fieldType {$this->mClass} $errorClass" ), $label . $field ); } return $html . $helptext; } /** * Get the complete div for the input, including help text, * labels, and whatever. * @since 1.20 * * @param string $value The value to set the input to. * * @return string Complete HTML table row. */ public function getDiv( $value ) { list( $errors, $errorClass ) = $this->getErrorsAndErrorClass( $value ); $inputHtml = $this->getInputHTML( $value ); $fieldType = get_class( $this ); $helptext = $this->getHelpTextHtmlDiv( $this->getHelpText() ); $cellAttributes = array(); $label = $this->getLabelHtml( $cellAttributes ); $outerDivClass = array( 'mw-input', 'mw-htmlform-nolabel' => ( $label === '' ) ); $field = Html::rawElement( 'div', array( 'class' => $outerDivClass ) + $cellAttributes, $inputHtml . "\n$errors" ); $divCssClasses = array( "mw-htmlform-field-$fieldType", $this->mClass, $errorClass ); if ( $this->mParent->isVForm() ) { $divCssClasses[] = 'mw-ui-vform-div'; } $html = Html::rawElement( 'div', array( 'class' => $divCssClasses ), $label . $field ); $html .= $helptext; return $html; } /** * Get the complete raw fields for the input, including help text, * labels, and whatever. * @since 1.20 * * @param string $value The value to set the input to. * * @return string Complete HTML table row. */ public function getRaw( $value ) { list( $errors, ) = $this->getErrorsAndErrorClass( $value ); $inputHtml = $this->getInputHTML( $value ); $helptext = $this->getHelpTextHtmlRaw( $this->getHelpText() ); $cellAttributes = array(); $label = $this->getLabelHtml( $cellAttributes ); $html = "\n$errors"; $html .= $label; $html .= $inputHtml; $html .= $helptext; return $html; } /** * Generate help text HTML in table format * @since 1.20 * * @param string|null $helptext * @return string */ public function getHelpTextHtmlTable( $helptext ) { if ( is_null( $helptext ) ) { return ''; } $row = Html::rawElement( 'td', array( 'colspan' => 2, 'class' => 'htmlform-tip' ), $helptext ); $row = Html::rawElement( 'tr', array(), $row ); return $row; } /** * Generate help text HTML in div format * @since 1.20 * * @param string|null $helptext * * @return String */ public function getHelpTextHtmlDiv( $helptext ) { if ( is_null( $helptext ) ) { return ''; } $div = Html::rawElement( 'div', array( 'class' => 'htmlform-tip' ), $helptext ); return $div; } /** * Generate help text HTML formatted for raw output * @since 1.20 * * @param string|null $helptext * @return String */ public function getHelpTextHtmlRaw( $helptext ) { return $this->getHelpTextHtmlDiv( $helptext ); } /** * Determine the help text to display * @since 1.20 * @return string */ public function getHelpText() { $helptext = null; if ( isset( $this->mParams['help-message'] ) ) { $this->mParams['help-messages'] = array( $this->mParams['help-message'] ); } if ( isset( $this->mParams['help-messages'] ) ) { foreach ( $this->mParams['help-messages'] as $name ) { $helpMessage = (array)$name; $msg = $this->msg( array_shift( $helpMessage ), $helpMessage ); if ( $msg->exists() ) { if ( is_null( $helptext ) ) { $helptext = ''; } else { $helptext .= $this->msg( 'word-separator' )->escaped(); // some space } $helptext .= $msg->parse(); // Append message } } } elseif ( isset( $this->mParams['help'] ) ) { $helptext = $this->mParams['help']; } return $helptext; } /** * Determine form errors to display and their classes * @since 1.20 * * @param string $value The value of the input * @return array */ public function getErrorsAndErrorClass( $value ) { $errors = $this->validate( $value, $this->mParent->mFieldData ); if ( $errors === true || ( !$this->mParent->getRequest()->wasPosted() && $this->mParent->getMethod() === 'post' ) ) { $errors = ''; $errorClass = ''; } else { $errors = self::formatErrors( $errors ); $errorClass = 'mw-htmlform-invalid-input'; } return array( $errors, $errorClass ); } function getLabel() { return is_null( $this->mLabel ) ? '' : $this->mLabel; } function getLabelHtml( $cellAttributes = array() ) { # Don't output a for= attribute for labels with no associated input. # Kind of hacky here, possibly we don't want these to be