X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FACL%2FBAO%2FCache.php;h=9e68e38bf0bd3764364717f7adbbf6787d478fd8;hb=72ec9a567ab74eab4f5689fa42e67612ea77f78c;hp=c165e940c0d69357574b7063acddbe378f07182a;hpb=ed3f7d0115f78029e42aedf10d5c77653223d0e6;p=civicrm-core.git diff --git a/CRM/ACL/BAO/Cache.php b/CRM/ACL/BAO/Cache.php index c165e940c0..9e68e38bf0 100644 --- a/CRM/ACL/BAO/Cache.php +++ b/CRM/ACL/BAO/Cache.php @@ -39,7 +39,8 @@ class CRM_ACL_BAO_Cache extends CRM_ACL_DAO_ACLCache { public static $_cache = NULL; /** - * @param int $id + * Build an array of ACLs for a specific ACLed user + * @param int $id - contact_id of the ACLed user * * @return mixed */ @@ -91,8 +92,10 @@ SELECT acl_id } /** - * @param int $id - * @param array $cache + * Store ACLs for a specific user in the `civicrm_acl_cache` table + * @param int $id - contact_id of the ACLed user + * @param array $cache - key civicrm_acl.id - values is the details of the ACL. + * */ public static function store($id, &$cache) { foreach ($cache as $aclID => $data) { @@ -109,7 +112,9 @@ SELECT acl_id } /** - * @param int $id + * Remove entries from civicrm_acl_cache for a specified ACLed user + * @param int $id - contact_id of the ACLed user + * */ public static function deleteEntry($id) { if (self::$_cache && @@ -127,7 +132,9 @@ WHERE contact_id = %1 } /** - * @param int $id + * Update ACL caches `civicrm_acl_cache` and `civicrm_acl_contact_cache for the specified ACLed user + * @param int $id - contact_id of ACLed user to update caches for. + * */ public static function updateEntry($id) { // rebuilds civicrm_acl_cache @@ -174,4 +181,13 @@ WHERE modified_date IS NULL } } + /** + * Remove Entries from `civicrm_acl_contact_cache` for a specific ACLed user + * @param int $userID - contact_id of the ACLed user + * + */ + public static function deleteContactCacheEntry($userID) { + CRM_Core_DAO::executeQuery("DELETE FROM civicrm_acl_contact_cache WHERE user_id = %1", [1 => [$userID, 'Positive']]); + } + }