get_translations_for_domain

Definition:
function &get_translations_for_domain( $domain ) {}

Returns the Translations instance for a domain. If there isn’t one, returns empty Translations instance.

Parameters

  • string $domain

Return values

returns:Translation instance

Source code

function &get_translations_for_domain( $domain ) {

	global $l10n;

	if ( !isset( $l10n[$domain] ) ) {

		$l10n[$domain] = new NOOP_Translations;

	}

	return $l10n[$domain];

}

1869

No comments yet... Be the first to leave a reply!

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: