Convert Special:DeletedContributions to use OOUI.
[lhc/web/wiklou.git] / includes / htmlform / HTMLApiField.php
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
20 public function hasVisibleOutput() {
21 return false;
22 }
23 }