INFRA-132 - Civi - PHPStorm cleanup
[civicrm-core.git] / CRM / Contact / Form / Task / Merge.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
6a488035 5 +--------------------------------------------------------------------+
06b69b18 6 | Copyright CiviCRM LLC (c) 2004-2014 |
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 +--------------------------------------------------------------------+
26*/
27
28/**
29 *
30 * @package CRM
06b69b18 31 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
32 * $Id$
33 *
34 */
35
36/**
37 * This class provides the functionality to Merge Contacts.
38 *
39 */
40class CRM_Contact_Form_Task_Merge extends CRM_Contact_Form_Task {
41
42 /**
100fef9d 43 * Build all the data structures needed to build the form
6a488035
TO
44 *
45 * @return void
6a488035 46 */
00be9182 47 public function preProcess() {
6a488035
TO
48 parent::preProcess();
49 $statusMsg = NULL;
50 $contactIds = array();
51 if (is_array($this->_contactIds)) {
52 $contactIds = array_unique($this->_contactIds);
53 }
54 if (count($contactIds) != 2) {
55 $statusMsg = ts('Merge operation requires selecting two contacts.');
56 }
57
58 // do check for same contact type.
59 $contactTypes = array();
60 if (!$statusMsg) {
61 $sql = "SELECT contact_type FROM civicrm_contact WHERE id IN (" . implode(',', $contactIds) . ")";
62 $contact = CRM_Core_DAO::executeQuery($sql);
63 while ($contact->fetch()) {
64 $contactTypes[$contact->contact_type] = TRUE;
65 if (count($contactTypes) > 1)
66 break;
67 }
68 if (count($contactTypes) > 1) {
69 $statusMsg = ts('Selected records must all be the same contact type (i.e. all Individuals).');
70 }
71 }
72 if ($statusMsg) {
73 CRM_Core_Error::statusBounce($statusMsg);
74 }
75
76 // redirect to merge form directly.
77 $cid = $contactIds[0];
78 $oid = $contactIds[1];
79
80 //don't allow to delete logged in user.
81 $session = CRM_Core_Session::singleton();
82 if ($oid == $session->get('userID')) {
83 $oid = $cid;
84 $cid = $session->get('userID');
85 }
86
87 $url = CRM_Utils_System::url('civicrm/contact/merge', "reset=1&cid={$cid}&oid={$oid}");
88
89 // redirect to merge page.
90 CRM_Utils_System::redirect($url);
91 }
92}