MediaWiki  REL1_24
HTMLApiField.php
Go to the documentation of this file.
00001 <?php
00002 
00003 class HTMLApiField extends HTMLFormField {
00004     public function getTableRow( $value ) {
00005         return '';
00006     }
00007 
00008     public function getDiv( $value ) {
00009         return $this->getTableRow( $value );
00010     }
00011 
00012     public function getRaw( $value ) {
00013         return $this->getTableRow( $value );
00014     }
00015 
00016     public function getInputHTML( $value ) {
00017         return '';
00018     }
00019 }