[REF] Remove function that is the same as parent
authoreileen <emcnaughton@wikimedia.org>
Tue, 12 Jan 2021 05:20:47 +0000 (18:20 +1300)
committereileen <emcnaughton@wikimedia.org>
Tue, 12 Jan 2021 05:40:58 +0000 (18:40 +1300)
CRM/Activity/Import/Parser.php
CRM/Event/Import/Parser.php

index 9de96fd44d6d38dcadea86cd4b3a711b7ff61157..6a39c4c188fe8e9279d3650e8fa0a3b2f7e9dfa5 100644 (file)
@@ -274,26 +274,6 @@ abstract class CRM_Activity_Import_Parser extends CRM_Import_Parser {
     }
   }
 
-  /**
-   * Format the field values for input to the api.
-   *
-   * @return array
-   *   (reference ) associative array of name/value pairs
-   */
-  public function &getActiveFieldParams() {
-    $params = [];
-    for ($i = 0; $i < $this->_activeFieldCount; $i++) {
-      if (isset($this->_activeFields[$i]->_value)
-        && !isset($params[$this->_activeFields[$i]->_name])
-        && !isset($this->_activeFields[$i]->_related)
-      ) {
-
-        $params[$this->_activeFields[$i]->_name] = $this->_activeFields[$i]->_value;
-      }
-    }
-    return $params;
-  }
-
   /**
    * @param string $name
    * @param $title
index 097aa1313f1786d0a2a26f56fcf4739cdb18c1a0..aa5282a866d9ce6e75cd0be81f92a88418cfc661 100644 (file)
@@ -285,26 +285,6 @@ abstract class CRM_Event_Import_Parser extends CRM_Import_Parser {
     }
   }
 
-  /**
-   * Format the field values for input to the api.
-   *
-   * @return array
-   *   (reference ) associative array of name/value pairs
-   */
-  public function &getActiveFieldParams() {
-    $params = [];
-    for ($i = 0; $i < $this->_activeFieldCount; $i++) {
-      if (isset($this->_activeFields[$i]->_value)
-        && !isset($params[$this->_activeFields[$i]->_name])
-        && !isset($this->_activeFields[$i]->_related)
-      ) {
-
-        $params[$this->_activeFields[$i]->_name] = $this->_activeFields[$i]->_value;
-      }
-    }
-    return $params;
-  }
-
   /**
    * @param string $name
    * @param $title