Esempio n. 1
0
 function clientsImport($table, $importType = "csv")
 {
     if ($importType == "sugarcrm") {
         $importType = "csv";
         $switchedFrom = "sugarcrm";
     }
     //end if
     parent::phpbmsImport($table, $importType);
     if (isset($switchedFrom)) {
         $this->importType = $switchedFrom;
     }
 }