Merge "Watch user page and user talk page by default"
[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 }