コード例 #1
0
ファイル: EWebApplication.php プロジェクト: a303/smart_lp2
 /**
  * This function is here because we aren't creating a locale file for every client.
  * Thus we provide a fallback to "en".
  */
 public function getLocale($localeID = null)
 {
     try {
         return parent::getLocale($localeID);
     } catch (Exception $e) {
         return CLocale::getInstance('en');
     }
 }