本文整理匯總了PHP中CRM_Core_DAO::GetStorageValues方法的典型用法代碼示例。如果您正苦於以下問題:PHP CRM_Core_DAO::GetStorageValues方法的具體用法?PHP CRM_Core_DAO::GetStorageValues怎麽用?PHP CRM_Core_DAO::GetStorageValues使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類CRM_Core_DAO
的用法示例。
在下文中一共展示了CRM_Core_DAO::GetStorageValues方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: buildQuickForm
/**
* Function to build the form
*
* @return None
* @access public
*/
public function buildQuickForm()
{
$config =& CRM_Core_Config::singleton();
$uf = $config->userFramework;
CRM_Utils_System::setTitle(ts('Settings - %1 Integration', array(1 => $uf)));
$this->addElement('text', 'userFrameworkVersion', ts('%1 Version', array(1 => $uf)));
$this->addElement('text', 'userFrameworkUsersTableName', ts('%1 Users Table Name', array(1 => $uf)));
if (function_exists('module_exists') && module_exists('views') && $config->dsn != $config->userFrameworkDSN) {
$dsnArray = DB::parseDSN($config->dsn);
$tableNames = CRM_Core_DAO::GetStorageValues(null, 0, 'Name');
$tablePrefixes = '$db_prefix = array(';
foreach ($tableNames as $tableName => $value) {
$tablePrefixes .= "\n '" . str_pad($tableName . "'", 41) . " => '{$dsnArray['database']}.',";
}
$tablePrefixes .= "\n);";
$this->assign('tablePrefixes', $tablePrefixes);
}
parent::buildQuickForm();
}
示例2: buildQuickForm
/**
* Build the form object.
*/
public function buildQuickForm()
{
$config = CRM_Core_Config::singleton();
$this->_uf = $config->userFramework;
if ($this->_uf == 'WordPress') {
$this->_settings['wpBasePage'] = CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME;
}
CRM_Utils_System::setTitle(ts('Settings - %1 Integration', array(1 => $this->_uf)));
if ($config->userSystem->is_drupal) {
$this->_settings['userFrameworkUsersTableName'] = CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME;
}
// find out if drupal has its database prefixed
global $databases;
$drupal_prefix = '';
if (isset($databases['default']['default']['prefix'])) {
if (is_array($databases['default']['default']['prefix'])) {
$drupal_prefix = $databases['default']['default']['prefix']['default'];
} else {
$drupal_prefix = $databases['default']['default']['prefix'];
}
}
if (function_exists('module_exists') && module_exists('views') && ($config->dsn != $config->userFrameworkDSN || !empty($drupal_prefix))) {
$dsnArray = DB::parseDSN($config->dsn);
$tableNames = CRM_Core_DAO::GetStorageValues(NULL, 0, 'Name');
$tablePrefixes = '$databases[\'default\'][\'default\'][\'prefix\']= array(';
$tablePrefixes .= "\n 'default' => '{$drupal_prefix}',";
// add default prefix: the drupal database prefix
$prefix = "";
if ($config->dsn != $config->userFrameworkDSN) {
$prefix = "`{$dsnArray['database']}`.";
}
foreach ($tableNames as $tableName => $value) {
$tablePrefixes .= "\n '" . str_pad($tableName . "'", 41) . " => '{$prefix}',";
}
$tablePrefixes .= "\n);";
$this->assign('tablePrefixes', $tablePrefixes);
}
parent::buildQuickForm();
}