MediaWiki  1.23.6
HTMLApiField.php
Go to the documentation of this file.
1 <?php
2 
3 class HTMLApiField extends HTMLFormField {
4  public function getTableRow( $value ) {
5  return '';
6  }
7 
8  public function getDiv( $value ) {
9  return $this->getTableRow( $value );
10  }
11 
12  public function getRaw( $value ) {
13  return $this->getTableRow( $value );
14  }
15 
16  public function getInputHTML( $value ) {
17  return '';
18  }
19 }
php
skin txt MediaWiki includes four core it has been set as the default in MediaWiki since the replacing Monobook it had been been the default skin since before being replaced by Vector largely rewritten in while keeping its appearance Several legacy skins were removed in the as the burden of supporting them became too heavy to bear Those in etc for skin dependent CSS etc for skin dependent JavaScript These can also be customised on a per user by etc This feature has led to a wide variety of user styles becoming that gallery is a good place to ending in php
Definition: skin.txt:62
HTMLApiField\getInputHTML
getInputHTML( $value)
This function must be implemented to return the HTML to generate the input object itself.
Definition: HTMLApiField.php:16
HTMLApiField\getDiv
getDiv( $value)
Get the complete div for the input, including help text, labels, and whatever.
Definition: HTMLApiField.php:8
HTMLFormField
The parent class to generate form fields.
Definition: HTMLFormField.php:7
$value
$value
Definition: styleTest.css.php:45
HTMLApiField\getTableRow
getTableRow( $value)
Get the complete table row for the input, including help text, labels, and whatever.
Definition: HTMLApiField.php:4
HTMLApiField
Definition: HTMLApiField.php:3
HTMLApiField\getRaw
getRaw( $value)
Get the complete raw fields for the input, including help text, labels, and whatever.
Definition: HTMLApiField.php:12