Add buttons to 'Cleanup caches and update paths' in standard way
[civicrm-core.git] / CRM / Admin / Form / Setting / UF.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2019 |
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-2019
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 = [];
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 $this->_settings['syncCMSEmail'] = CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME;
50
51 if ($this->_uf == 'WordPress') {
52 $this->_settings['wpBasePage'] = CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME;
53 }
54
55 CRM_Utils_System::setTitle(
56 ts('Settings - %1 Integration', [1 => $this->_uf])
57 );
58
59 if ($config->userSystem->is_drupal) {
60 $this->_settings['userFrameworkUsersTableName'] = CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME;
61 }
62
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
75 if (
76 function_exists('module_exists') &&
77 module_exists('views') &&
78 (
79 $config->dsn != $config->userFrameworkDSN || !empty($drupal_prefix)
80 )
81 ) {
82 $dsnArray = DB::parseDSN($config->dsn);
83 $tableNames = CRM_Core_DAO::getTableNames();
84 $tablePrefixes = '$databases[\'default\'][\'default\'][\'prefix\']= array(';
85 if ($config->userFramework === 'Backdrop') {
86 $tablePrefixes = '$database_prefix = array(';
87 }
88 // add default prefix: the drupal database prefix
89 $tablePrefixes .= "\n 'default' => '$drupal_prefix',";
90 $prefix = "";
91 if ($config->dsn != $config->userFrameworkDSN) {
92 $prefix = "`{$dsnArray['database']}`.";
93 }
94 foreach ($tableNames as $tableName) {
95 $tablePrefixes .= "\n '" . str_pad($tableName . "'", 41) . " => '{$prefix}',";
96 }
97 $tablePrefixes .= "\n);";
98 $this->assign('tablePrefixes', $tablePrefixes);
99 }
100
101 parent::buildQuickForm();
102 }
103
104 }