Merge "Begin exposing SiteConfiguration via site contexts"
[lhc/web/wiklou.git] / includes / htmlform / HTMLApiField.php
1 <?php
2 class HTMLApiField extends HTMLFormField {
3 public function getTableRow( $value ) {
4 return '';
5 }
6
7 public function getDiv( $value ) {
8 return $this->getTableRow( $value );
9 }
10
11 public function getRaw( $value ) {
12 return $this->getTableRow( $value );
13 }
14
15 public function getInputHTML( $value ) {
16 return '';
17 }
18 }