Translation_Entry::merge_with()
Merges another translation entry with the current one.
Метод класса: Translation_Entry{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$Translation_Entry = new Translation_Entry(); $Translation_Entry->merge_with( $other );
- $other(Translation_Entry) (обязательный) (передается по ссылке — &)
- Other translation entry.
Список изменений
С версии 2.8.0 | Введена. |
Код Translation_Entry::merge_with() Translation Entry::merge with WP 6.7.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; } }