/**
  * Get the etc dir for this CLIENT_CODE
  *
  * @return string
  */
 public static function getEtcDir()
 {
     if (self::$_etcDir === null) {
         self::$_etcDir = Mage::getConfig()->getOptions()->getEtcDir() . DS . 'multiclient' . DS . self::getClientCode();
     }
     return self::$_etcDir;
 }