本文整理匯總了PHP中Installer::preInstall方法的典型用法代碼示例。如果您正苦於以下問題:PHP Installer::preInstall方法的具體用法?PHP Installer::preInstall怎麽用?PHP Installer::preInstall使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Installer
的用法示例。
在下文中一共展示了Installer::preInstall方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: preInstall
/**
* Pre-installation.
* @return boolean
*/
function preInstall()
{
$this->currentVersion = Version::fromString('');
$this->locale = $this->getParam('locale');
$this->installedLocales = $this->getParam('additionalLocales');
if (!isset($this->installedLocales) || !is_array($this->installedLocales)) {
$this->installedLocales = array();
}
if (!in_array($this->locale, $this->installedLocales) && Locale::isLocaleValid($this->locale)) {
array_push($this->installedLocales, $this->locale);
}
if ($this->getParam('manualInstall')) {
// Do not perform database installation for manual install
// Create connection object with the appropriate database driver for adodb-xmlschema
$conn =& new DBConnection($this->getParam('databaseDriver'), null, null, null, null);
$this->dbconn =& $conn->getDBConn();
} else {
// Connect to database
$conn =& new DBConnection($this->getParam('databaseDriver'), $this->getParam('databaseHost'), $this->getParam('databaseUsername'), $this->getParam('databasePassword'), $this->getParam('createDatabase') ? null : $this->getParam('databaseName'), true, $this->getParam('connectionCharset') == '' ? false : $this->getParam('connectionCharset'));
$this->dbconn =& $conn->getDBConn();
if (!$conn->isConnected()) {
$this->setError(INSTALLER_ERROR_DB, $this->dbconn->errorMsg());
return false;
}
}
DBConnection::getInstance($conn);
return parent::preInstall();
}
示例2: pre_install
public function pre_install()
{
if ($this->accessAdminPage(1)) {
require_once dirname(__FILE__) . '/resources/install.php';
$installer = new Installer($this->parent);
return $installer->preInstall();
} else {
$this->parent->parent->addHeader('Location', '/admin/modules/');
return new ActionResult($this, '/admin/modules/', 1, 'You are not allowed to do that', B_T_FAIL);
}
}
示例3: preInstall
/**
* Pre-installation.
* @return boolean
*/
function preInstall()
{
if (!isset($this->currentVersion)) {
$this->currentVersion = Version::fromString('');
}
$this->locale = $this->getParam('locale');
$this->installedLocales = $this->getParam('additionalLocales');
if (!isset($this->installedLocales) || !is_array($this->installedLocales)) {
$this->installedLocales = array();
}
if (!in_array($this->locale, $this->installedLocales) && AppLocale::isLocaleValid($this->locale)) {
array_push($this->installedLocales, $this->locale);
}
// Connect to database
$conn = new DBConnection($this->getParam('databaseDriver'), $this->getParam('databaseHost'), $this->getParam('databaseUsername'), $this->getParam('databasePassword'), $this->getParam('createDatabase') ? null : $this->getParam('databaseName'), false, $this->getParam('connectionCharset') == '' ? false : $this->getParam('connectionCharset'));
$this->dbconn =& $conn->getDBConn();
if (!$conn->isConnected()) {
$this->setError(INSTALLER_ERROR_DB, $this->dbconn->errorMsg());
return false;
}
DBConnection::getInstance($conn);
return parent::preInstall();
}