HTMLApiField.php 384 B

123456789101112131415161718192021222324
  1. <?php
  2. class HTMLApiField extends HTMLFormField {
  3. public function getTableRow( $value ) {
  4. return '';
  5. }
  6. public function getDiv( $value ) {
  7. return $this->getTableRow( $value );
  8. }
  9. public function getRaw( $value ) {
  10. return $this->getTableRow( $value );
  11. }
  12. public function getInputHTML( $value ) {
  13. return '';
  14. }
  15. public function hasVisibleOutput() {
  16. return false;
  17. }
  18. }