Esempio n. 1
0
 /**
  * Displays a form to import references from a *.bib-file
  *
  * @return View Returns an empty form
  */
 public function getImport()
 {
     // Display a view and let the Ajax-controller again handle the file collection
     $dummyRef = new Reference();
     return view('references.form', ["types" => $dummyRef->getTypes()]);
 }