コード例 #1
0
ファイル: storage.php プロジェクト: pkdevboxy/webmail-lite
 /**
  * @param api_Settings $oSettings
  * @return &IDbHelper
  */
 public static function &CreateCommandCreatorHelper(api_Settings $oSettings)
 {
     if (is_object(CDbCreator::$oCommandCreatorHelper)) {
         return CDbCreator::$oCommandCreatorHelper;
     }
     CDbCreator::$oCommandCreatorHelper = CDbCreator::CommandCreatorHelperFabric($oSettings->GetConf('Common/DBType'));
     return CDbCreator::$oCommandCreatorHelper;
 }