|
BackupMySql::applies |
core/includes/backup/backup.mysql.inc |
Determine if this backup source should be used for a particular target. |
|
BackupMySql::backupDatabaseToFile |
core/includes/backup/backup.mysql.inc |
Backup the databases to a file. |
|
BackupMySql::restoreDatabaseFromFile |
core/includes/backup/backup.mysql.inc |
Backup the databases to a file. |
|
BackupMySql::readSqlCommandFromFile |
core/includes/backup/backup.mysql.inc |
Read a multiline sql command from a file. |
|
BackupMySql::getTableNames |
core/includes/backup/backup.mysql.inc |
Get a list of tables in the database. |
|
BackupMySql::getViewNames |
core/includes/backup/backup.mysql.inc |
Get a list of views in the database. |
|
BackupMySql::lockTables |
core/includes/backup/backup.mysql.inc |
Lock the database in anticipation of a backup. |
|
BackupMySql::unlockTables |
core/includes/backup/backup.mysql.inc |
Unlock any tables that have been locked. |
|
BackupMySql::getTableData |
core/includes/backup/backup.mysql.inc |
Get a list of table and view data from the database. |
|
BackupMySql::getTables |
core/includes/backup/backup.mysql.inc |
Get a list of tables in the database. |
|
BackupMySql::getViews |
core/includes/backup/backup.mysql.inc |
Get a list of views in the database. |
|
BackupMySql::getTableStructureSql |
core/includes/backup/backup.mysql.inc |
Get the SQL for the structure of the given table. |
|
BackupMySql::getViewCreateSql |
core/includes/backup/backup.mysql.inc |
Get the SQL for the structure of the given view. |
|
BackupMySql::dumpTableDataSqlToFile |
core/includes/backup/backup.mysql.inc |
Get the SQL to insert the data for a given table. |
|
BackupMySql::getDatabaseConnection |
core/includes/backup/backup.mysql.inc |
Get the db connection for the specified db. |
|
BackupMySql::query |
core/includes/backup/backup.mysql.inc |
Run a query on this destination's database using Backdrop's MySQL engine. |
|
BackupMySql::getSqlFileHeader |
core/includes/backup/backup.mysql.inc |
The header for the top of the SQL dump file. |
|
BackupMySql::getSqlFileFooter |
core/includes/backup/backup.mysql.inc |
The footer of the SQL dump file. |
|
BackupMySql::prepareEnvironment |
core/includes/backup/backup.mysql.inc |
Prepare the PHP environment for performing a backup or restore. |
|
BackupFile::__construct |
core/includes/backup/backup.file.inc |
Construct a file object used to save or load a backup from disk. |
|
BackupFile::backupName |
core/includes/backup/backup.file.inc |
Get the backup name. |
|
BackupFile::directory |
core/includes/backup/backup.file.inc |
Get the file directory; |
|
BackupFile::filePath |
core/includes/backup/backup.file.inc |
Get the full current filepath. |
|
BackupFile::fileName |
core/includes/backup/backup.file.inc |
Get the final filename. |
|
BackupFile::extension |
core/includes/backup/backup.file.inc |
Get the file extension. |
|
BackupFile::mimetype |
core/includes/backup/backup.file.inc |
Get the file mimetype. |
|
BackupFile::pushExtension |
core/includes/backup/backup.file.inc |
Add to the extension list. |
|
BackupFile::popExtension |
core/includes/backup/backup.file.inc |
Remove rom the extension list. |
|
BackupFile::lastExtension |
core/includes/backup/backup.file.inc |
Get the last file extension. |
|
BackupFile::open |
core/includes/backup/backup.file.inc |
Open a file for reading or writing. |
|
BackupFile::close |
core/includes/backup/backup.file.inc |
Close a file when we're done reading/writing. |
|
BackupFile::write |
core/includes/backup/backup.file.inc |
Write a line to the file. |
|
BackupFile::read |
core/includes/backup/backup.file.inc |
Read a line from the file. |
|
BackupFile::putContents |
core/includes/backup/backup.file.inc |
Write the entire contents of the file. |
|
BackupFile::getContents |
core/includes/backup/backup.file.inc |
Read the entire contents of the file. |
|
BackupFile::getFileSize |
core/includes/backup/backup.file.inc |
Get the file size. |
|
BackupFile::log |
core/includes/backup/backup.file.inc |
Log any issues with reading or writing files. |
|
BackupFile::getLog |
core/includes/backup/backup.file.inc |
Return the array of current log messages. |
|
BackupFile::clearLog |
core/includes/backup/backup.file.inc |
Clear the current log messages. |
|
BackupDatabase::__construct |
core/includes/backup/backup.database.inc |
Constructor for creating a new backup of any type. |
|
BackupDatabase::typeLabel |
core/includes/backup/backup.database.inc |
The translated name of the backup type. |
|
BackupDatabase::getFileTypeId |
core/includes/backup/backup.database.inc |
Get the file type supported when backing-up or restoring to/from a file. |
|
BackupDatabase::databaseInfo |
core/includes/backup/backup.database.inc |
Get the version info for the given database. |
|
BackupDatabase::defaultSettings |
core/includes/backup/backup.database.inc |
Get the default settings for this object. |
|
BackupDatabase::backupSettingsForm |
core/includes/backup/backup.database.inc |
Get the form for the backup settings for this destination. |
|
BackupDatabase::backup |
core/includes/backup/backup.database.inc |
Run the full backup process, including generating the backup and saving it. |
|
BackupDatabase::postBackup |
core/includes/backup/backup.database.inc |
Change a file after a backup is complete. |
|
BackupDatabase::preRestore |
core/includes/backup/backup.database.inc |
Prepare a file for restoration. |
|
BackupDatabase::restore |
core/includes/backup/backup.database.inc |
Restore a backup from a file. |
|
BackupDatabase::postRestore |
core/includes/backup/backup.database.inc |
Change a file after restoration. |