CRM-19027 clean up use of slow query to get tables.
[civicrm-core.git] / CRM / Admin / Form / Setting / UF.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
7e9e8871 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
fa938177 6 | Copyright CiviCRM LLC (c) 2004-2016 |
6a488035
TO
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
29 *
30 * @package CRM
fa938177 31 * @copyright CiviCRM LLC (c) 2004-2016
6a488035
TO
32 */
33
34/**
ce064e4f 35 * This class generates form components for Site Url.
6a488035
TO
36 */
37class CRM_Admin_Form_Setting_UF extends CRM_Admin_Form_Setting {
38
94c11eeb
DL
39 protected $_settings = array();
40
d94d05a5 41 protected $_uf = NULL;
94c11eeb 42
6a488035 43 /**
eceb18cc 44 * Build the form object.
6a488035
TO
45 */
46 public function buildQuickForm() {
47 $config = CRM_Core_Config::singleton();
94c11eeb 48 $this->_uf = $config->userFramework;
6a488035 49
94c11eeb 50 if ($this->_uf == 'WordPress') {
348754d5 51 $this->_settings['wpBasePage'] = CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME;
94c11eeb 52 }
6a488035 53
94c11eeb
DL
54 CRM_Utils_System::setTitle(
55 ts('Settings - %1 Integration', array(1 => $this->_uf))
56 );
57
348754d5
TO
58 if ($config->userSystem->is_drupal) {
59 $this->_settings['userFrameworkUsersTableName'] = CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME;
60 }
61
d94d05a5 62 // find out if drupal has its database prefixed
63 global $databases;
64 $drupal_prefix = '';
65 if (isset($databases['default']['default']['prefix'])) {
66 if (is_array($databases['default']['default']['prefix'])) {
67 $drupal_prefix = $databases['default']['default']['prefix']['default'];
68 }
69 else {
70 $drupal_prefix = $databases['default']['default']['prefix'];
71 }
72 }
73
94c11eeb
DL
74 if (
75 function_exists('module_exists') &&
6a488035 76 module_exists('views') &&
d94d05a5 77 (
78 $config->dsn != $config->userFrameworkDSN || !empty($drupal_prefix)
79 )
6a488035 80 ) {
d94d05a5 81 $dsnArray = DB::parseDSN($config->dsn);
3fa9688a 82 $tableNames = CRM_Core_DAO::getTableNames();
94c11eeb 83 $tablePrefixes = '$databases[\'default\'][\'default\'][\'prefix\']= array(';
d94d05a5 84 $tablePrefixes .= "\n 'default' => '$drupal_prefix',"; // add default prefix: the drupal database prefix
85 $prefix = "";
86 if ($config->dsn != $config->userFrameworkDSN) {
87 $prefix = "`{$dsnArray['database']}`.";
88 }
3fa9688a 89 foreach ($tableNames as $tableName) {
d94d05a5 90 $tablePrefixes .= "\n '" . str_pad($tableName . "'", 41) . " => '{$prefix}',";
6a488035
TO
91 }
92 $tablePrefixes .= "\n);";
93 $this->assign('tablePrefixes', $tablePrefixes);
94 }
95
96 parent::buildQuickForm();
97 }
96025800 98
6a488035 99}