Remove setActiveField
authorEileen McNaughton <emcnaughton@wikimedia.org>
Mon, 15 Aug 2022 22:25:28 +0000 (10:25 +1200)
committerEileen McNaughton <emcnaughton@wikimedia.org>
Mon, 15 Aug 2022 22:25:28 +0000 (10:25 +1200)
CRM/Event/Import/Parser/Participant.php

index b0438796689a2a8f869faf5cc22792572393748d..de8b919289e80ed229a3343018025cc5f7d4a947 100644 (file)
@@ -536,26 +536,6 @@ class CRM_Event_Import_Parser_Participant extends CRM_Import_Parser {
     return TRUE;
   }
 
-  /**
-   * Given a list of the importable field keys that the user has selected
-   * set the active fields array to this list
-   *
-   * @param array $fieldKeys mapped array of values
-   *
-   * @return void
-   */
-  public function setActiveFields($fieldKeys) {
-    $this->_activeFieldCount = count($fieldKeys);
-    foreach ($fieldKeys as $key) {
-      if (empty($this->_fields[$key])) {
-        $this->_activeFields[] = new CRM_Event_Import_Field('', ts('- do not import -'));
-      }
-      else {
-        $this->_activeFields[] = clone($this->_fields[$key]);
-      }
-    }
-  }
-
   /**
    * @param string $name
    * @param $title