Exemplo n.º 1
0
 public static function fromString($data)
 {
     $importer = new Importer($data, false);
     return $importer->getCollection();
 }
Exemplo n.º 2
0
 /**
  * Load records from a string (Binary MARC or XML).
  *
  * @param string $data
  * @return Collection
  */
 public static function fromString($data)
 {
     $importer = new Importer();
     return $importer->fromString($data);
 }