dev/core#2017 Deprecate an unused function
authoreileen <emcnaughton@wikimedia.org>
Fri, 2 Oct 2020 01:42:36 +0000 (14:42 +1300)
committereileen <emcnaughton@wikimedia.org>
Fri, 2 Oct 2020 01:44:05 +0000 (14:44 +1300)
CRM/Core/BAO/Location.php

index 911862b8fc18a35506b49edc82edba44cb9907fd..d6b48406494140aeb84fa19211a77d6ad2ceb801 100644 (file)
@@ -240,6 +240,10 @@ WHERE e.id = %1";
   /**
    * Delete all the block associated with the location.
    *
+   * Note a universe search on 1 Oct 2020 found no calls to this function.
+   *
+   * @deprecated
+   *
    * @param int $contactId
    *   Contact id.
    * @param int $locationTypeId
@@ -247,6 +251,7 @@ WHERE e.id = %1";
    * @throws CRM_Core_Exception
    */
   public static function deleteLocationBlocks($contactId, $locationTypeId) {
+    CRM_Core_Error::deprecatedFunctionWarning('Use v4 api');
     // ensure that contactId has a value
     if (empty($contactId) ||
       !CRM_Utils_Rule::positiveInteger($contactId)