当前位置: 首页>>代码示例>>PHP>>正文


PHP BxDolModuleDb::getOne方法代码示例

本文整理汇总了PHP中BxDolModuleDb::getOne方法的典型用法代码示例。如果您正苦于以下问题:PHP BxDolModuleDb::getOne方法的具体用法?PHP BxDolModuleDb::getOne怎么用?PHP BxDolModuleDb::getOne使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在BxDolModuleDb的用法示例。


在下文中一共展示了BxDolModuleDb::getOne方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: BxDolModuleDb

 function _addLanguage($aLanguage, $aLangInfo)
 {
     $oDb = new BxDolModuleDb();
     if (getLangIdByName($aLangInfo['Name'])) {
         // language already exists
         return false;
     }
     $sLangName = $aLangInfo['Name'];
     $sLangFlag = $aLangInfo['Flag'];
     $sLangTitle = $aLangInfo['Title'];
     $sLangDir = isset($aLangInfo['Direction']) && $aLangInfo['Direction'] ? $aLangInfo['Direction'] : 'LTR';
     $sLangCountryCode = isset($aLangInfo['LanguageCountry']) && $aLangInfo['LanguageCountry'] ? $aLangInfo['LanguageCountry'] : $aLangInfo['Name'] . '_' . strtoupper($aLangInfo['Flag']);
     if (!$oDb->res("INSERT INTO `sys_localization_languages` VALUES (?, ?, ?, ?, ?, ?)", [NULL, $sLangName, $sLangFlag, $sLangTitle, $sLangDir, $sLangCountryCode])) {
         return false;
     }
     $iLangKey = $oDb->lastId();
     foreach ($aLanguage as $sKey => $sValue) {
         $sDbKey = $sKey;
         $sDbValue = $sValue;
         $iExistedKey = $oDb->getOne("SELECT `ID` FROM `sys_localization_keys` WHERE `Key` = ?", [$sDbKey]);
         if (!$iExistedKey) {
             // key is missing, insert new key
             if (!$oDb->res("INSERT INTO `sys_localization_keys` VALUES (NULL, ?, ?)", [BX_DOL_LANGUAGE_CATEGORY_SYSTEM, $sDbKey])) {
                 continue;
             }
             $iExistedKey = $oDb->lastId();
         }
         $oDb->res("INSERT INTO `sys_localization_strings` VALUES(?, ?, ?)", [$iExistedKey, $iLangKey, $sDbValue]);
     }
     return true;
 }
开发者ID:toxalot,项目名称:dolphin.pro,代码行数:31,代码来源:BxDolInstaller.php

示例2: BxDolModuleDb

 function _addLanguage($aLanguage, $aLangInfo)
 {
     $oDb = new BxDolModuleDb();
     if (getLangIdByName($aLangInfo['Name'])) {
         // language already exists
         return false;
     }
     $sLangName = $oDb->escape($aLangInfo['Name']);
     $sLangFlag = $oDb->escape($aLangInfo['Flag']);
     $sLangTitle = $oDb->escape($aLangInfo['Title']);
     if (!$oDb->res("INSERT INTO `sys_localization_languages` VALUES (NULL, '{$sLangName}', '{$sLangFlag}', '{$sLangTitle}')")) {
         return false;
     }
     $iLangKey = $oDb->lastId();
     foreach ($aLanguage as $sKey => $sValue) {
         $sDbKey = $oDb->escape($sKey);
         $sDbValue = $oDb->escape($sValue);
         $iExistedKey = $oDb->getOne("SELECT `ID` FROM `sys_localization_keys` WHERE `Key` = '{$sDbKey}'");
         if (!$iExistedKey) {
             // key is missing, insert new key
             if (!$oDb->res("INSERT INTO `sys_localization_keys` VALUES (NULL, " . BX_DOL_LANGUAGE_CATEGORY_SYSTEM . ", '{$sDbKey}')")) {
                 continue;
             }
             $iExistedKey = $oDb->lastId();
         }
         $oDb->res("INSERT INTO `sys_localization_strings` VALUES({$iExistedKey}, {$iLangKey}, '{$sDbValue}')");
     }
     return true;
 }
开发者ID:Gotgot59,项目名称:dolphin.pro,代码行数:29,代码来源:BxDolInstaller.php

示例3: uninstall

 function uninstall($aParams)
 {
     $oModuleDb = new BxDolModuleDb();
     $sTitle = _t('_adm_txt_modules_operation_uninstall', $this->_aConfig['title']);
     //--- Check whether the module was already installed ---//
     if (!$oModuleDb->isModule($this->_aConfig['home_uri'])) {
         return array('operation_title' => $sTitle, 'message' => _t('_adm_txt_modules_already_uninstalled'), 'result' => false);
     }
     //--- Check for dependent modules ---//
     $bDependent = false;
     $aDependents = $oModuleDb->getDependent($this->_aConfig['home_uri']);
     if (is_array($aDependents) && !empty($aDependents)) {
         $bDependent = true;
         $sMessage = '<br />-- -- ' . _t('_adm_txt_modules_has_dependents') . '<br />';
         foreach ($aDependents as $aDependent) {
             $sMessage .= '-- -- ' . $aDependent['title'] . '<br />';
         }
     }
     if ($bDependent) {
         return array('operation_title' => $sTitle, 'message' => $this->_displayResult('check_dependencies', false, $sMessage), 'result' => false);
     }
     $aResult = $this->_perform('uninstall', 'Uninstallation');
     if ($aResult['result']) {
         $iModuleId = (int) $oModuleDb->getOne("SELECT `id` FROM `sys_modules` WHERE `vendor`='" . $this->_aConfig['vendor'] . "' AND `path`='" . $this->_aConfig['home_dir'] . "' LIMIT 1");
         $oModuleDb->query("DELETE FROM `sys_modules` WHERE `vendor`='" . $this->_aConfig['vendor'] . "' AND `path`='" . $this->_aConfig['home_dir'] . "' LIMIT 1");
         $oModuleDb->query("DELETE FROM `sys_modules_file_tracks` WHERE `module_id`='" . $iModuleId . "'");
         deleteStringFromLanguage(BxDolModule::getTitleKey($this->_aConfig['home_uri']));
         compileLanguage();
         $GLOBALS['MySQL']->cleanMemory('sys_modules_' . $this->_aConfig['home_uri']);
         $GLOBALS['MySQL']->cleanMemory('sys_modules_' . $iModuleId);
         $GLOBALS['MySQL']->cleanMemory('sys_modules');
     }
     $aResult['operation_title'] = $sTitle;
     return $aResult;
 }
开发者ID:dalinhuang,项目名称:shopexts,代码行数:35,代码来源:BxDolInstaller.php


注:本文中的BxDolModuleDb::getOne方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。