X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FEvent%2FImport%2FParser.php;h=434f279614108370358d9b181c2b35dcfefcd1ed;hb=7bdc59eb9984bb1f45b34e7918170ea61efcb6b0;hp=ad644a34073cbf7630a5913fd763915d9eb2f884;hpb=558bcc42deda03e8e059c97a1007d5e1deaa2bd4;p=civicrm-core.git diff --git a/CRM/Event/Import/Parser.php b/CRM/Event/Import/Parser.php index ad644a3407..434f279614 100644 --- a/CRM/Event/Import/Parser.php +++ b/CRM/Event/Import/Parser.php @@ -36,29 +36,31 @@ abstract class CRM_Event_Import_Parser extends CRM_Import_Parser { protected $_fileName; - /**#@+ - * @var integer - */ - /** - * Imported file size + * Imported file size. + * + * @var int */ protected $_fileSize; /** - * Seperator being used + * Separator being used. + * + * @var string */ protected $_seperator; /** - * Total number of lines in file + * Total number of lines in file. + * + * @var int */ protected $_lineCount; /** * Whether the file has a column header or not * - * @var boolean + * @var bool */ protected $_haveColumnHeader; @@ -116,14 +118,14 @@ abstract class CRM_Event_Import_Parser extends CRM_Import_Parser { $this->_invalidRowCount = $this->_validCount = 0; $this->_totalCount = $this->_conflictCount = 0; - $this->_errors = array(); - $this->_warnings = array(); - $this->_conflicts = array(); + $this->_errors = []; + $this->_warnings = []; + $this->_conflicts = []; $this->_fileSize = number_format(filesize($fileName) / 1024.0, 2); if ($mode == self::MODE_MAPFIELD) { - $this->_rows = array(); + $this->_rows = []; } else { $this->_activeFieldCount = count($this->_activeFields); @@ -253,32 +255,26 @@ abstract class CRM_Event_Import_Parser extends CRM_Import_Parser { if ($this->_invalidRowCount) { // removed view url for invlaid contacts - $headers = array_merge(array( - ts('Line Number'), - ts('Reason'), - ), - $customHeaders - ); + $headers = array_merge([ + ts('Line Number'), + ts('Reason'), + ], $customHeaders); $this->_errorFileName = self::errorFileName(self::ERROR); self::exportCSV($this->_errorFileName, $headers, $this->_errors); } if ($this->_conflictCount) { - $headers = array_merge(array( - ts('Line Number'), - ts('Reason'), - ), - $customHeaders - ); + $headers = array_merge([ + ts('Line Number'), + ts('Reason'), + ], $customHeaders); $this->_conflictFileName = self::errorFileName(self::CONFLICT); self::exportCSV($this->_conflictFileName, $headers, $this->_conflicts); } if ($this->_duplicateCount) { - $headers = array_merge(array( - ts('Line Number'), - ts('View Participant URL'), - ), - $customHeaders - ); + $headers = array_merge([ + ts('Line Number'), + ts('View Participant URL'), + ], $customHeaders); $this->_duplicateFileName = self::errorFileName(self::DUPLICATE); self::exportCSV($this->_duplicateFileName, $headers, $this->_duplicates); @@ -314,7 +310,7 @@ abstract class CRM_Event_Import_Parser extends CRM_Import_Parser { * (reference ) associative array of name/value pairs */ public function &getActiveFieldParams() { - $params = array(); + $params = []; for ($i = 0; $i < $this->_activeFieldCount; $i++) { if (isset($this->_activeFields[$i]->_value) && !isset($params[$this->_activeFields[$i]->_name]) @@ -419,7 +415,7 @@ abstract class CRM_Event_Import_Parser extends CRM_Import_Parser { * @return void */ public static function exportCSV($fileName, $header, $data) { - $output = array(); + $output = []; $fd = fopen($fileName, 'w'); foreach ($header as $key => $value) {