Exemplo n.º 1
0
 /**
  * Returns the string representation of $this->code in the language 
  * currently  set for PHP error messages in FileMaker Server Admin 
  * Console.
  * 
  * You should call getMessage() in most cases, if you are not sure whether
  * the error is a FileMaker Web Publishing Engine error with an error code.
  *
  * @return string Error description.
  */
 function getErrorString()
 {
     // Default to English.
     $lang = basename($this->_fm->getProperty('locale'));
     if (!$lang) {
         $lang = 'en';
     }
     static $strings = array();
     if (empty($strings[$lang])) {
         if (!@(include_once dirname(__FILE__) . '/Error/' . $lang . '.php')) {
             include_once dirname(__FILE__) . '/Error/en.php';
         }
         $strings[$lang] = $__FM_ERRORS;
     }
     if (isset($strings[$lang][$this->getCode()])) {
         return $strings[$lang][$this->getCode()];
     }
     return $strings[$lang][-1];
 }