本文整理汇总了PHP中BxDolInstaller类的典型用法代码示例。如果您正苦于以下问题:PHP BxDolInstaller类的具体用法?PHP BxDolInstaller怎么用?PHP BxDolInstaller使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了BxDolInstaller类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。
示例1: BxDataMigrationInstaller
function BxDataMigrationInstaller(&$aConfig)
{
parent::BxDolInstaller($aConfig);
}
开发者ID:dalinhuang,项目名称:shopexts,代码行数:4,代码来源:installer.php
示例2: BxFaceBookConnectInstaller
function BxFaceBookConnectInstaller(&$aConfig)
{
parent::BxDolInstaller($aConfig);
}
开发者ID:dalinhuang,项目名称:shopexts,代码行数:4,代码来源:installer.php
示例3: BxSimpleMessengerInstaller
function BxSimpleMessengerInstaller($aConfig)
{
parent::BxDolInstaller($aConfig);
}
开发者ID:Gotgot59,项目名称:dolphin.pro,代码行数:4,代码来源:installer.php
示例4: BxMbpInstaller
function BxMbpInstaller($aConfig)
{
parent::BxDolInstaller($aConfig);
}
开发者ID:noormcs,项目名称:studoro,代码行数:4,代码来源:installer.php
示例5: BxPageACInstaller
function BxPageACInstaller($aConfig)
{
parent::BxDolInstaller($aConfig);
}
开发者ID:Gotgot59,项目名称:dolphin.pro,代码行数:4,代码来源:installer.php
示例6: BxProfilerInstaller
function BxProfilerInstaller($aConfig)
{
parent::BxDolInstaller($aConfig);
}
开发者ID:Gotgot59,项目名称:dolphin.pro,代码行数:4,代码来源:installer.php
示例7: BxBoardInstaller
function BxBoardInstaller($aConfig)
{
parent::BxDolInstaller($aConfig);
}
开发者ID:Gotgot59,项目名称:dolphin.pro,代码行数:4,代码来源:installer.php
示例8: BxNewsInstaller
function BxNewsInstaller($aConfig)
{
parent::BxDolInstaller($aConfig);
}
开发者ID:Gotgot59,项目名称:dolphin.pro,代码行数:4,代码来源:installer.php
示例9: BxShoutBoxInstaller
function BxShoutBoxInstaller(&$aConfig)
{
parent::BxDolInstaller($aConfig);
}
开发者ID:noormcs,项目名称:studoro,代码行数:4,代码来源:installer.php
示例10: BxGSearchInstaller
function BxGSearchInstaller($aConfig)
{
parent::BxDolInstaller($aConfig);
}
开发者ID:dalinhuang,项目名称:shopexts,代码行数:4,代码来源:installer.php
示例11: BxChatInstaller
function BxChatInstaller($aConfig)
{
parent::BxDolInstaller($aConfig);
}
开发者ID:Gotgot59,项目名称:dolphin.pro,代码行数:4,代码来源:installer.php
示例12: BxDolUpdater
function BxDolUpdater($aConfig)
{
parent::BxDolInstaller($aConfig);
$this->_sModulePath = $this->_sBasePath . $aConfig['module_dir'];
$this->_aActions = array_merge($this->_aActions, array('check_module_exists' => array('title' => _t('_adm_txt_modules_check_module_exists')), 'check_module_version' => array('title' => _t('_adm_txt_modules_check_module_version')), 'check_module_hash' => array('title' => _t('_adm_txt_modules_check_module_hash')), 'update_files' => array('title' => _t('_adm_txt_modules_update_files'))));
}
开发者ID:Arvindvi,项目名称:dolphin,代码行数:6,代码来源:BxDolUpdater.php
示例13: install
function install($aParams)
{
$aResult = parent::install($aParams);
$this->updateEmailTemplatesExceptions();
$this->updateProfileFieldsHtml();
return $aResult;
}
开发者ID:dalinhuang,项目名称:shopexts,代码行数:7,代码来源:installer.php
示例14: uninstall
function uninstall($aParams)
{
if (BxDolRequest::serviceExists('wall', 'update_handlers')) {
BxDolService::call('wall', 'update_handlers', array($this->_aConfig['home_uri'], false));
}
return parent::uninstall($aParams);
}
开发者ID:dalinhuang,项目名称:shopexts,代码行数:7,代码来源:installer.php
示例15: uninstall
function uninstall($aParams)
{
$aResult = parent::uninstall($aParams);
if ($aResult['result'] && getParam($this->_sParamDefaultPayment) == $this->_aConfig['home_uri']) {
setParam($this->_sParamDefaultPayment, '');
}
return $aResult;
}
开发者ID:Prashank25,项目名称:dolphin.pro,代码行数:8,代码来源:installer.php
示例16: uninstall
function uninstall($aParams)
{
if (BxDolRequest::serviceExists('spy', 'update_handlers')) {
BxDolService::call('spy', 'update_handlers', array($this->_aConfig['home_uri'], false));
}
$this->updateEmailTemplatesExceptions();
return parent::uninstall($aParams);
}
开发者ID:dalinhuang,项目名称:shopexts,代码行数:8,代码来源:installer.php
示例17: install
function install($aParams)
{
$aResult = parent::install($aParams);
if ($aResult['result']) {
BxDolService::call($this->_aConfig['home_uri'], 'update_dependent_modules');
}
return $aResult;
}
开发者ID:Gotgot59,项目名称:dolphin.pro,代码行数:8,代码来源:installer.php
示例18: uninstall
function uninstall($aParams)
{
if (BxDolRequest::serviceExists('payment', 'update_dependent_modules')) {
BxDolService::call('payment', 'update_dependent_modules', array($this->_aConfig['home_uri'], false));
}
if (BxDolRequest::serviceExists('payflow', 'update_dependent_modules')) {
BxDolService::call('payflow', 'update_dependent_modules', array($this->_aConfig['home_uri'], false));
}
return parent::uninstall($aParams);
}
开发者ID:toxalot,项目名称:dolphin.pro,代码行数:10,代码来源:installer.php
示例19: uninstall
function uninstall($aParams)
{
if (BxDolRequest::serviceExists('wall', 'update_handlers')) {
BxDolService::call('wall', 'update_handlers', array($this->_aConfig['home_uri'], false));
}
if (BxDolRequest::serviceExists('spy', 'update_handlers')) {
BxDolService::call('spy', 'update_handlers', array($this->_aConfig['home_uri'], false));
}
$aResult = parent::uninstall($aParams);
if ($aResult['result'] && BxDolModule::getInstance('BxWmapModule')) {
BxDolService::call('wmap', 'part_uninstall', array('ads'));
}
return $aResult;
}
开发者ID:Gotgot59,项目名称:dolphin.pro,代码行数:14,代码来源:installer.php
示例20: uninstall
function uninstall($aParams)
{
$aResult = parent::uninstall($aParams);
if ($aResult['result']) {
$bInclude = @(include $this->sFilePath);
if (!$bInclude || empty($LANG) || empty($LANG_INFO) || !$this->_removeLanguage($LANG, $LANG_INFO)) {
return array('operation_title' => _t('_adm_txt_modules_operation_install', $this->_aConfig['title']), 'message' => 'Language file parse error: ' . $this->sFileName, 'result' => false);
}
// delete compiled lang file
@unlink(BX_DIRECTORY_PATH_ROOT . "langs/lang-{$LANG_INFO['Name']}.php");
$GLOBALS['MySQL']->cleanCache('checkLangExists_' . $LANG_INFO['Name']);
if (bx_lang_name() == $LANG_INFO['Name']) {
getCurrentLangName(true);
}
}
return $aResult;
}
开发者ID:toxalot,项目名称:dolphin.pro,代码行数:17,代码来源:installer.php
注:本文中的BxDolInstaller类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论