Translations::merge_originals_with()publicWP 2.8.0

Merges originals with existing entries.

Method of the class: Translations{}

No Hooks.

Return

null. Nothing (null).

Usage

$Translations = new Translations();
$Translations->merge_originals_with( $other );
$other(Translations) (required) (passed by reference — &)
-

Changelog

Since 2.8.0 Introduced.

Translations::merge_originals_with() code WP 6.5.2

public function merge_originals_with( &$other ) {
	foreach ( $other->entries as $entry ) {
		if ( ! isset( $this->entries[ $entry->key() ] ) ) {
			$this->entries[ $entry->key() ] = $entry;
		} else {
			$this->entries[ $entry->key() ]->merge_with( $entry );
		}
	}
}