b800998f682a4825580c70c025fb98aab650c959
[civicrm-core.git] / CRM / Contact / Page / DedupeRules.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.4 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2013 |
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-2013
32 * $Id$
33 *
34 */
35 class CRM_Contact_Page_DedupeRules extends CRM_Core_Page_Basic {
36
37 /**
38 * The action links that we need to display for the browse screen
39 *
40 * @var array
41 * @static
42 */
43 static $_links = NULL;
44
45 /**
46 * Get BAO Name
47 *
48 * @return string Classname of BAO.
49 */
50 function getBAOName() {
51 return 'CRM_Dedupe_BAO_RuleGroup';
52 }
53
54 /**
55 * Get action Links
56 *
57 * @return array (reference) of action links
58 */
59 function &links() {
60 if (!(self::$_links)) {
61 $deleteExtra = ts('Are you sure you want to delete this Rule?');
62
63 // helper variable for nicer formatting
64 $links = array();
65
66 if (CRM_Core_Permission::check('merge duplicate contacts')) {
67 $links[CRM_Core_Action::VIEW] = array(
68 'name' => ts('Use Rule'),
69 'url' => 'civicrm/contact/dedupefind',
70 'qs' => 'reset=1&rgid=%%id%%&action=preview',
71 'title' => ts('Use DedupeRule'),
72 );
73 }
74 if (CRM_Core_Permission::check('administer dedupe rules')) {
75 $links[CRM_Core_Action::UPDATE] = array(
76 'name' => ts('Edit Rule'),
77 'url' => 'civicrm/contact/deduperules',
78 'qs' => 'action=update&id=%%id%%',
79 'title' => ts('Edit DedupeRule'),
80 );
81 $links[CRM_Core_Action::DELETE] = array(
82 'name' => ts('Delete'),
83 'url' => 'civicrm/contact/deduperules',
84 'qs' => 'action=delete&id=%%id%%',
85 'extra' => 'onclick = "return confirm(\'' . $deleteExtra . '\');"',
86 'title' => ts('Delete DedupeRule'),
87 );
88 }
89
90 self::$_links = $links;
91 }
92 return self::$_links;
93 }
94
95 /**
96 * Run the page
97 *
98 * This method is called after the page is created. It checks for the type
99 * of action and executes that action. Finally it calls the parent's run
100 * method.
101 *
102 * @return void
103 * @access public
104 *
105 */
106 function run() {
107 // get the requested action, default to 'browse'
108 $action = CRM_Utils_Request::retrieve('action', 'String', $this, FALSE, 'browse');
109
110 // assign vars to templates
111 $this->assign('action', $action);
112 $id = CRM_Utils_Request::retrieve('id', 'Positive', $this, FALSE, 0);
113
114 $context = CRM_Utils_Request::retrieve('context', 'String', $this, FALSE);
115 if ($context == 'nonDupe') {
116 CRM_Core_Session::setStatus(ts('Selected contacts have been marked as not duplicates'), ts('Changes Saved'), 'success');
117 }
118
119 // assign permissions vars to template
120 $this->assign('hasperm_administer_dedupe_rules', CRM_Core_Permission::check('administer dedupe rules'));
121 $this->assign('hasperm_merge_duplicate_contacts', CRM_Core_Permission::check('merge duplicate contacts'));
122
123 // which action to take?
124 if ($action & (CRM_Core_Action::UPDATE | CRM_Core_Action::ADD)) {
125 $this->edit($action, $id);
126 }
127 if ($action & CRM_Core_Action::DELETE) {
128 $this->delete($id);
129 }
130
131 // browse the rules
132 $this->browse();
133
134 // parent run
135 return parent::run();
136 }
137
138 /**
139 * Browse all rule groups
140 *
141 * @return void
142 * @access public
143 */
144 function browse() {
145 // get all rule groups
146 $ruleGroups = array();
147 $dao = new CRM_Dedupe_DAO_RuleGroup();
148 $dao->orderBy('contact_type,used ASC');
149 $dao->find();
150
151 while ($dao->fetch()) {
152 $ruleGroups[$dao->contact_type][$dao->id] = array();
153 CRM_Core_DAO::storeValues($dao, $ruleGroups[$dao->contact_type][$dao->id]);
154
155 // form all action links
156 $action = array_sum(array_keys($this->links()));
157 $links = self::links();
158 /* if ($dao->is_default) {
159 unset($links[CRM_Core_Action::MAP]);
160 unset($links[CRM_Core_Action::DELETE]);
161 }*/
162
163 if ($dao->is_reserved) {
164 unset($links[CRM_Core_Action::DELETE]);
165 }
166
167 $ruleGroups[$dao->contact_type][$dao->id]['action'] = CRM_Core_Action::formLink($links, $action, array('id' => $dao->id));
168 CRM_Dedupe_DAO_RuleGroup::addDisplayEnums($ruleGroups[$dao->contact_type][$dao->id]);
169 }
170
171 $this->assign('brows', $ruleGroups);
172 }
173
174 /**
175 * Get name of edit form
176 *
177 * @return string classname of edit form
178 */
179 function editForm() {
180 return 'CRM_Contact_Form_DedupeRules';
181 }
182
183 /**
184 * Get edit form name
185 *
186 * @return string name of this page
187 */
188 function editName() {
189 return 'DedupeRules';
190 }
191
192 /**
193 * Get user context
194 *
195 * @return string user context
196 */
197 function userContext($mode = NULL) {
198 return 'civicrm/contact/deduperules';
199 }
200
201 function delete($id) {
202 $ruleDao = new CRM_Dedupe_DAO_Rule();
203 $ruleDao->dedupe_rule_group_id = $id;
204 $ruleDao->delete();
205
206 $rgDao = new CRM_Dedupe_DAO_RuleGroup();
207 $rgDao->id = $id;
208 $rgDao->delete();
209 }
210 }
211