-
-
Notifications
You must be signed in to change notification settings - Fork 825
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13179 from eileenmcnaughton/dedupe_rule
Test support for fixing dev/core#397 including adding Rule api
- Loading branch information
Showing
3 changed files
with
105 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
<?php | ||
/* | ||
+--------------------------------------------------------------------+ | ||
| CiviCRM version 5 | | ||
+--------------------------------------------------------------------+ | ||
| 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 | | ||
+--------------------------------------------------------------------+ | ||
*/ | ||
|
||
/** | ||
* This api exposes CiviCRM (dedupe) rules. | ||
* | ||
* Rules dedupe critieria assigned to RuleGroups. | ||
* | ||
* @package CiviCRM_APIv3 | ||
*/ | ||
|
||
/** | ||
* Create or update a rule. | ||
* | ||
* @param array $params | ||
* Array per getfields metadata. | ||
* | ||
* @return array | ||
* API result array | ||
*/ | ||
function civicrm_api3_rule_create($params) { | ||
return _civicrm_api3_basic_create(_civicrm_api3_get_BAO(__FUNCTION__), $params, 'Rule'); | ||
} | ||
|
||
/** | ||
* Specify Meta data for create. | ||
* | ||
* Note that this data is retrievable via the getfields function | ||
* and is used for pre-filling defaults and ensuring mandatory requirements are met. | ||
* | ||
* @param array $params | ||
*/ | ||
function _civicrm_api3_rule_create_spec(&$params) { | ||
$params['dedupe_rule_group_id']['api.required'] = TRUE; | ||
$params['rule_table']['api.default'] = 'civicrm_contact'; | ||
$params['rule_field']['api.required'] = TRUE; | ||
$params['rule_weight']['api.required'] = TRUE; | ||
} | ||
|
||
/** | ||
* Delete an existing Rule. | ||
* | ||
* @param array $params | ||
* | ||
* @return array | ||
* API result array | ||
*/ | ||
function civicrm_api3_rule_delete($params) { | ||
return _civicrm_api3_basic_delete(_civicrm_api3_get_BAO(__FUNCTION__), $params); | ||
} | ||
|
||
/** | ||
* Get a Rule. | ||
* | ||
* @param array $params | ||
* Array per getfields metadata. | ||
* | ||
* @return array | ||
* API result array | ||
*/ | ||
function civicrm_api3_rule_get($params) { | ||
return _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params, TRUE, 'Rule'); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters