Allow ExporterDrivers that implement the exportClassMetadata() function to return FALSE when no content is available/needs to be written to a file by the AbstractExporter, preventing empty files to be generated foreach processed ClassMetadataInfo instance.
This commit is contained in:
parent
bd49aa5d2c
commit
21cfe4ba9f
1 changed files with 11 additions and 9 deletions
|
@ -111,16 +111,18 @@ abstract class AbstractExporter
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach ($this->_metadata as $metadata) {
|
foreach ($this->_metadata as $metadata) {
|
||||||
$output = $this->exportClassMetadata($metadata);
|
//In case output is returned, write it to a file, skip otherwise
|
||||||
$path = $this->_generateOutputPath($metadata);
|
if($output = $this->exportClassMetadata($metadata)){
|
||||||
$dir = dirname($path);
|
$path = $this->_generateOutputPath($metadata);
|
||||||
if ( ! is_dir($dir)) {
|
$dir = dirname($path);
|
||||||
mkdir($dir, 0777, true);
|
if ( ! is_dir($dir)) {
|
||||||
|
mkdir($dir, 0777, true);
|
||||||
|
}
|
||||||
|
if (file_exists($path) && !$this->_overwriteExistingFiles) {
|
||||||
|
throw ExportException::attemptOverwriteExistingFile($path);
|
||||||
|
}
|
||||||
|
file_put_contents($path, $output);
|
||||||
}
|
}
|
||||||
if (file_exists($path) && !$this->_overwriteExistingFiles) {
|
|
||||||
throw ExportException::attemptOverwriteExistingFile($path);
|
|
||||||
}
|
|
||||||
file_put_contents($path, $output);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue