wiki.techinc.nl/includes/htmlform/fields/HTMLApiField.php
Nikki Nikkhoui 6b0e9eafe1 HTML Classes stability annotations
Add stability annotations for HTML classes.

Bug: T247862
Change-Id: I4dad7b98213ceceb8c04b24e5d52e6fecadb3538
2020-07-13 14:54:28 +02:00

25 lines
411 B
PHP

<?php
/*
* @stable to extend
*/
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;
}
}