107 lines
3.6 KiB
PHP
107 lines
3.6 KiB
PHP
|
<?php
|
||
|
/*
|
||
|
+--------------------------------------------------------------------+
|
||
|
| CiviCRM version 4.7 |
|
||
|
+--------------------------------------------------------------------+
|
||
|
| Copyright CiviCRM LLC (c) 2004-2017 |
|
||
|
+--------------------------------------------------------------------+
|
||
|
| This file is a part of CiviCRM. |
|
||
|
| |
|
||
|
| CiviCRM is free software; you can copy, modify, and distribute it |
|
||
|
| under the terms of the GNU Affero General Public License |
|
||
|
| Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
|
||
|
| |
|
||
|
| CiviCRM is distributed in the hope that it will be useful, but |
|
||
|
| WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||
|
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
|
||
|
| See the GNU Affero General Public License for more details. |
|
||
|
| |
|
||
|
| You should have received a copy of the GNU Affero General Public |
|
||
|
| License and the CiviCRM Licensing Exception along |
|
||
|
| with this program; if not, contact CiviCRM LLC |
|
||
|
| at info[AT]civicrm[DOT]org. If you have questions about the |
|
||
|
| GNU Affero General Public License or the licensing of CiviCRM, |
|
||
|
| see the CiviCRM license FAQ at http://civicrm.org/licensing |
|
||
|
+--------------------------------------------------------------------+
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* @package CRM
|
||
|
* @copyright CiviCRM LLC (c) 2004-2017
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* This class generates form components for DedupeRules.
|
||
|
*/
|
||
|
class CRM_Contact_Form_DedupeFind extends CRM_Admin_Form {
|
||
|
|
||
|
/**
|
||
|
* Pre processing.
|
||
|
*/
|
||
|
public function preProcess() {
|
||
|
$this->rgid = CRM_Utils_Request::retrieve('rgid', 'Positive', $this, FALSE, 0);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Build the form object.
|
||
|
*/
|
||
|
public function buildQuickForm() {
|
||
|
|
||
|
$groupList = array('' => ts('- All Contacts -')) + CRM_Core_PseudoConstant::nestedGroup();
|
||
|
|
||
|
$this->add('select', 'group_id', ts('Select Group'), $groupList, FALSE, array('class' => 'crm-select2 huge'));
|
||
|
if (Civi::settings()->get('dedupe_default_limit')) {
|
||
|
$this->add('text', 'limit', ts('No of contacts to find matches for '));
|
||
|
}
|
||
|
$this->addButtons(array(
|
||
|
array(
|
||
|
'type' => 'next',
|
||
|
'name' => ts('Continue'),
|
||
|
'isDefault' => TRUE,
|
||
|
),
|
||
|
//hack to support cancel button functionality
|
||
|
array(
|
||
|
'type' => 'submit',
|
||
|
'class' => 'cancel',
|
||
|
'icon' => 'fa-times',
|
||
|
'name' => ts('Cancel'),
|
||
|
),
|
||
|
)
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Set the default values for the form.
|
||
|
*
|
||
|
* @return array
|
||
|
*/
|
||
|
public function setDefaultValues() {
|
||
|
$this->_defaults['limit'] = Civi::settings()->get('dedupe_default_limit');
|
||
|
return $this->_defaults;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Process the form submission.
|
||
|
*/
|
||
|
public function postProcess() {
|
||
|
$values = $this->exportValues();
|
||
|
if (!empty($_POST['_qf_DedupeFind_submit'])) {
|
||
|
//used for cancel button
|
||
|
CRM_Utils_System::redirect(CRM_Utils_System::url('civicrm/contact/deduperules', 'reset=1'));
|
||
|
return;
|
||
|
}
|
||
|
$url = CRM_Utils_System::url('civicrm/contact/dedupefind', "reset=1&action=update&rgid={$this->rgid}");
|
||
|
if ($values['group_id']) {
|
||
|
$url .= "&gid={$values['group_id']}";
|
||
|
}
|
||
|
|
||
|
if (!empty($values['limit'])) {
|
||
|
$url .= '&limit=' . $values['limit'];
|
||
|
}
|
||
|
|
||
|
CRM_Utils_System::redirect($url);
|
||
|
}
|
||
|
|
||
|
}
|