Skip to content
Snippets Groups Projects
Commit 4851f311 authored by catch's avatar catch
Browse files

Issue #2862671 by masipila, Jo Fitzgerald, kleog, phenaproxima, quietone: Add...

Issue #2862671 by masipila, Jo Fitzgerald, kleog, phenaproxima, quietone: Add documentation to SqlBase source plugin
parent be642026
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
...@@ -17,35 +17,48 @@ ...@@ -17,35 +17,48 @@
/** /**
* Sources whose data may be fetched via a database connection. * Sources whose data may be fetched via a database connection.
* *
* Database configuration, which may appear either within the source plugin * Available configuration keys:
* configuration or in state, is structured as follows: * - database_state_key: (optional) Name of the state key which contains an
* array with database connection information.
* - key: (optional) The database key name. Defaults to 'migrate'.
* - target: (optional) The database target name. Defaults to 'default'.
* - batch_size: (optional) Number of records to fetch from the database during
* each batch. If omitted, all records are fetched in a single query.
* - ignore_map: (optional) Source data is joined to the map table by default.
* If set to TRUE, the map table will not be joined.
* *
* 'key' - The database key name (defaults to 'migrate'). * For other optional configuration keys inherited from the parent class, refer
* 'target' - The database target name (defaults to 'default'). * to \Drupal\migrate\Plugin\migrate\source\SourcePluginBase.
* 'database' - Database connection information as accepted by
* Database::addConnectionInfo(). If not present, the key/target is assumed
* to already be defined (e.g., in settings.php).
* *
* This configuration info is obtained in the following order: * About the source database determination:
* - If the source plugin configuration contains 'database_state_key', its value
* is taken as the name of a state key which contains an array with the
* database configuration.
* - Otherwise, if the source plugin configuration contains 'key', the database
* configuration with that name is used.
* - If both 'database_state_key' and 'key' are omitted in the source plugin
* configuration, the database connection named 'migrate' is used by default.
* - If all of the above steps fail, RequirementsException is thrown.
* *
* 1. If the source plugin configuration contains a key 'database_state_key', * Drupal Database API supports multiple database connections. The connection
* its value is taken as the name of a state key which contains an array * parameters are defined in $databases array in settings.php or
* with the above database configuration. * settings.local.php. It is also possible to modify the $databases array in
* 2. Otherwise, if the source plugin configuration contains 'key', the above * runtime. For example, Migrate Drupal, which provides the migrations from
* database configuration is obtained directly from the plugin configuration. * Drupal 6 / 7, asks for the source database connection parameters in the UI
* 3. Otherwise, if the state 'migrate.fallback_state_key' exists, its value is * and then adds the $databases['migrate'] connection in runtime before the
* taken as the name of a state key which contains an array with the above * migrations are executed.
* database configuration.
* 4. Otherwise, if a connection named 'migrate' exists, that is used as the
* database connection.
* 5. Otherwise, RequirementsException is thrown.
* *
* It is strongly recommended that database connections be explicitly defined * As described above, the default source database is $databases['migrate']. If
* via 'database_state_key' or in the source plugin configuration. Defining * the source plugin needs another source connection, the database connection
* migrate.fallback_state_key or a 'migrate' connection affects not only any * parameters should be added to the $databases array as, for instance,
* migrations intended to use that particular connection, but all * $databases['foo']. The source plugin can then use this connection by setting
* SqlBase-derived source plugins which do not have explicit database * 'key' to 'foo' in its configuration.
* configuration. *
* For a complete example on migrating data from an SQL source, refer to
* https://www.drupal.org/docs/8/api/migrate-api/migrating-data-from-sql-source
*
* @see https://www.drupal.org/docs/8/api/database-api
* @see \Drupal\migrate_drupal\Plugin\migrate\source\DrupalSqlBase
*/ */
abstract class SqlBase extends SourcePluginBase implements ContainerFactoryPluginInterface, RequirementsInterface { abstract class SqlBase extends SourcePluginBase implements ContainerFactoryPluginInterface, RequirementsInterface {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment