Deprecate unused CRM_Core_BAO_UFField::copy() function
authorEileen McNaughton <emcnaughton@wikimedia.org>
Thu, 16 Feb 2023 05:36:11 +0000 (18:36 +1300)
committerEileen McNaughton <emcnaughton@wikimedia.org>
Thu, 16 Feb 2023 05:36:11 +0000 (18:36 +1300)
CRM/Core/BAO/UFField.php

index e43bc4a25e34f044e075785a662da7b305b6fa59..ae8a9dd907544f44821c9e3df3c70b62d218eaf5 100644 (file)
@@ -285,12 +285,15 @@ WHERE cf.id IN (" . $customFieldIds . ") AND is_multiple = 1 LIMIT 0,1";
    * Copy existing profile fields to
    * new profile from the already built profile
    *
+   * @deprecated
+   *
    * @param int $old_id
    *   From which we need to copy.
    * @param bool $new_id
    *   In which to copy.
    */
   public static function copy($old_id, $new_id) {
+    CRM_Core_Error::deprecatedFunctionWarning('');
     $ufField = new CRM_Core_DAO_UFField();
     $ufField->uf_group_id = $old_id;
     $ufField->find();