public function backup_migrate_destination_db::get_object_names in Backup and Migrate 7.3
Same name and namespace in other branches
- 8.3 includes/destinations.db.inc \backup_migrate_destination_db::get_object_names()
- 6.2 includes/destinations.db.inc \backup_migrate_destination_db::get_object_names()
- 7.2 includes/destinations.db.inc \backup_migrate_destination_db::get_object_names()
Get a list of objects in the database.
1 call to backup_migrate_destination_db::get_object_names()
- backup_migrate_destination_db::backup_settings_form in includes/
destinations.db.inc - Get the form for the backup settings for this destination.
File
- includes/
destinations.db.inc, line 247 - Functions to handle the direct to database destination.
Class
- backup_migrate_destination_db
- A destination type for saving to a database server.
Code
public function get_object_names() {
// Must be overridden.
$out = $this
->_get_table_names();
if (method_exists($this, '_get_view_names')) {
$out += $this
->_get_view_names();
}
return $out;
}