W3cubDocs

/WordPress

Translation_Entry::merge_with( Translation_Entry $other )

Merges another translation entry with the current one.

Parameters

$otherTranslation_Entryrequired
Other translation entry.

Source

public function merge_with( &$other ) {
	$this->flags      = array_unique( array_merge( $this->flags, $other->flags ) );
	$this->references = array_unique( array_merge( $this->references, $other->references ) );
	if ( $this->extracted_comments !== $other->extracted_comments ) {
		$this->extracted_comments .= $other->extracted_comments;
	}
}

Changelog

Version Description
2.8.0 Introduced.

© 2003–2024 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/translation_entry/merge_with