/**
  * Get the "local.xml" for this CLIENT_CODE
  *
  * @return string
  */
 public static function getLocalXmlFile()
 {
     if (self::$_localXmlFile === null) {
         self::$_localXmlFile = self::getEtcDir() . DS . 'local.xml';
     }
     return self::$_localXmlFile;
 }