Translations::merge_originals_with()
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() 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 ); } } }