Пример #1
0
 public static function getConfNative($name, $idc = null, $flags = QconfConfig::QCONF_WAIT)
 {
     if ($idc === null) {
         $idc = self::getIdc();
     }
     if ($idc == null || $name == null) {
         return null;
     }
     QConfig::setIdc($idc);
     return QConfig::Get($name, $flags);
 }