public function importFromArchive($project_id, ArchiveInterface $archive)
 {
     $this->logger->info('Start importing into existing project from archive ' . $archive->getExtractionPath());
     $xml_element = $this->getProjectXMLFromArchive($archive);
     $project = $this->getProject($project_id);
     $this->importContent($project, $xml_element, $archive->getExtractionPath());
 }