Merge pull request #8551 from scardinius/crm-18815
[civicrm-core.git] / CRM / Admin / Form / Setting / UF.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2016 |
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 +--------------------------------------------------------------------+
26 */
27
28 /**
29 *
30 * @package CRM
31 * @copyright CiviCRM LLC (c) 2004-2016
32 */
33
34 /**
35 * This class generates form components for Site Url.
36 */
37 class CRM_Admin_Form_Setting_UF extends CRM_Admin_Form_Setting {
38
39 protected $_settings = array();
40
41 protected $_uf = NULL;
42
43 /**
44 * Build the form object.
45 */
46 public function buildQuickForm() {
47 $config = CRM_Core_Config::singleton();
48 $this->_uf = $config->userFramework;
49
50 if ($this->_uf == 'WordPress') {
51 $this->_settings['wpBasePage'] = CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME;
52 }
53
54 CRM_Utils_System::setTitle(
55 ts('Settings - %1 Integration', array(1 => $this->_uf))
56 );
57
58 if ($config->userSystem->is_drupal) {
59 $this->_settings['userFrameworkUsersTableName'] = CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME;
60 }
61
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
74 if (
75 function_exists('module_exists') &&
76 module_exists('views') &&
77 (
78 $config->dsn != $config->userFrameworkDSN || !empty($drupal_prefix)
79 )
80 ) {
81 $dsnArray = DB::parseDSN($config->dsn);
82 $tableNames = CRM_Core_DAO::GetStorageValues(NULL, 0, 'Name');
83 $tablePrefixes = '$databases[\'default\'][\'default\'][\'prefix\']= array(';
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 }
89 foreach ($tableNames as $tableName => $value) {
90 $tablePrefixes .= "\n '" . str_pad($tableName . "'", 41) . " => '{$prefix}',";
91 }
92 $tablePrefixes .= "\n);";
93 $this->assign('tablePrefixes', $tablePrefixes);
94 }
95
96 parent::buildQuickForm();
97 }
98
99 }