Translations::merge_originals_with()publicWP 1.0

Method of the class: Translations{}

No Hooks.

Return

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

Usage

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

Translations::merge_originals_with() code WP 6.3

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