Merge pull request #15257 from seamuslee001/dev_core_1244
[civicrm-core.git] / CRM / Contact / Page / DedupeException.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
6a488035 5 +--------------------------------------------------------------------+
6b83d5bd 6 | Copyright CiviCRM LLC (c) 2004-2019 |
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
6b83d5bd 31 * @copyright CiviCRM LLC (c) 2004-2019
6a488035
TO
32 */
33
34/**
35 * Main page for viewing contact.
6a488035
TO
36 */
37class CRM_Contact_Page_DedupeException extends CRM_Core_Page {
69078420 38
6a488035 39 /**
a60e3208
AP
40 * the main function that is called when the page loads,
41 * it decides the which action has to be taken for the page.
6a488035 42 *
a60e3208 43 * @return null
6a488035 44 */
a60e3208
AP
45 public function run() {
46 $this->initializePager();
47 $this->assign('exceptions', $this->getExceptions());
48 return parent::run();
49 }
6a488035 50
a60e3208
AP
51 /**
52 * Method to initialize pager
53 *
54 * @access protected
55 */
56 protected function initializePager() {
be2fb01f 57 $params = [];
916a3577
AP
58
59 $contactOneQ = CRM_Utils_Request::retrieve('crmContact1Q', 'String');
916a3577
AP
60
61 if ($contactOneQ) {
be2fb01f
CW
62 $params['contact_id1.display_name'] = ['LIKE' => '%' . $contactOneQ . '%'];
63 $params['contact_id2.display_name'] = ['LIKE' => '%' . $contactOneQ . '%'];
916a3577 64
cf3d3207 65 $params['options']['or'] = [["contact_id1.display_name", "contact_id2.display_name"]];
916a3577
AP
66 }
67
68 $totalitems = civicrm_api3('Exception', "getcount", $params);
be2fb01f 69 $params = [
a60e3208
AP
70 'total' => $totalitems,
71 'rowCount' => CRM_Utils_Pager::ROWCOUNT,
72 'status' => ts('Dedupe Exceptions %%StatusMessage%%'),
73 'buttonBottom' => 'PagerBottomButton',
74 'buttonTop' => 'PagerTopButton',
75 'pageID' => $this->get(CRM_Utils_Pager::PAGE_ID),
be2fb01f 76 ];
a60e3208
AP
77 $this->_pager = new CRM_Utils_Pager($params);
78 $this->assign_by_ref('pager', $this->_pager);
6a488035
TO
79 }
80
81 /**
a60e3208 82 * Function to get the exceptions
6a488035 83 *
7d0c4217 84 * @return array $exceptionsd
6a488035 85 */
7d0c4217 86 public function getExceptions() {
a60e3208
AP
87 list($offset, $limit) = $this->_pager->getOffsetAndRowCount();
88 $contactOneQ = CRM_Utils_Request::retrieve('crmContact1Q', 'String');
a60e3208
AP
89
90 if (!$contactOneQ) {
91 $contactOneQ = '';
92 }
a60e3208
AP
93
94 $this->assign('searchcontact1', $contactOneQ);
a60e3208 95
be2fb01f
CW
96 $params = [
97 "options" => ['limit' => $limit, 'offset' => $offset],
a60e3208 98 'return' => ["contact_id1.display_name", "contact_id2.display_name", "contact_id1", "contact_id2"],
be2fb01f 99 ];
a60e3208
AP
100
101 if ($contactOneQ != '') {
be2fb01f
CW
102 $params['contact_id1.display_name'] = ['LIKE' => '%' . $contactOneQ . '%'];
103 $params['contact_id2.display_name'] = ['LIKE' => '%' . $contactOneQ . '%'];
a60e3208 104
cf3d3207 105 $params['options']['or'] = [["contact_id1.display_name", "contact_id2.display_name"]];
a60e3208
AP
106 }
107
108 $exceptions = civicrm_api3("Exception", "get", $params);
109 $exceptions = $exceptions["values"];
110 return $exceptions;
6a488035 111 }
96025800 112
6a488035 113}