WP_Translation_File::__construct()protectedWP 6.5.0

Constructor.

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

Хуков нет.

Возвращает

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

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

// protected - в коде основоного (родительского) или дочернего класса
$result = $this->__construct( $file );
$file(строка) (обязательный)
File to load.

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

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

Код WP_Translation_File::__construct() WP 6.6.2

protected function __construct( string $file ) {
	$this->file = $file;
}