The `deleteItem()` function is used by both contact-search and dedupe-merge use-cases. We can classify
several of these just based on the files:
* Contact-search use-cases. (These should be updated to use the interface.)
* `CRM/Campaign/Selector/Search.php: CRM_Core_BAO_PrevNextCache::deleteItem(NULL, $cacheKey, 'civicrm_contact');`
* `CRM/Contact/Form/Search.php: CRM_Core_BAO_PrevNextCache::deleteItem(NULL, $cacheKey);`
* `CRM/Contact/Selector.php: CRM_Core_BAO_PrevNextCache::deleteItem(NULL, $cacheKey, 'civicrm_contact');`
* Dedupe-merge use-cases. (These should contiue using the BAO.)
* `CRM/Contact/Form/DedupeRules.php: CRM_Core_BAO_PrevNextCache::deleteItem(NULL, $cacheKey);`
* `CRM/Contact/Page/DedupeFind.php: CRM_Core_BAO_PrevNextCache::deleteItem(NULL, CRM_Dedupe_Merger::getMergeCacheKeyString($rgid, $gid, $criteria))`
* `CRM/Dedupe/Merger.php: CRM_Core_BAO_PrevNextCache::deleteItem(NULL, "{$cacheKeyString}_stats");`
Additionally, there are two oddballs which are harder to categorize.
* `CRM_Contact_BAO_Contact_Utils::clearContactCaches($isEmptyPrevNextTable = FALSE)` deletes *all*
prev-next cache-records (`CRM_Core_BAO_PrevNextCache::deleteItem();`). It only does so in one
scenario (as part of `CRM/Contact/Import/Form/Preview.php`), which has this explanatory comment:
"Clear all caches, forcing any searches to recheck the ACLs or group membership as the import may
have changed it."
* `CRM_Contact_BAO_Contact::deleteContact(...)` deletes any prev-next cache-records which
reference a specific contact (`CRM_Core_BAO_PrevNextCache::deleteItem($id)`).
I suppose this provides a low-grade form of referential integrity.
Part of me thinks those should be re-considered (e.g. to use a hook/event -- and reduce the
coupling between `Contact` and `PrevNext` subsystems). However, for purposes of dev/core#217, it
seems OK to send `deleteItem(...)` to both BAO (SQL-only) and service (SQL-or-memory) variants.
if (!$crmPID) {
$cacheKey = "civicrm search {$this->_key}";
- CRM_Core_BAO_PrevNextCache::deleteItem(NULL, $cacheKey, 'civicrm_contact');
+ Civi::service('prevnext')->deleteItem(NULL, $cacheKey, 'civicrm_contact');
$sql = $this->_query->searchQuery(0, 0, $sort,
FALSE, FALSE,
CRM_Utils_Recent::delContact($id);
self::updateContactCache($id, empty($restore));
- // delete any dupe cache entry
+ // delete any prevnext/dupe cache entry
+ // These two calls are redundant in default deployments, but they're
+ // meaningful if "prevnext" is memory-backed.
+ Civi::service('prevnext')->deleteItem($id);
CRM_Core_BAO_PrevNextCache::deleteItem($id);
$transaction->commit();
return;
}
if ($isEmptyPrevNextTable) {
+ // These two calls are redundant in default deployments, but they're
+ // meaningful if "prevnext" is memory-backed.
+ Civi::service('prevnext')->deleteItem();
CRM_Core_BAO_PrevNextCache::deleteItem();
}
// clear acl cache if any.
) {
//reset the cache table for new search
$cacheKey = "civicrm search {$this->controller->_key}";
- CRM_Core_BAO_PrevNextCache::deleteItem(NULL, $cacheKey);
+ Civi::service('prevnext')->deleteItem(NULL, $cacheKey);
}
//get the button name
// check for current != previous to ensure cache is not reset if paging is done without changing
// sort criteria
if (!$pageNum || (!empty($currentSortID) && $currentSortID != $previousSortID)) {
- CRM_Core_BAO_PrevNextCache::deleteItem(NULL, $cacheKey, 'civicrm_contact');
+ Civi::service('prevnext')->deleteItem(NULL, $cacheKey, 'civicrm_contact');
// this means it's fresh search, so set pageNum=1
if (!$pageNum) {
$pageNum = 1;
*/
public function getPositions($cacheKey, $id1, $id2);
+ /**
+ * Delete an item from the prevnext cache table based on the entity.
+ *
+ * @param int $id
+ * @param string $cacheKey
+ * @param string $entityTable
+ */
+ public function deleteItem($id = NULL, $cacheKey = NULL, $entityTable = 'civicrm_contact');
+
}
return CRM_Core_BAO_PrevNextCache::getPositions($cacheKey, $id1, $id2);
}
+ /**
+ * Delete an item from the prevnext cache table based on the entity.
+ *
+ * @param int $id
+ * @param string $cacheKey
+ * @param string $entityTable
+ */
+ public function deleteItem($id = NULL, $cacheKey = NULL, $entityTable = 'civicrm_contact') {
+ CRM_Core_BAO_PrevNextCache::deleteItem($id, $cacheKey, $entityTable);
+ }
+
}