Delete helpers/SortimentParser.php

This commit is contained in:
2026-04-06 12:30:09 +00:00
parent 4f9d858a12
commit 749177c555

View File

@@ -1,22 +0,0 @@
<?php
class SortimentParser {
//
// $f = fileName
//
// Returns array of "sortiment" items.
//
// @retVal = array()
//
public function fromPlainTextFile($fp) {
$retVal = array();
//$fPath = "./data/sortiment.csv";
$f = fopen($fp,"r");
while($l = fgetcsv($f)) {
$retVal[] = $l;
}
return $retVal;
}
}