wiki.techinc.nl/includes/htmlform/fields/HTMLApiField.php
Bartosz Dziewoński 15692fa6d4 Move HTMLFormField subclasses to a separate directory
It's getting more difficult to navigate the files in includes/htmlform/
with every new field and every new helper class that is being added.

Change-Id: I92ce2356baf6151f17b2440970d5abdf86503820
2016-08-01 07:58:56 +00:00

23 lines
384 B
PHP

<?php
class HTMLApiField extends HTMLFormField {
public function getTableRow( $value ) {
return '';
}
public function getDiv( $value ) {
return $this->getTableRow( $value );
}
public function getRaw( $value ) {
return $this->getTableRow( $value );
}
public function getInputHTML( $value ) {
return '';
}
public function hasVisibleOutput() {
return false;
}
}