comments
authordeepak-srivastava <deepak.srivastava.0303@gmail.com>
Sat, 8 Aug 2015 00:41:12 +0000 (01:41 +0100)
committerdeepak-srivastava <deepak.srivastava.0303@gmail.com>
Sat, 8 Aug 2015 20:53:02 +0000 (21:53 +0100)
CRM/Contact/Page/AJAX.php
CRM/Contact/Page/DedupeMerge.php

index 5d248649ab2f2ff007219becdacf67518db36b9f..7b5ef9b6f62f8f77ce37a238b8d6b3f7da600f29 100644 (file)
@@ -668,6 +668,9 @@ LIMIT {$offset}, {$rowCount}
     CRM_Utils_JSON::output(array('status' => ($status) ? $oper : $status));
   }
 
+  /**
+   * Retrieve list of duplicate pairs from cache table.
+   */
   public static function getDedupes() {
     $offset    = isset($_REQUEST['start']) ? CRM_Utils_Type::escape($_REQUEST['start'], 'Integer') : 0;
     $rowCount  = isset($_REQUEST['length']) ? CRM_Utils_Type::escape($_REQUEST['length'], 'Integer') : 25;
@@ -894,6 +897,9 @@ LIMIT {$offset}, {$rowCount}
     CRM_Utils_JSON::output($paperSize);
   }
 
+  /**
+   * Swap contacts in a dupe pair i.e main with duplicate contact.
+   */
   public static function flipDupePairs($prevNextId = NULL) {
     if (!$prevNextId) {
       $prevNextId = $_REQUEST['pnid'];
@@ -980,6 +986,9 @@ LIMIT {$offset}, {$rowCount}
     CRM_Utils_JSON::output($addressVal);
   }
 
+  /**
+   * Mark dupe pairs as selected from un-selected state or vice-versa, in dupe cache table.
+   */
   public static function toggleDedupeSelect() {
     $rgid = CRM_Utils_Type::escape($_REQUEST['rgid'], 'Integer');
     $gid  = CRM_Utils_Type::escape($_REQUEST['gid'], 'Integer');
index da762dda6ba88c97976bb25b6be58ec6c0282179..4e1f17b410fdf2901bd19dd73bf9f206b12b7466 100644 (file)
@@ -37,7 +37,7 @@ class CRM_Contact_Page_DedupeMerge extends CRM_Core_Page {
   const BATCHLIMIT = 2;
 
   /**
-   * Browse all rule groups
+   * Browse batch merges.
    *
    * @return void
    * @access public
@@ -56,6 +56,9 @@ class CRM_Contact_Page_DedupeMerge extends CRM_Core_Page {
     return parent::run();
   }
 
+  /**
+   * Build a queue of tasks by dividing dupe pairs in batches.
+   */
   public static function getRunner() {
     $rgid = CRM_Utils_Request::retrieve('rgid', 'Positive', $this, FALSE, 0);
     $gid  = CRM_Utils_Request::retrieve('gid', 'Positive', $this, FALSE, 0);
@@ -124,7 +127,7 @@ class CRM_Contact_Page_DedupeMerge extends CRM_Core_Page {
   }
 
   /**
-   * Collect Mailchimp data into temporary working table.
+   * Carry out batch merges.
    */
   public static function callBatchMerge(CRM_Queue_TaskContext $ctx, $rgid, $gid = NULL, $mode = 'safe', $autoFlip = TRUE, $batchLimit = 1, $isSelected = 2) {
     $result = CRM_Dedupe_Merger::batchMerge($rgid, $gid, $mode, $autoFlip, $batchLimit, $isSelected);