Remove some unused undefined properties from participant export
authorEileen McNaughton <emcnaughton@wikimedia.org>
Mon, 4 Sep 2023 22:55:41 +0000 (10:55 +1200)
committerEileen McNaughton <emcnaughton@wikimedia.org>
Mon, 4 Sep 2023 22:55:41 +0000 (10:55 +1200)
CRM/Event/Import/Parser/Participant.php

index 27456bb4dbff46481245ef3e3300b293851c7280..d780e858bf48f939e74b31789d232109298c2501 100644 (file)
 class CRM_Event_Import_Parser_Participant extends CRM_Import_Parser {
   protected $_mapperKeys;
 
-  /**
-   * Array of successfully imported participants id's
-   *
-   * @var array
-   */
-  protected $_newParticipants;
-
-
   protected $_fileName;
 
   /**
@@ -147,8 +139,6 @@ class CRM_Event_Import_Parser_Participant extends CRM_Import_Parser {
               ];
               CRM_Price_BAO_LineItem::syncLineItems($newParticipant->id, 'civicrm_participant', $newParticipant->fee_amount, $otherParams);
             }
-
-            $this->_newParticipant[] = $newParticipant->id;
             $this->setImportStatus($rowNumber, 'IMPORTED', '', $newParticipant->id);
             return;
           }
@@ -225,10 +215,6 @@ class CRM_Event_Import_Parser_Participant extends CRM_Import_Parser {
           throw new CRM_Core_Exception(ts('Unknown error'));
         }
       }
-
-      if (!(is_array($newParticipant) && civicrm_error($newParticipant))) {
-        $this->_newParticipants[] = $newParticipant['id'] ?? NULL;
-      }
     }
     catch (CRM_Core_Exception $e) {
       $this->setImportStatus($rowNumber, 'ERROR', $e->getMessage());
@@ -237,15 +223,6 @@ class CRM_Event_Import_Parser_Participant extends CRM_Import_Parser {
     $this->setImportStatus($rowNumber, 'IMPORTED', '', $newParticipant['id']);
   }
 
-  /**
-   * Get the array of successfully imported Participation ids.
-   *
-   * @return array
-   */
-  public function &getImportedParticipations() {
-    return $this->_newParticipants;
-  }
-
   /**
    * Format values
    *