mParams[ 'raw' ] ) ? $value : htmlspecialchars( $value ); } public function getTableRow( $value ) { if ( ! empty( $this->mParams[ 'rawrow' ] ) ) { return $value; } return parent::getTableRow( $value ); } /** * @since 1.20 */ public function getDiv( $value ) { if ( ! empty( $this->mParams[ 'rawrow' ] ) ) { return $value; } return parent::getDiv( $value ); } /** * @since 1.20 */ public function getRaw( $value ) { if ( ! empty( $this->mParams[ 'rawrow' ] ) ) { return $value; } return parent::getRaw( $value ); } protected function needsLabel() { return false; } }