commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-old / civicrm / CRM / Admin / Form / Setting / UF.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2015 |
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-2015
32 * $Id$
33 *
34 */
35
36 /**
37 * This class generates form components for Site Url
38 *
39 */
40 class CRM_Admin_Form_Setting_UF extends CRM_Admin_Form_Setting {
41
42 protected $_settings = array();
43
44 protected $_uf = NULL;
45
46 /**
47 * Build the form object.
48 *
49 * @return void
50 */
51 public function buildQuickForm() {
52 $config = CRM_Core_Config::singleton();
53 $this->_uf = $config->userFramework;
54
55 if ($this->_uf == 'WordPress') {
56 $this->_settings = array('wpBasePage' => CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME);
57 }
58
59 CRM_Utils_System::setTitle(
60 ts('Settings - %1 Integration', array(1 => $this->_uf))
61 );
62
63 $this->addElement('text', 'userFrameworkUsersTableName', ts('%1 Users Table Name', array(1 => $this->_uf)));
64 // find out if drupal has its database prefixed
65 global $databases;
66 $drupal_prefix = '';
67 if (isset($databases['default']['default']['prefix'])) {
68 if (is_array($databases['default']['default']['prefix'])) {
69 $drupal_prefix = $databases['default']['default']['prefix']['default'];
70 }
71 else {
72 $drupal_prefix = $databases['default']['default']['prefix'];
73 }
74 }
75
76 if (
77 function_exists('module_exists') &&
78 module_exists('views') &&
79 (
80 $config->dsn != $config->userFrameworkDSN || !empty($drupal_prefix)
81 )
82 ) {
83 $dsnArray = DB::parseDSN($config->dsn);
84 $tableNames = CRM_Core_DAO::GetStorageValues(NULL, 0, 'Name');
85 $tablePrefixes = '$databases[\'default\'][\'default\'][\'prefix\']= array(';
86 $tablePrefixes .= "\n 'default' => '$drupal_prefix',"; // add default prefix: the drupal database prefix
87 $prefix = "";
88 if ($config->dsn != $config->userFrameworkDSN) {
89 $prefix = "`{$dsnArray['database']}`.";
90 }
91 foreach ($tableNames as $tableName => $value) {
92 $tablePrefixes .= "\n '" . str_pad($tableName . "'", 41) . " => '{$prefix}',";
93 }
94 $tablePrefixes .= "\n);";
95 $this->assign('tablePrefixes', $tablePrefixes);
96 }
97
98 parent::buildQuickForm();
99 }
100
101 }