Merge pull request #7047 from johanv/CRM-17430-dont_change_domain_version_1st_attempt
[civicrm-core.git] / CRM / Contact / Form / Task / Merge.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/**
7f82e636 35 * This class provides the functionality to Merge contacts.
6a488035
TO
36 *
37 */
38class CRM_Contact_Form_Task_Merge extends CRM_Contact_Form_Task {
39
40 /**
fe482240 41 * Build all the data structures needed to build the form.
6a488035 42 */
00be9182 43 public function preProcess() {
6a488035
TO
44 parent::preProcess();
45 $statusMsg = NULL;
46 $contactIds = array();
47 if (is_array($this->_contactIds)) {
48 $contactIds = array_unique($this->_contactIds);
49 }
50 if (count($contactIds) != 2) {
51 $statusMsg = ts('Merge operation requires selecting two contacts.');
52 }
53
54 // do check for same contact type.
55 $contactTypes = array();
56 if (!$statusMsg) {
57 $sql = "SELECT contact_type FROM civicrm_contact WHERE id IN (" . implode(',', $contactIds) . ")";
58 $contact = CRM_Core_DAO::executeQuery($sql);
59 while ($contact->fetch()) {
60 $contactTypes[$contact->contact_type] = TRUE;
8d7a9d07 61 if (count($contactTypes) > 1) {
353ffa53 62 break;
8d7a9d07 63 }
6a488035
TO
64 }
65 if (count($contactTypes) > 1) {
66 $statusMsg = ts('Selected records must all be the same contact type (i.e. all Individuals).');
67 }
68 }
69 if ($statusMsg) {
70 CRM_Core_Error::statusBounce($statusMsg);
71 }
72
73 // redirect to merge form directly.
74 $cid = $contactIds[0];
75 $oid = $contactIds[1];
76
77 //don't allow to delete logged in user.
78 $session = CRM_Core_Session::singleton();
79 if ($oid == $session->get('userID')) {
80 $oid = $cid;
81 $cid = $session->get('userID');
82 }
83
84 $url = CRM_Utils_System::url('civicrm/contact/merge', "reset=1&cid={$cid}&oid={$oid}");
85
86 // redirect to merge page.
87 CRM_Utils_System::redirect($url);
88 }
96025800 89
6a488035 90}