本文整理汇总了PHP中PHPWS_DB::loadDB方法的典型用法代码示例。如果您正苦于以下问题:PHP PHPWS_DB::loadDB方法的具体用法?PHP PHPWS_DB::loadDB怎么用?PHP PHPWS_DB::loadDB使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PHPWS_DB
的用法示例。
在下文中一共展示了PHPWS_DB::loadDB方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: core_module_installation
public function core_module_installation()
{
if (!isset($_SESSION['Boost'])) {
$modules = PHPWS_Core::coreModList();
$_SESSION['Boost'] = new PHPWS_Boost();
$_SESSION['Boost']->loadModules($modules);
}
// Load branch database
PHPWS_DB::loadDB($this->getDSN(), $this->dbprefix, false, false);
$this->title = dgettext('branch', 'Installing core modules');
$result = $_SESSION['Boost']->install(false, true, $this->branch->directory);
if (PHPWS_Error::isError($result)) {
PHPWS_Error::log($result);
$this->content[] = dgettext('branch', 'An error occurred while trying to install your modules.') . ' ' . dgettext('branch', 'Please check your error logs and try again.');
Branch::loadHubDB();
return true;
} else {
$this->content[] = $result;
}
Branch::loadHubDB();
return $_SESSION['Boost']->isFinished();
}
示例2: restoreBranchDB
/**
* Restores the branch connection after calling the loadHubDB
*/
public static function restoreBranchDB()
{
if (isset($GLOBALS['Branch_Temp'])) {
$prefix = $dsn = null;
extract($GLOBALS['Branch_Temp']);
PHPWS_DB::loadDB($dsn, $prefix);
\Database::phpwsDSNLoader($dsn, $prefix);
} else {
if (defined('PHPWS_TABLE_PREFIX')) {
$prefix = PHPWS_TABLE_PREFIX;
} else {
$prefix = null;
}
PHPWS_DB::loadDB(PHPWS_DSN, $prefix);
\Database::phpwsDSNLoader(PHPWS_DSN, $prefix);
}
}
示例3: touchDB
public static function touchDB()
{
if (!PHPWS_DB::isConnected()) {
return PHPWS_DB::loadDB();
}
}