public function MySQLiSource::importFromFile in Backup and Migrate 5.0.x
Import to this source from the given backup file.
This is the main restore function for this source.
Parameters
\Drupal\backup_migrate\Core\File\BackupFileReadableInterface $file: The file to read the backup from. It will not be opened for reading.
Return value
bool|int
Overrides SourceInterface::importFromFile
1 method overrides MySQLiSource::importFromFile()
- DrupalMySQLiSource::importFromFile in src/
Drupal/ Source/ DrupalMySQLiSource.php - Import to this source from the given backup file.
File
- src/
Core/ Source/ MySQLiSource.php, line 99
Class
- MySQLiSource
- @package Drupal\backup_migrate\Core\Source
Namespace
Drupal\backup_migrate\Core\SourceCode
public function importFromFile(BackupFileReadableInterface $file) {
$num = 0;
if ($conn = $this
->_getConnection()) {
// Open (or rewind) the file.
$file
->openForRead();
// Read one line at a time and run the query.
while ($line = $this
->_readSqlCommand($file)) {
// @todo Why is this disabled?
// @code
// if (_backup_migrate_check_timeout()) {
// return FALSE;
// }
// @endcode
if ($line) {
// Execute the sql query from the file.
$conn
->query($line);
$num++;
}
}
// Close the file, we're done reading it.
$file
->close();
}
return $num;
}