Merge pull request #14158 from demeritcowboy/deny-for-real
[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 /**
40 * the main function that is called when the page loads,
41 * it decides the which action has to be taken for the page.
42 *
43 * @return null
44 */
45 public function run() {
46 $this->initializePager();
47 $this->assign('exceptions', $this->getExceptions());
48 return parent::run();
49 }
50
51 /**
52 * Method to initialize pager
53 *
54 * @access protected
55 */
56 protected function initializePager() {
57 $params = [];
58
59 $contactOneQ = CRM_Utils_Request::retrieve('crmContact1Q', 'String');
60
61 if ($contactOneQ) {
62 $params['contact_id1.display_name'] = ['LIKE' => '%' . $contactOneQ . '%'];
63 $params['contact_id2.display_name'] = ['LIKE' => '%' . $contactOneQ . '%'];
64
65 $params['options']['or'] = [["contact_id1.display_name", "contact_id2.display_name"]];
66 }
67
68 $totalitems = civicrm_api3('Exception', "getcount", $params);
69 $params = [
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),
76 ];
77 $this->_pager = new CRM_Utils_Pager($params);
78 $this->assign_by_ref('pager', $this->_pager);
79 }
80
81 /**
82 * Function to get the exceptions
83 *
84 * @return array $exceptionsd
85 */
86 public 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 }