Automattic\WooCommerce\Internal\Admin\EmailPreview

EmailPreview::restore_localeprivateWC 1.0

Restore the original locale.

Method of the class: EmailPreview{}

No Hooks.

Returns

null. Nothing (null).

Usage

// private - for code of main (parent) class only
$result = $this->restore_locale();

EmailPreview::restore_locale() code WC 10.7.0

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