Translation_Entry::merge_with()publicWP 1.0

Method of the class: Translation_Entry{}

No Hooks.

Return

null. Ничего (null).

Usage

$Translation_Entry = new Translation_Entry();
$Translation_Entry->merge_with( $other );
$other(object) (required) (passed by reference — &)
-

Translation_Entry::merge_with() code WP 6.4.1

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;
	}
}