protected DbDumpCommand::getTables(Connection $connection)
Returns a list of tables, not including those set to be excluded.
Parameters
\Drupal\Core\Database\Connection $connection: The database connection to use.
Return value
array An array of table names. An array of table names.
File
- core/lib/Drupal/Core/Command/DbDumpCommand.php, line 108
Class
- DbDumpCommand
- Provides a command to dump the current database to a script.
Namespace
Drupal\Core\Command
Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | protected function getTables(Connection $connection ) { $tables = array_values ( $connection ->schema()->findTables( '%' )); foreach ( $tables as $key => $table ) { // Remove any explicitly excluded tables. foreach ( $this ->excludeTables as $pattern ) { if (preg_match( '/^' . $pattern . '$/' , $table )) { unset( $tables [ $key ]); } } } return $tables ; } |
Please login to continue.