Uses
| Uses | Description |
|---|---|
| wp-includes/pomo/entry.php: Translation_Entry::__construct() |
(array|Translation_Entry) (Required)
(bool)
File: wp-includes/pomo/translations.php
function add_entry_or_merge( $entry ) {
if ( is_array( $entry ) ) {
$entry = new Translation_Entry( $entry );
}
$key = $entry->key();
if ( false === $key ) {
return false;
}
if ( isset( $this->entries[ $key ] ) ) {
$this->entries[ $key ]->merge_with( $entry );
} else {
$this->entries[ $key ] = &$entry;
}
return true;
}
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/translations/add_entry_or_merge