Merge pull request #11772 from michaelmcandrew/CRM-21821-respect-nav-item-weight
[civicrm-core.git] / CRM / Admin / Form / Setting / UF.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
6a488035 5 +--------------------------------------------------------------------+
8c9251b3 6 | Copyright CiviCRM LLC (c) 2004-2018 |
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
8c9251b3 31 * @copyright CiviCRM LLC (c) 2004-2018
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;
5e7f101a 49 $this->_settings['syncCMSEmail'] = CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME;
6a488035 50
94c11eeb 51 if ($this->_uf == 'WordPress') {
348754d5 52 $this->_settings['wpBasePage'] = CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME;
94c11eeb 53 }
6a488035 54
94c11eeb
DL
55 CRM_Utils_System::setTitle(
56 ts('Settings - %1 Integration', array(1 => $this->_uf))
57 );
58
348754d5
TO
59 if ($config->userSystem->is_drupal) {
60 $this->_settings['userFrameworkUsersTableName'] = CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME;
61 }
62
d94d05a5 63 // find out if drupal has its database prefixed
64 global $databases;
65 $drupal_prefix = '';
66 if (isset($databases['default']['default']['prefix'])) {
67 if (is_array($databases['default']['default']['prefix'])) {
68 $drupal_prefix = $databases['default']['default']['prefix']['default'];
69 }
70 else {
71 $drupal_prefix = $databases['default']['default']['prefix'];
72 }
73 }
74
94c11eeb
DL
75 if (
76 function_exists('module_exists') &&
6a488035 77 module_exists('views') &&
d94d05a5 78 (
79 $config->dsn != $config->userFrameworkDSN || !empty($drupal_prefix)
80 )
6a488035 81 ) {
d94d05a5 82 $dsnArray = DB::parseDSN($config->dsn);
3fa9688a 83 $tableNames = CRM_Core_DAO::getTableNames();
94c11eeb 84 $tablePrefixes = '$databases[\'default\'][\'default\'][\'prefix\']= array(';
d94d05a5 85 $tablePrefixes .= "\n 'default' => '$drupal_prefix',"; // add default prefix: the drupal database prefix
86 $prefix = "";
87 if ($config->dsn != $config->userFrameworkDSN) {
88 $prefix = "`{$dsnArray['database']}`.";
89 }
3fa9688a 90 foreach ($tableNames as $tableName) {
d94d05a5 91 $tablePrefixes .= "\n '" . str_pad($tableName . "'", 41) . " => '{$prefix}',";
6a488035
TO
92 }
93 $tablePrefixes .= "\n);";
94 $this->assign('tablePrefixes', $tablePrefixes);
95 }
96
97 parent::buildQuickForm();
98 }
96025800 99
6a488035 100}