mParams[ 'required' ] ); } public function getTableRow( $value ) { $params = array(); if ( $this->mID ) { $params[ 'id' ] = $this->mID; } $this->mParent->addHiddenField( $this->mName, $this->mDefault, $params ); return ''; } /** * @since 1.20 */ public function getDiv( $value ) { return $this->getTableRow( $value ); } /** * @since 1.20 */ public function getRaw( $value ) { return $this->getTableRow( $value ); } public function getInputHTML( $value ) { return ''; } }