Merge pull request #7993 from JKingsnorth/CRM-18257
[civicrm-core.git] / CRM / Contact / Form / Task / Merge.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
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 */
33
34 /**
35 * This class provides the functionality to Merge contacts.
36 *
37 */
38 class CRM_Contact_Form_Task_Merge extends CRM_Contact_Form_Task {
39
40 /**
41 * Build all the data structures needed to build the form.
42 */
43 public function preProcess() {
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;
61 if (count($contactTypes) > 1) {
62 break;
63 }
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 }
89
90 }