Automattic\WooCommerce\Internal\Admin\EmailPreview

EmailPreview::restore_localeprivateWC 1.0

Restore the original locale.

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

Хуков нет.

Возвращает

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

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

// private - только в коде основоного (родительского) класса
$result = $this->restore_locale();

Код EmailPreview::restore_locale() WC 10.8.1

private function restore_locale() {
	if ( $this->locale_switched ) {
		wc_restore_locale();
		$this->locale_switched = false;
	}
}