row = $row; if (count($this->row) >= 8) { // check if the array is correct switch ($this->row[4]) { // Get value for the mutation type case 'GT': // InternetBankieren case 'OV': // Overschrijving case 'VZ': // Verzamelbetaling case 'IC': // Incasso $this->removeIBANIngDescription(); $this->removeNameIngDescription(); break; case 'BA': // Betaalautomaat $this->addNameIngDescription(); break; } } return $this->row; } /** * Add the Opposing name from cell 1 in the description for Betaalautomaten * Otherwise the description is only: 'Pasvolgnr: Transactie: Term:' * * @return bool true */ protected function addNameIngDescription() { $this->row[8] = $this->row[1] . ' ' . $this->row[8]; return true; } /** * Remove IBAN number out of the description * Default description of Description is: Naam: Omschrijving: IBAN: * * @return bool true */ protected function removeIBANIngDescription() { // Try replace the iban number with nothing. The IBAN nr is found in the third row $this->row[8] = preg_replace('/\sIBAN:\s' . $this->row[3] . '/', '', $this->row[8]); return true; } /** * Remove name from the description (Remove everything before the description incl the word 'Omschrijving' ) * * @return bool true */ protected function removeNameIngDescription() { // Try remove everything bevore the 'Omschrijving' $this->row[8] = preg_replace('/.+Omschrijving: /', '', $this->row[8]); return true; } }