You are here

protected function DatabaseSource::getRawTableNames in Backup and Migrate 5.0.x

Get the list of tables from this db.

Return value

array

1 call to DatabaseSource::getRawTableNames()
DatabaseSource::getTableNames in src/Core/Source/DatabaseSource.php
Get a list of tables in this source.

File

src/Core/Source/DatabaseSource.php, line 103

Class

DatabaseSource
@package Drupal\backup_migrate\Core\Source

Namespace

Drupal\backup_migrate\Core\Source

Code

protected function getRawTableNames() {
  $out = [];
  foreach ($this
    ->getRawTables() as $table) {
    $out[$table['name']] = $table['name'];
  }
  return $out;
}