PHPSessionHandler: Implement SessionHandlerInterface
[mediawiki.git] / includes / htmlform / HTMLApiField.php
blob24a253eddd80648755661bf4700e4bd6770f271a
1 <?php
3 class HTMLApiField extends HTMLFormField {
4 public function getTableRow( $value ) {
5 return '';
8 public function getDiv( $value ) {
9 return $this->getTableRow( $value );
12 public function getRaw( $value ) {
13 return $this->getTableRow( $value );
16 public function getInputHTML( $value ) {
17 return '';
20 public function hasVisibleOutput() {
21 return false;