WP_Translation_File::import()protectedWP 6.5.0

Imports translations from another file.

Метод класса: WP_Translation_File{}

Хуков нет.

Возвращает

true|false. True on success, false otherwise.

Использование

// protected - в коде основоного (родительского) или дочернего класса
$result = $this->import( $source ): bool;
$source(WP_Translation_File) (обязательный)
Source file.

Список изменений

С версии 6.5.0 Введена.

Код WP_Translation_File::import() WP 6.6.2

protected function import( WP_Translation_File $source ): bool {
	if ( null !== $source->error() ) {
		return false;
	}

	$this->headers = $source->headers();
	$this->entries = $source->entries();
	$this->error   = $source->error();

	return null === $this->error;
}