SourcePluginBase.php |
file |
core/modules/migrate/src/Plugin/migrate/source/SourcePluginBase.php |
|
SourcePluginBase::$cache |
property |
core/modules/migrate/src/Plugin/migrate/source/SourcePluginBase.php |
The backend cache. |
SourcePluginBase::$cacheCounts |
property |
core/modules/migrate/src/Plugin/migrate/source/SourcePluginBase.php |
Whether this instance should cache the source count. |
SourcePluginBase::$cacheKey |
property |
core/modules/migrate/src/Plugin/migrate/source/SourcePluginBase.php |
Key to use for caching counts. |
SourcePluginBase::$currentRow |
property |
core/modules/migrate/src/Plugin/migrate/source/SourcePluginBase.php |
The current row from the query. |
SourcePluginBase::$currentSourceIds |
property |
core/modules/migrate/src/Plugin/migrate/source/SourcePluginBase.php |
The primary key of the current row. |
SourcePluginBase::$highWaterProperty |
property |
core/modules/migrate/src/Plugin/migrate/source/SourcePluginBase.php |
Information on the property used as the high-water mark. |
SourcePluginBase::$highWaterStorage |
property |
core/modules/migrate/src/Plugin/migrate/source/SourcePluginBase.php |
The key-value storage for the high-water value. |
SourcePluginBase::$idMap |
property |
core/modules/migrate/src/Plugin/migrate/source/SourcePluginBase.php |
The migration ID map. |
SourcePluginBase::$iterator |
property |
core/modules/migrate/src/Plugin/migrate/source/SourcePluginBase.php |
The iterator to iterate over the source rows. |
SourcePluginBase::$mapRowAdded |
property |
core/modules/migrate/src/Plugin/migrate/source/SourcePluginBase.php |
Flags whether source plugin will read the map row and add to data row. |
SourcePluginBase::$migration |
property |
core/modules/migrate/src/Plugin/migrate/source/SourcePluginBase.php |
The entity migration object. |
SourcePluginBase::$moduleHandler |
property |
core/modules/migrate/src/Plugin/migrate/source/SourcePluginBase.php |
The module handler service. |
SourcePluginBase::$originalHighWater |
property |
core/modules/migrate/src/Plugin/migrate/source/SourcePluginBase.php |
The high water mark at the beginning of the import operation. |
SourcePluginBase::$skipCount |
property |
core/modules/migrate/src/Plugin/migrate/source/SourcePluginBase.php |
Whether this instance should not attempt to count the source. |
SourcePluginBase::$trackChanges |
property |
core/modules/migrate/src/Plugin/migrate/source/SourcePluginBase.php |
Flags whether to track changes to incoming data. |
SourcePluginBase::aboveHighWater |
function |
core/modules/migrate/src/Plugin/migrate/source/SourcePluginBase.php |
Check if the incoming data is newer than what we've previously imported. |
SourcePluginBase::count |
function |
core/modules/migrate/src/Plugin/migrate/source/SourcePluginBase.php |
Gets the source count. |
SourcePluginBase::current |
function |
core/modules/migrate/src/Plugin/migrate/source/SourcePluginBase.php |
|
SourcePluginBase::doCount |
function |
core/modules/migrate/src/Plugin/migrate/source/SourcePluginBase.php |
Gets the source count. |
SourcePluginBase::fetchNextRow |
function |
core/modules/migrate/src/Plugin/migrate/source/SourcePluginBase.php |
Position the iterator to the following row. |
SourcePluginBase::getCache |
function |
core/modules/migrate/src/Plugin/migrate/source/SourcePluginBase.php |
Gets the cache object. |
SourcePluginBase::getCurrentIds |
function |
core/modules/migrate/src/Plugin/migrate/source/SourcePluginBase.php |
Gets the currentSourceIds data member. |
SourcePluginBase::getHighWater |
function |
core/modules/migrate/src/Plugin/migrate/source/SourcePluginBase.php |
The current value of the high water mark. |
SourcePluginBase::getHighWaterField |
function |
core/modules/migrate/src/Plugin/migrate/source/SourcePluginBase.php |
Get the name of the field used as the high watermark. |
SourcePluginBase::getHighWaterProperty |
function |
core/modules/migrate/src/Plugin/migrate/source/SourcePluginBase.php |
Get information on the property used as the high watermark. |
SourcePluginBase::getHighWaterStorage |
function |
core/modules/migrate/src/Plugin/migrate/source/SourcePluginBase.php |
Get the high water storage object. |
SourcePluginBase::getIterator |
function |
core/modules/migrate/src/Plugin/migrate/source/SourcePluginBase.php |
Returns the iterator that will yield the row arrays to be processed. |
SourcePluginBase::getModuleHandler |
function |
core/modules/migrate/src/Plugin/migrate/source/SourcePluginBase.php |
Gets the module handler. |
SourcePluginBase::getSourceModule |
function |
core/modules/migrate/src/Plugin/migrate/source/SourcePluginBase.php |
Gets the source module providing the source data. |
SourcePluginBase::initializeIterator |
function |
core/modules/migrate/src/Plugin/migrate/source/SourcePluginBase.php |
Initializes the iterator with the source data. |
SourcePluginBase::key |
function |
core/modules/migrate/src/Plugin/migrate/source/SourcePluginBase.php |
Gets the iterator key. |
SourcePluginBase::next |
function |
core/modules/migrate/src/Plugin/migrate/source/SourcePluginBase.php |
|
SourcePluginBase::postRollback |
function |
core/modules/migrate/src/Plugin/migrate/source/SourcePluginBase.php |
Performs post-rollback tasks. |
SourcePluginBase::prepareRow |
function |
core/modules/migrate/src/Plugin/migrate/source/SourcePluginBase.php |
Adds additional data to the row. |
SourcePluginBase::preRollback |
function |
core/modules/migrate/src/Plugin/migrate/source/SourcePluginBase.php |
Performs pre-rollback tasks. |
SourcePluginBase::rewind |
function |
core/modules/migrate/src/Plugin/migrate/source/SourcePluginBase.php |
Rewinds the iterator. |
SourcePluginBase::rowChanged |
function |
core/modules/migrate/src/Plugin/migrate/source/SourcePluginBase.php |
Checks if the incoming row has changed since our last import. |
SourcePluginBase::saveHighWater |
function |
core/modules/migrate/src/Plugin/migrate/source/SourcePluginBase.php |
Save the new high water mark. |
SourcePluginBase::valid |
function |
core/modules/migrate/src/Plugin/migrate/source/SourcePluginBase.php |
Checks whether the iterator is currently valid. |
SourcePluginBase::__construct |
function |
core/modules/migrate/src/Plugin/migrate/source/SourcePluginBase.php |
|
Sql::$migrationPluginManager |
property |
core/modules/migrate/src/Plugin/migrate/id_map/Sql.php |
The migration plugin manager. |
Sql::getMigrationPluginManager |
function |
core/modules/migrate/src/Plugin/migrate/id_map/Sql.php |
Returns the migration plugin manager. |
SqlTest::$migrationPluginManager |
property |
core/modules/migrate/tests/src/Kernel/Plugin/id_map/SqlTest.php |
The migration plugin manager. |
StateInterface::PLUGIN_FORM_KEY |
constant |
core/modules/workflows/src/StateInterface.php |
The key of the state plugin form. |
StubFallbackPluginManager |
class |
core/tests/Drupal/Tests/Component/Plugin/StubFallbackPluginManager.php |
Stubs \Drupal\Component\Plugin\FallbackPluginManagerInterface. |
StubFallbackPluginManager.php |
file |
core/tests/Drupal/Tests/Component/Plugin/StubFallbackPluginManager.php |
|
StubFallbackPluginManager::getFallbackPluginId |
function |
core/tests/Drupal/Tests/Component/Plugin/StubFallbackPluginManager.php |
Gets a fallback id for a missing plugin. |
StubPluginManagerBaseWithMapper |
class |
core/tests/Drupal/Tests/Component/Plugin/StubPluginManagerBaseWithMapper.php |
Stubs \Drupal\Component\Plugin\PluginManagerBase to take a MapperInterface. |
StubPluginManagerBaseWithMapper.php |
file |
core/tests/Drupal/Tests/Component/Plugin/StubPluginManagerBaseWithMapper.php |
|