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