Exemplo n.º 1
0
 /**
  * Set the default language information and time zone (optionally).
  *
  * @param array $language
  * @param string|null $timeZoneString String time zone (eg, Europe/London)
  */
 public static function setDefaultLanguage(array $language, $timeZoneString = null)
 {
     self::$_language = $language;
     if ($timeZoneString) {
         self::setDefaultTimeZone($timeZoneString);
     }
 }