Example #1
0
 /**
  * Text Domain
  * 
  * Switch the text domain.
  * 
  * @param string|null $domainName   The name of the domain, set to default when null.
  */
 static function textDomain($domainName = null)
 {
     self::$textDomain = $domainName ?: 'default';
     self::loadLanguage();
 }