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