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!